/*!999999\- enable the sandbox mode */ 
-- MariaDB dump 10.19  Distrib 10.11.8-MariaDB, for debian-linux-gnu (x86_64)
--
-- Host: localhost    Database: glpi
-- ------------------------------------------------------
-- Server version	10.11.8-MariaDB-0ubuntu0.24.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 */;
/*!40101 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 */;

--
-- Current Database: `glpi`
--

-- CREATE DATABASE /*!32312 IF NOT EXISTS*/ `cass7045_wintech_glpi` /*!40100 DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci */;

USE `cass7045_wintech_glpi`;

--
-- Table structure for table `glpi_agents`
--

DROP TABLE IF EXISTS `glpi_agents`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_agents` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `deviceid` varchar(255) NOT NULL,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `name` varchar(255) DEFAULT NULL,
  `agenttypes_id` int(10) unsigned NOT NULL,
  `last_contact` timestamp NULL DEFAULT NULL,
  `version` varchar(255) DEFAULT NULL,
  `locked` tinyint(4) NOT NULL DEFAULT 0,
  `itemtype` varchar(100) NOT NULL,
  `items_id` int(10) unsigned NOT NULL,
  `useragent` varchar(255) DEFAULT NULL,
  `tag` varchar(255) DEFAULT NULL,
  `port` varchar(6) DEFAULT NULL,
  `remote_addr` varchar(255) DEFAULT NULL,
  `threads_networkdiscovery` int(11) NOT NULL DEFAULT 1 COMMENT 'Number of threads for Network discovery',
  `threads_networkinventory` int(11) NOT NULL DEFAULT 1 COMMENT 'Number of threads for Network inventory',
  `timeout_networkdiscovery` int(11) NOT NULL DEFAULT 0 COMMENT 'Network Discovery task timeout (disabled by default)',
  `timeout_networkinventory` int(11) NOT NULL DEFAULT 0 COMMENT 'Network Inventory task timeout (disabled by default)',
  `use_module_wake_on_lan` tinyint(4) NOT NULL DEFAULT 0,
  `use_module_computer_inventory` tinyint(4) NOT NULL DEFAULT 0,
  `use_module_esx_remote_inventory` tinyint(4) NOT NULL DEFAULT 0,
  `use_module_remote_inventory` tinyint(4) NOT NULL DEFAULT 0,
  `use_module_network_inventory` tinyint(4) NOT NULL DEFAULT 0,
  `use_module_network_discovery` tinyint(4) NOT NULL DEFAULT 0,
  `use_module_package_deployment` tinyint(4) NOT NULL DEFAULT 0,
  `use_module_collect_data` tinyint(4) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  UNIQUE KEY `deviceid` (`deviceid`),
  KEY `name` (`name`),
  KEY `agenttypes_id` (`agenttypes_id`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `item` (`itemtype`,`items_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_agents`
--

LOCK TABLES `glpi_agents` WRITE;
/*!40000 ALTER TABLE `glpi_agents` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_agents` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_agenttypes`
--

DROP TABLE IF EXISTS `glpi_agenttypes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_agenttypes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_agenttypes`
--

LOCK TABLES `glpi_agenttypes` WRITE;
/*!40000 ALTER TABLE `glpi_agenttypes` DISABLE KEYS */;
INSERT INTO `glpi_agenttypes` VALUES
(1,'Core');
/*!40000 ALTER TABLE `glpi_agenttypes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_alerts`
--

DROP TABLE IF EXISTS `glpi_alerts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_alerts` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `itemtype` varchar(100) NOT NULL,
  `items_id` int(10) unsigned NOT NULL DEFAULT 0,
  `type` int(11) NOT NULL DEFAULT 0 COMMENT 'see define.php ALERT_* constant',
  `date` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`itemtype`,`items_id`,`type`),
  KEY `type` (`type`),
  KEY `date` (`date`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_alerts`
--

LOCK TABLES `glpi_alerts` WRITE;
/*!40000 ALTER TABLE `glpi_alerts` DISABLE KEYS */;
INSERT INTO `glpi_alerts` VALUES
(1,'PlanningRecall',1,5,'2024-12-29 18:32:20');
/*!40000 ALTER TABLE `glpi_alerts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_apiclients`
--

DROP TABLE IF EXISTS `glpi_apiclients`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_apiclients` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `name` varchar(255) DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  `is_active` tinyint(4) NOT NULL DEFAULT 0,
  `ipv4_range_start` bigint(20) DEFAULT NULL,
  `ipv4_range_end` bigint(20) DEFAULT NULL,
  `ipv6` varchar(255) DEFAULT NULL,
  `app_token` varchar(255) DEFAULT NULL,
  `app_token_date` timestamp NULL DEFAULT NULL,
  `dolog_method` tinyint(4) NOT NULL DEFAULT 0,
  `comment` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`),
  KEY `is_active` (`is_active`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_apiclients`
--

LOCK TABLES `glpi_apiclients` WRITE;
/*!40000 ALTER TABLE `glpi_apiclients` DISABLE KEYS */;
INSERT INTO `glpi_apiclients` VALUES
(1,0,1,'full access from localhost',NULL,NULL,1,2130706433,2130706433,'::1',NULL,NULL,0,NULL),
(2,0,0,'PV','2025-02-09 04:08:01','2025-02-09 04:00:28',1,82066718,82066718,NULL,'7moQfcthNbSzoD3J5RgKmsjjS7hC15aGPavG5qc5','2025-02-09 04:08:01',2,'');
/*!40000 ALTER TABLE `glpi_apiclients` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_applianceenvironments`
--

DROP TABLE IF EXISTS `glpi_applianceenvironments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_applianceenvironments` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_applianceenvironments`
--

LOCK TABLES `glpi_applianceenvironments` WRITE;
/*!40000 ALTER TABLE `glpi_applianceenvironments` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_applianceenvironments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_appliances`
--

DROP TABLE IF EXISTS `glpi_appliances`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_appliances` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `name` varchar(255) NOT NULL DEFAULT '',
  `is_deleted` tinyint(4) NOT NULL DEFAULT 0,
  `appliancetypes_id` int(10) unsigned NOT NULL DEFAULT 0,
  `comment` text DEFAULT NULL,
  `locations_id` int(10) unsigned NOT NULL DEFAULT 0,
  `manufacturers_id` int(10) unsigned NOT NULL DEFAULT 0,
  `applianceenvironments_id` int(10) unsigned NOT NULL DEFAULT 0,
  `users_id` int(10) unsigned NOT NULL DEFAULT 0,
  `users_id_tech` int(10) unsigned NOT NULL DEFAULT 0,
  `groups_id` int(10) unsigned NOT NULL DEFAULT 0,
  `groups_id_tech` int(10) unsigned NOT NULL DEFAULT 0,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  `states_id` int(10) unsigned NOT NULL DEFAULT 0,
  `externalidentifier` varchar(255) DEFAULT NULL,
  `serial` varchar(255) DEFAULT NULL,
  `otherserial` varchar(255) DEFAULT NULL,
  `contact` varchar(255) DEFAULT NULL,
  `contact_num` varchar(255) DEFAULT NULL,
  `is_helpdesk_visible` tinyint(4) NOT NULL DEFAULT 1,
  `pictures` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`externalidentifier`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `name` (`name`),
  KEY `is_deleted` (`is_deleted`),
  KEY `appliancetypes_id` (`appliancetypes_id`),
  KEY `locations_id` (`locations_id`),
  KEY `manufacturers_id` (`manufacturers_id`),
  KEY `applianceenvironments_id` (`applianceenvironments_id`),
  KEY `users_id` (`users_id`),
  KEY `users_id_tech` (`users_id_tech`),
  KEY `groups_id` (`groups_id`),
  KEY `groups_id_tech` (`groups_id_tech`),
  KEY `states_id` (`states_id`),
  KEY `serial` (`serial`),
  KEY `otherserial` (`otherserial`),
  KEY `is_helpdesk_visible` (`is_helpdesk_visible`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_appliances`
--

LOCK TABLES `glpi_appliances` WRITE;
/*!40000 ALTER TABLE `glpi_appliances` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_appliances` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_appliances_items`
--

DROP TABLE IF EXISTS `glpi_appliances_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_appliances_items` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `appliances_id` int(10) unsigned NOT NULL DEFAULT 0,
  `items_id` int(10) unsigned NOT NULL DEFAULT 0,
  `itemtype` varchar(100) NOT NULL DEFAULT '',
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`appliances_id`,`items_id`,`itemtype`),
  KEY `item` (`itemtype`,`items_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_appliances_items`
--

LOCK TABLES `glpi_appliances_items` WRITE;
/*!40000 ALTER TABLE `glpi_appliances_items` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_appliances_items` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_appliances_items_relations`
--

DROP TABLE IF EXISTS `glpi_appliances_items_relations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_appliances_items_relations` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `appliances_items_id` int(10) unsigned NOT NULL DEFAULT 0,
  `itemtype` varchar(100) NOT NULL,
  `items_id` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `appliances_items_id` (`appliances_items_id`),
  KEY `item` (`itemtype`,`items_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_appliances_items_relations`
--

LOCK TABLES `glpi_appliances_items_relations` WRITE;
/*!40000 ALTER TABLE `glpi_appliances_items_relations` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_appliances_items_relations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_appliancetypes`
--

DROP TABLE IF EXISTS `glpi_appliancetypes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_appliancetypes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `name` varchar(255) NOT NULL DEFAULT '',
  `comment` text DEFAULT NULL,
  `externalidentifier` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `externalidentifier` (`externalidentifier`),
  KEY `name` (`name`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_appliancetypes`
--

LOCK TABLES `glpi_appliancetypes` WRITE;
/*!40000 ALTER TABLE `glpi_appliancetypes` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_appliancetypes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_authldapreplicates`
--

DROP TABLE IF EXISTS `glpi_authldapreplicates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_authldapreplicates` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `authldaps_id` int(10) unsigned NOT NULL DEFAULT 0,
  `host` varchar(255) DEFAULT NULL,
  `port` int(11) NOT NULL DEFAULT 389,
  `name` varchar(255) DEFAULT NULL,
  `timeout` int(11) NOT NULL DEFAULT 10,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `authldaps_id` (`authldaps_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_authldapreplicates`
--

LOCK TABLES `glpi_authldapreplicates` WRITE;
/*!40000 ALTER TABLE `glpi_authldapreplicates` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_authldapreplicates` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_authldaps`
--

DROP TABLE IF EXISTS `glpi_authldaps`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_authldaps` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `host` varchar(255) DEFAULT NULL,
  `basedn` varchar(255) DEFAULT NULL,
  `rootdn` varchar(255) DEFAULT NULL,
  `port` int(11) NOT NULL DEFAULT 389,
  `condition` text DEFAULT NULL,
  `login_field` varchar(255) DEFAULT 'uid',
  `sync_field` varchar(255) DEFAULT NULL,
  `use_tls` tinyint(4) NOT NULL DEFAULT 0,
  `group_field` varchar(255) DEFAULT NULL,
  `group_condition` text DEFAULT NULL,
  `group_search_type` int(11) NOT NULL DEFAULT 0,
  `group_member_field` varchar(255) DEFAULT NULL,
  `email1_field` varchar(255) DEFAULT NULL,
  `realname_field` varchar(255) DEFAULT NULL,
  `firstname_field` varchar(255) DEFAULT NULL,
  `phone_field` varchar(255) DEFAULT NULL,
  `phone2_field` varchar(255) DEFAULT NULL,
  `mobile_field` varchar(255) DEFAULT NULL,
  `comment_field` varchar(255) DEFAULT NULL,
  `use_dn` tinyint(4) NOT NULL DEFAULT 1,
  `time_offset` int(11) NOT NULL DEFAULT 0 COMMENT 'in seconds',
  `deref_option` int(11) NOT NULL DEFAULT 0,
  `title_field` varchar(255) DEFAULT NULL,
  `category_field` varchar(255) DEFAULT NULL,
  `language_field` varchar(255) DEFAULT NULL,
  `entity_field` varchar(255) DEFAULT NULL,
  `entity_condition` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `is_default` tinyint(4) NOT NULL DEFAULT 0,
  `is_active` tinyint(4) NOT NULL DEFAULT 0,
  `rootdn_passwd` varchar(255) DEFAULT NULL,
  `registration_number_field` varchar(255) DEFAULT NULL,
  `email2_field` varchar(255) DEFAULT NULL,
  `email3_field` varchar(255) DEFAULT NULL,
  `email4_field` varchar(255) DEFAULT NULL,
  `location_field` varchar(255) DEFAULT NULL,
  `responsible_field` varchar(255) DEFAULT NULL,
  `pagesize` int(11) NOT NULL DEFAULT 0,
  `ldap_maxlimit` int(11) NOT NULL DEFAULT 0,
  `can_support_pagesize` tinyint(4) NOT NULL DEFAULT 0,
  `picture_field` varchar(255) DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  `inventory_domain` varchar(255) DEFAULT NULL,
  `tls_certfile` text DEFAULT NULL,
  `tls_keyfile` text DEFAULT NULL,
  `use_bind` tinyint(4) NOT NULL DEFAULT 1,
  `timeout` int(11) NOT NULL DEFAULT 10,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `date_mod` (`date_mod`),
  KEY `is_default` (`is_default`),
  KEY `is_active` (`is_active`),
  KEY `date_creation` (`date_creation`),
  KEY `sync_field` (`sync_field`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_authldaps`
--

LOCK TABLES `glpi_authldaps` WRITE;
/*!40000 ALTER TABLE `glpi_authldaps` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_authldaps` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_authmails`
--

DROP TABLE IF EXISTS `glpi_authmails`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_authmails` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `connect_string` varchar(255) DEFAULT NULL,
  `host` varchar(255) DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `is_active` tinyint(4) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`),
  KEY `is_active` (`is_active`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_authmails`
--

LOCK TABLES `glpi_authmails` WRITE;
/*!40000 ALTER TABLE `glpi_authmails` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_authmails` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_autoupdatesystems`
--

DROP TABLE IF EXISTS `glpi_autoupdatesystems`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_autoupdatesystems` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_autoupdatesystems`
--

LOCK TABLES `glpi_autoupdatesystems` WRITE;
/*!40000 ALTER TABLE `glpi_autoupdatesystems` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_autoupdatesystems` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_blacklistedmailcontents`
--

DROP TABLE IF EXISTS `glpi_blacklistedmailcontents`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_blacklistedmailcontents` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `content` text DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_blacklistedmailcontents`
--

LOCK TABLES `glpi_blacklistedmailcontents` WRITE;
/*!40000 ALTER TABLE `glpi_blacklistedmailcontents` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_blacklistedmailcontents` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_blacklists`
--

DROP TABLE IF EXISTS `glpi_blacklists`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_blacklists` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `type` int(11) NOT NULL DEFAULT 0,
  `name` varchar(255) DEFAULT NULL,
  `value` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `type` (`type`),
  KEY `name` (`name`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB AUTO_INCREMENT=73 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_blacklists`
--

LOCK TABLES `glpi_blacklists` WRITE;
/*!40000 ALTER TABLE `glpi_blacklists` DISABLE KEYS */;
INSERT INTO `glpi_blacklists` VALUES
(1,3,'invalid serial','N/A',NULL,NULL,NULL),
(2,3,'invalid serial','(null string)',NULL,NULL,NULL),
(3,3,'invalid serial','INVALID',NULL,NULL,NULL),
(4,3,'invalid serial','SYS-1234567890',NULL,NULL,NULL),
(5,3,'invalid serial','SYS-9876543210',NULL,NULL,NULL),
(6,3,'invalid serial','SN-12345',NULL,NULL,NULL),
(7,3,'invalid serial','SN-1234567890',NULL,NULL,NULL),
(8,3,'invalid serial','/^0+$/',NULL,NULL,NULL),
(9,3,'invalid serial','/^1+$/',NULL,NULL,NULL),
(10,3,'invalid serial','/\\d\\.\\d(\\.\\d)?/',NULL,NULL,NULL),
(11,3,'invalid serial','/^(0|1)+$/',NULL,NULL,NULL),
(12,3,'invalid serial','0123456789',NULL,NULL,NULL),
(13,3,'invalid serial','12345',NULL,NULL,NULL),
(14,3,'invalid serial','123456',NULL,NULL,NULL),
(15,3,'invalid serial','1234567',NULL,NULL,NULL),
(16,3,'invalid serial','12345678',NULL,NULL,NULL),
(17,3,'invalid serial','123456789',NULL,NULL,NULL),
(18,3,'invalid serial','1234567890',NULL,NULL,NULL),
(19,3,'invalid serial','123456789000',NULL,NULL,NULL),
(20,3,'invalid serial','12345678901234567',NULL,NULL,NULL),
(21,3,'invalid serial','NNNNNNN',NULL,NULL,NULL),
(22,3,'invalid serial','xxxxxxxxxxx',NULL,NULL,NULL),
(23,3,'invalid serial','EVAL',NULL,NULL,NULL),
(24,3,'invalid serial','IATPASS',NULL,NULL,NULL),
(25,3,'invalid serial','none',NULL,NULL,NULL),
(26,3,'invalid serial','To Be Filled By O.E.M.',NULL,NULL,NULL),
(27,3,'invalid serial','Tulip Computers',NULL,NULL,NULL),
(28,3,'invalid serial','Serial Number xxxxxx',NULL,NULL,NULL),
(29,3,'invalid serial','SN-123456fvgv3i0b8o5n6n7k',NULL,NULL,NULL),
(30,3,'invalid serial','Unknow',NULL,NULL,NULL),
(31,3,'invalid serial','System Serial Number',NULL,NULL,NULL),
(32,3,'invalid serial','MB-1234567890',NULL,NULL,NULL),
(33,3,'invalid serial','empty',NULL,NULL,NULL),
(34,3,'invalid serial','Not Specified',NULL,NULL,NULL),
(35,3,'invalid serial','OEM_Serial',NULL,NULL,NULL),
(36,3,'invalid serial','SystemSerialNumb',NULL,NULL,NULL),
(37,4,'invalid UUID','FFFFFFFF-FFFF-FFFF-FFFF-FFFFFFFFFFFF',NULL,NULL,NULL),
(38,4,'invalid UUID','03000200-0400-0500-0006-000700080009',NULL,NULL,NULL),
(39,4,'invalid UUID','6AB5B300-538D-1014-9FB5-B0684D007B53',NULL,NULL,NULL),
(40,4,'invalid UUID','01010101-0101-0101-0101-010101010101',NULL,NULL,NULL),
(41,4,'invalid UUID','2',NULL,NULL,NULL),
(42,2,'empty MAC','',NULL,NULL,NULL),
(43,2,'invalid MAC','20:41:53:59:4e:ff',NULL,NULL,NULL),
(44,2,'invalid MAC','02:00:4e:43:50:49',NULL,NULL,NULL),
(45,2,'invalid MAC','e2:e6:16:20:0a:35',NULL,NULL,NULL),
(46,2,'invalid MAC','d2:0a:2d:a0:04:be',NULL,NULL,NULL),
(47,2,'invalid MAC','00:a0:c6:00:00:00',NULL,NULL,NULL),
(48,2,'invalid MAC','d2:6b:25:2f:2c:e7',NULL,NULL,NULL),
(49,2,'invalid MAC','33:50:6f:45:30:30',NULL,NULL,NULL),
(50,2,'invalid MAC','0a:00:27:00:00:00',NULL,NULL,NULL),
(51,2,'invalid MAC','00:50:56:C0:00:01',NULL,NULL,NULL),
(52,2,'invalid MAC','00:50:56:C0:00:08',NULL,NULL,NULL),
(53,2,'invalid MAC','02:80:37:EC:02:00',NULL,NULL,NULL),
(54,2,'invalid MAC','50:50:54:50:30:30',NULL,NULL,NULL),
(55,2,'invalid MAC','24:b6:20:52:41:53',NULL,NULL,NULL),
(56,2,'invalid MAC','00:50:56:C0:00:02',NULL,NULL,NULL),
(57,2,'invalid MAC','/00:50:56:C0:[0-9a-f]+:[0-9a-f]+/i',NULL,NULL,NULL),
(58,2,'invalid MAC','FE:FF:FF:FF:FF:FF',NULL,NULL,NULL),
(59,2,'invalid MAC','00:00:00:00:00:00',NULL,NULL,NULL),
(60,2,'invalid MAC','00:0b:ca:fe:00:00',NULL,NULL,NULL),
(61,6,'Unknow','Unknow',NULL,NULL,NULL),
(62,6,'To Be Filled By O.E.M.','To Be Filled By O.E.M.',NULL,NULL,NULL),
(63,6,'*','*',NULL,NULL,NULL),
(64,6,'System Product Name','System Product Name',NULL,NULL,NULL),
(65,6,'Product Name','Product Name',NULL,NULL,NULL),
(66,6,'System Name','System Name',NULL,NULL,NULL),
(67,6,'All Series','All Series',NULL,NULL,NULL),
(68,8,'System manufacturer','System manufacturer',NULL,NULL,NULL),
(69,1,'empty IP','',NULL,NULL,NULL),
(70,1,'zero IP','0.0.0.0',NULL,NULL,NULL),
(71,1,'localhost','127.0.0.1',NULL,NULL,NULL),
(72,1,'IPV6 localhost','::1',NULL,NULL,NULL);
/*!40000 ALTER TABLE `glpi_blacklists` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_budgets`
--

DROP TABLE IF EXISTS `glpi_budgets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_budgets` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `comment` text DEFAULT NULL,
  `is_deleted` tinyint(4) NOT NULL DEFAULT 0,
  `begin_date` date DEFAULT NULL,
  `end_date` date DEFAULT NULL,
  `value` decimal(20,4) NOT NULL DEFAULT 0.0000,
  `is_template` tinyint(4) NOT NULL DEFAULT 0,
  `template_name` varchar(255) DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  `locations_id` int(10) unsigned NOT NULL DEFAULT 0,
  `budgettypes_id` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `is_recursive` (`is_recursive`),
  KEY `entities_id` (`entities_id`),
  KEY `is_deleted` (`is_deleted`),
  KEY `begin_date` (`begin_date`),
  KEY `end_date` (`end_date`),
  KEY `is_template` (`is_template`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`),
  KEY `locations_id` (`locations_id`),
  KEY `budgettypes_id` (`budgettypes_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_budgets`
--

LOCK TABLES `glpi_budgets` WRITE;
/*!40000 ALTER TABLE `glpi_budgets` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_budgets` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_budgettypes`
--

DROP TABLE IF EXISTS `glpi_budgettypes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_budgettypes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_budgettypes`
--

LOCK TABLES `glpi_budgettypes` WRITE;
/*!40000 ALTER TABLE `glpi_budgettypes` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_budgettypes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_businesscriticities`
--

DROP TABLE IF EXISTS `glpi_businesscriticities`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_businesscriticities` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `comment` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  `businesscriticities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `completename` text DEFAULT NULL,
  `level` int(11) NOT NULL DEFAULT 0,
  `ancestors_cache` longtext DEFAULT NULL,
  `sons_cache` longtext DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`businesscriticities_id`,`name`),
  KEY `name` (`name`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `level` (`level`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_businesscriticities`
--

LOCK TABLES `glpi_businesscriticities` WRITE;
/*!40000 ALTER TABLE `glpi_businesscriticities` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_businesscriticities` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_cables`
--

DROP TABLE IF EXISTS `glpi_cables`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_cables` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `itemtype_endpoint_a` varchar(255) DEFAULT NULL,
  `itemtype_endpoint_b` varchar(255) DEFAULT NULL,
  `items_id_endpoint_a` int(10) unsigned NOT NULL DEFAULT 0,
  `items_id_endpoint_b` int(10) unsigned NOT NULL DEFAULT 0,
  `socketmodels_id_endpoint_a` int(10) unsigned NOT NULL DEFAULT 0,
  `socketmodels_id_endpoint_b` int(10) unsigned NOT NULL DEFAULT 0,
  `sockets_id_endpoint_a` int(10) unsigned NOT NULL DEFAULT 0,
  `sockets_id_endpoint_b` int(10) unsigned NOT NULL DEFAULT 0,
  `cablestrands_id` int(10) unsigned NOT NULL DEFAULT 0,
  `color` varchar(255) DEFAULT NULL,
  `otherserial` varchar(255) DEFAULT NULL,
  `states_id` int(10) unsigned NOT NULL DEFAULT 0,
  `users_id_tech` int(10) unsigned NOT NULL DEFAULT 0,
  `cabletypes_id` int(10) unsigned NOT NULL DEFAULT 0,
  `comment` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  `is_deleted` tinyint(4) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `item_endpoint_a` (`itemtype_endpoint_a`,`items_id_endpoint_a`),
  KEY `item_endpoint_b` (`itemtype_endpoint_b`,`items_id_endpoint_b`),
  KEY `items_id_endpoint_b` (`items_id_endpoint_b`),
  KEY `items_id_endpoint_a` (`items_id_endpoint_a`),
  KEY `socketmodels_id_endpoint_a` (`socketmodels_id_endpoint_a`),
  KEY `socketmodels_id_endpoint_b` (`socketmodels_id_endpoint_b`),
  KEY `sockets_id_endpoint_a` (`sockets_id_endpoint_a`),
  KEY `sockets_id_endpoint_b` (`sockets_id_endpoint_b`),
  KEY `cablestrands_id` (`cablestrands_id`),
  KEY `states_id` (`states_id`),
  KEY `complete` (`entities_id`,`name`),
  KEY `is_recursive` (`is_recursive`),
  KEY `users_id_tech` (`users_id_tech`),
  KEY `cabletypes_id` (`cabletypes_id`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`),
  KEY `is_deleted` (`is_deleted`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_cables`
--

LOCK TABLES `glpi_cables` WRITE;
/*!40000 ALTER TABLE `glpi_cables` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_cables` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_cablestrands`
--

DROP TABLE IF EXISTS `glpi_cablestrands`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_cablestrands` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_cablestrands`
--

LOCK TABLES `glpi_cablestrands` WRITE;
/*!40000 ALTER TABLE `glpi_cablestrands` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_cablestrands` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_cabletypes`
--

DROP TABLE IF EXISTS `glpi_cabletypes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_cabletypes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_cabletypes`
--

LOCK TABLES `glpi_cabletypes` WRITE;
/*!40000 ALTER TABLE `glpi_cabletypes` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_cabletypes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_calendars`
--

DROP TABLE IF EXISTS `glpi_calendars`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_calendars` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `comment` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `cache_duration` text DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_calendars`
--

LOCK TABLES `glpi_calendars` WRITE;
/*!40000 ALTER TABLE `glpi_calendars` DISABLE KEYS */;
INSERT INTO `glpi_calendars` VALUES
(1,'Default',0,1,'Default calendar',NULL,'[0,43200,43200,43200,43200,43200,0]',NULL);
/*!40000 ALTER TABLE `glpi_calendars` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_calendars_holidays`
--

DROP TABLE IF EXISTS `glpi_calendars_holidays`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_calendars_holidays` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `calendars_id` int(10) unsigned NOT NULL DEFAULT 0,
  `holidays_id` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`calendars_id`,`holidays_id`),
  KEY `holidays_id` (`holidays_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_calendars_holidays`
--

LOCK TABLES `glpi_calendars_holidays` WRITE;
/*!40000 ALTER TABLE `glpi_calendars_holidays` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_calendars_holidays` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_calendarsegments`
--

DROP TABLE IF EXISTS `glpi_calendarsegments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_calendarsegments` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `calendars_id` int(10) unsigned NOT NULL DEFAULT 0,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `day` tinyint(4) NOT NULL DEFAULT 1 COMMENT 'numer of the day based on date(w)',
  `begin` time DEFAULT NULL,
  `end` time DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `calendars_id` (`calendars_id`),
  KEY `day` (`day`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_calendarsegments`
--

LOCK TABLES `glpi_calendarsegments` WRITE;
/*!40000 ALTER TABLE `glpi_calendarsegments` DISABLE KEYS */;
INSERT INTO `glpi_calendarsegments` VALUES
(1,1,0,0,1,'08:00:00','20:00:00'),
(2,1,0,0,2,'08:00:00','20:00:00'),
(3,1,0,0,3,'08:00:00','20:00:00'),
(4,1,0,0,4,'08:00:00','20:00:00'),
(5,1,0,0,5,'08:00:00','20:00:00');
/*!40000 ALTER TABLE `glpi_calendarsegments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_cartridgeitems`
--

DROP TABLE IF EXISTS `glpi_cartridgeitems`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_cartridgeitems` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `name` varchar(255) DEFAULT NULL,
  `ref` varchar(255) DEFAULT NULL,
  `locations_id` int(10) unsigned NOT NULL DEFAULT 0,
  `cartridgeitemtypes_id` int(10) unsigned NOT NULL DEFAULT 0,
  `manufacturers_id` int(10) unsigned NOT NULL DEFAULT 0,
  `users_id_tech` int(10) unsigned NOT NULL DEFAULT 0,
  `groups_id_tech` int(10) unsigned NOT NULL DEFAULT 0,
  `is_deleted` tinyint(4) NOT NULL DEFAULT 0,
  `comment` text DEFAULT NULL,
  `alarm_threshold` int(11) NOT NULL DEFAULT 10,
  `stock_target` int(11) NOT NULL DEFAULT 0,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  `pictures` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `manufacturers_id` (`manufacturers_id`),
  KEY `locations_id` (`locations_id`),
  KEY `users_id_tech` (`users_id_tech`),
  KEY `cartridgeitemtypes_id` (`cartridgeitemtypes_id`),
  KEY `is_deleted` (`is_deleted`),
  KEY `alarm_threshold` (`alarm_threshold`),
  KEY `groups_id_tech` (`groups_id_tech`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_cartridgeitems`
--

LOCK TABLES `glpi_cartridgeitems` WRITE;
/*!40000 ALTER TABLE `glpi_cartridgeitems` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_cartridgeitems` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_cartridgeitems_printermodels`
--

DROP TABLE IF EXISTS `glpi_cartridgeitems_printermodels`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_cartridgeitems_printermodels` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `cartridgeitems_id` int(10) unsigned NOT NULL DEFAULT 0,
  `printermodels_id` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`printermodels_id`,`cartridgeitems_id`),
  KEY `cartridgeitems_id` (`cartridgeitems_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_cartridgeitems_printermodels`
--

LOCK TABLES `glpi_cartridgeitems_printermodels` WRITE;
/*!40000 ALTER TABLE `glpi_cartridgeitems_printermodels` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_cartridgeitems_printermodels` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_cartridgeitemtypes`
--

DROP TABLE IF EXISTS `glpi_cartridgeitemtypes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_cartridgeitemtypes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_cartridgeitemtypes`
--

LOCK TABLES `glpi_cartridgeitemtypes` WRITE;
/*!40000 ALTER TABLE `glpi_cartridgeitemtypes` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_cartridgeitemtypes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_cartridges`
--

DROP TABLE IF EXISTS `glpi_cartridges`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_cartridges` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `cartridgeitems_id` int(10) unsigned NOT NULL DEFAULT 0,
  `printers_id` int(10) unsigned NOT NULL DEFAULT 0,
  `date_in` date DEFAULT NULL,
  `date_use` date DEFAULT NULL,
  `date_out` date DEFAULT NULL,
  `pages` int(11) NOT NULL DEFAULT 0,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `cartridgeitems_id` (`cartridgeitems_id`),
  KEY `printers_id` (`printers_id`),
  KEY `entities_id` (`entities_id`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_cartridges`
--

LOCK TABLES `glpi_cartridges` WRITE;
/*!40000 ALTER TABLE `glpi_cartridges` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_cartridges` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_certificates`
--

DROP TABLE IF EXISTS `glpi_certificates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_certificates` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `serial` varchar(255) DEFAULT NULL,
  `otherserial` varchar(255) DEFAULT NULL,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `comment` text DEFAULT NULL,
  `is_deleted` tinyint(4) NOT NULL DEFAULT 0,
  `is_template` tinyint(4) NOT NULL DEFAULT 0,
  `template_name` varchar(255) DEFAULT NULL,
  `certificatetypes_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'RELATION to glpi_certificatetypes (id)',
  `dns_name` varchar(255) DEFAULT NULL,
  `dns_suffix` varchar(255) DEFAULT NULL,
  `users_id_tech` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'RELATION to glpi_users (id)',
  `groups_id_tech` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'RELATION to glpi_groups (id)',
  `locations_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'RELATION to glpi_locations (id)',
  `manufacturers_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'RELATION to glpi_manufacturers (id)',
  `contact` varchar(255) DEFAULT NULL,
  `contact_num` varchar(255) DEFAULT NULL,
  `users_id` int(10) unsigned NOT NULL DEFAULT 0,
  `groups_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_autosign` tinyint(4) NOT NULL DEFAULT 0,
  `date_expiration` date DEFAULT NULL,
  `states_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'RELATION to states (id)',
  `command` text DEFAULT NULL,
  `certificate_request` text DEFAULT NULL,
  `certificate_item` text DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `is_template` (`is_template`),
  KEY `is_deleted` (`is_deleted`),
  KEY `certificatetypes_id` (`certificatetypes_id`),
  KEY `users_id_tech` (`users_id_tech`),
  KEY `groups_id_tech` (`groups_id_tech`),
  KEY `groups_id` (`groups_id`),
  KEY `users_id` (`users_id`),
  KEY `locations_id` (`locations_id`),
  KEY `manufacturers_id` (`manufacturers_id`),
  KEY `states_id` (`states_id`),
  KEY `date_creation` (`date_creation`),
  KEY `date_mod` (`date_mod`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_certificates`
--

LOCK TABLES `glpi_certificates` WRITE;
/*!40000 ALTER TABLE `glpi_certificates` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_certificates` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_certificates_items`
--

DROP TABLE IF EXISTS `glpi_certificates_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_certificates_items` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `certificates_id` int(10) unsigned NOT NULL DEFAULT 0,
  `items_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'RELATION to various tables, according to itemtype (id)',
  `itemtype` varchar(100) NOT NULL COMMENT 'see .class.php file',
  `date_creation` timestamp NULL DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`certificates_id`,`itemtype`,`items_id`),
  KEY `item` (`itemtype`,`items_id`),
  KEY `date_creation` (`date_creation`),
  KEY `date_mod` (`date_mod`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_certificates_items`
--

LOCK TABLES `glpi_certificates_items` WRITE;
/*!40000 ALTER TABLE `glpi_certificates_items` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_certificates_items` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_certificatetypes`
--

DROP TABLE IF EXISTS `glpi_certificatetypes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_certificatetypes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `name` (`name`),
  KEY `date_creation` (`date_creation`),
  KEY `date_mod` (`date_mod`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_certificatetypes`
--

LOCK TABLES `glpi_certificatetypes` WRITE;
/*!40000 ALTER TABLE `glpi_certificatetypes` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_certificatetypes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_changecosts`
--

DROP TABLE IF EXISTS `glpi_changecosts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_changecosts` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `changes_id` int(10) unsigned NOT NULL DEFAULT 0,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `begin_date` date DEFAULT NULL,
  `end_date` date DEFAULT NULL,
  `actiontime` int(11) NOT NULL DEFAULT 0,
  `cost_time` decimal(20,4) NOT NULL DEFAULT 0.0000,
  `cost_fixed` decimal(20,4) NOT NULL DEFAULT 0.0000,
  `cost_material` decimal(20,4) NOT NULL DEFAULT 0.0000,
  `budgets_id` int(10) unsigned NOT NULL DEFAULT 0,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `changes_id` (`changes_id`),
  KEY `begin_date` (`begin_date`),
  KEY `end_date` (`end_date`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `budgets_id` (`budgets_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_changecosts`
--

LOCK TABLES `glpi_changecosts` WRITE;
/*!40000 ALTER TABLE `glpi_changecosts` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_changecosts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_changes`
--

DROP TABLE IF EXISTS `glpi_changes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_changes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `is_deleted` tinyint(4) NOT NULL DEFAULT 0,
  `status` int(11) NOT NULL DEFAULT 1,
  `content` longtext DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date` timestamp NULL DEFAULT NULL,
  `solvedate` timestamp NULL DEFAULT NULL,
  `closedate` timestamp NULL DEFAULT NULL,
  `time_to_resolve` timestamp NULL DEFAULT NULL,
  `users_id_recipient` int(10) unsigned NOT NULL DEFAULT 0,
  `users_id_lastupdater` int(10) unsigned NOT NULL DEFAULT 0,
  `urgency` int(11) NOT NULL DEFAULT 1,
  `impact` int(11) NOT NULL DEFAULT 1,
  `priority` int(11) NOT NULL DEFAULT 1,
  `itilcategories_id` int(10) unsigned NOT NULL DEFAULT 0,
  `impactcontent` longtext DEFAULT NULL,
  `controlistcontent` longtext DEFAULT NULL,
  `rolloutplancontent` longtext DEFAULT NULL,
  `backoutplancontent` longtext DEFAULT NULL,
  `checklistcontent` longtext DEFAULT NULL,
  `global_validation` int(11) NOT NULL DEFAULT 1,
  `validation_percent` int(11) NOT NULL DEFAULT 0,
  `actiontime` int(11) NOT NULL DEFAULT 0,
  `begin_waiting_date` timestamp NULL DEFAULT NULL,
  `waiting_duration` int(11) NOT NULL DEFAULT 0,
  `close_delay_stat` int(11) NOT NULL DEFAULT 0,
  `solve_delay_stat` int(11) NOT NULL DEFAULT 0,
  `date_creation` timestamp NULL DEFAULT NULL,
  `locations_id` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `is_deleted` (`is_deleted`),
  KEY `date` (`date`),
  KEY `closedate` (`closedate`),
  KEY `status` (`status`),
  KEY `priority` (`priority`),
  KEY `date_mod` (`date_mod`),
  KEY `itilcategories_id` (`itilcategories_id`),
  KEY `users_id_recipient` (`users_id_recipient`),
  KEY `solvedate` (`solvedate`),
  KEY `urgency` (`urgency`),
  KEY `impact` (`impact`),
  KEY `time_to_resolve` (`time_to_resolve`),
  KEY `global_validation` (`global_validation`),
  KEY `users_id_lastupdater` (`users_id_lastupdater`),
  KEY `date_creation` (`date_creation`),
  KEY `locations_id` (`locations_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_changes`
--

LOCK TABLES `glpi_changes` WRITE;
/*!40000 ALTER TABLE `glpi_changes` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_changes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_changes_groups`
--

DROP TABLE IF EXISTS `glpi_changes_groups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_changes_groups` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `changes_id` int(10) unsigned NOT NULL DEFAULT 0,
  `groups_id` int(10) unsigned NOT NULL DEFAULT 0,
  `type` int(11) NOT NULL DEFAULT 1,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`changes_id`,`type`,`groups_id`),
  KEY `group` (`groups_id`,`type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_changes_groups`
--

LOCK TABLES `glpi_changes_groups` WRITE;
/*!40000 ALTER TABLE `glpi_changes_groups` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_changes_groups` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_changes_items`
--

DROP TABLE IF EXISTS `glpi_changes_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_changes_items` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `changes_id` int(10) unsigned NOT NULL DEFAULT 0,
  `itemtype` varchar(100) DEFAULT NULL,
  `items_id` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`changes_id`,`itemtype`,`items_id`),
  KEY `item` (`itemtype`,`items_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_changes_items`
--

LOCK TABLES `glpi_changes_items` WRITE;
/*!40000 ALTER TABLE `glpi_changes_items` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_changes_items` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_changes_problems`
--

DROP TABLE IF EXISTS `glpi_changes_problems`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_changes_problems` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `changes_id` int(10) unsigned NOT NULL DEFAULT 0,
  `problems_id` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`changes_id`,`problems_id`),
  KEY `problems_id` (`problems_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_changes_problems`
--

LOCK TABLES `glpi_changes_problems` WRITE;
/*!40000 ALTER TABLE `glpi_changes_problems` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_changes_problems` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_changes_suppliers`
--

DROP TABLE IF EXISTS `glpi_changes_suppliers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_changes_suppliers` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `changes_id` int(10) unsigned NOT NULL DEFAULT 0,
  `suppliers_id` int(10) unsigned NOT NULL DEFAULT 0,
  `type` int(11) NOT NULL DEFAULT 1,
  `use_notification` tinyint(4) NOT NULL DEFAULT 0,
  `alternative_email` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`changes_id`,`type`,`suppliers_id`),
  KEY `group` (`suppliers_id`,`type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_changes_suppliers`
--

LOCK TABLES `glpi_changes_suppliers` WRITE;
/*!40000 ALTER TABLE `glpi_changes_suppliers` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_changes_suppliers` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_changes_tickets`
--

DROP TABLE IF EXISTS `glpi_changes_tickets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_changes_tickets` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `changes_id` int(10) unsigned NOT NULL DEFAULT 0,
  `tickets_id` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`changes_id`,`tickets_id`),
  KEY `tickets_id` (`tickets_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_changes_tickets`
--

LOCK TABLES `glpi_changes_tickets` WRITE;
/*!40000 ALTER TABLE `glpi_changes_tickets` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_changes_tickets` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_changes_users`
--

DROP TABLE IF EXISTS `glpi_changes_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_changes_users` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `changes_id` int(10) unsigned NOT NULL DEFAULT 0,
  `users_id` int(10) unsigned NOT NULL DEFAULT 0,
  `type` int(11) NOT NULL DEFAULT 1,
  `use_notification` tinyint(4) NOT NULL DEFAULT 0,
  `alternative_email` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`changes_id`,`type`,`users_id`,`alternative_email`),
  KEY `user` (`users_id`,`type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_changes_users`
--

LOCK TABLES `glpi_changes_users` WRITE;
/*!40000 ALTER TABLE `glpi_changes_users` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_changes_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_changetasks`
--

DROP TABLE IF EXISTS `glpi_changetasks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_changetasks` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `uuid` varchar(255) DEFAULT NULL,
  `changes_id` int(10) unsigned NOT NULL DEFAULT 0,
  `taskcategories_id` int(10) unsigned NOT NULL DEFAULT 0,
  `state` int(11) NOT NULL DEFAULT 0,
  `date` timestamp NULL DEFAULT NULL,
  `begin` timestamp NULL DEFAULT NULL,
  `end` timestamp NULL DEFAULT NULL,
  `users_id` int(10) unsigned NOT NULL DEFAULT 0,
  `users_id_editor` int(10) unsigned NOT NULL DEFAULT 0,
  `users_id_tech` int(10) unsigned NOT NULL DEFAULT 0,
  `groups_id_tech` int(10) unsigned NOT NULL DEFAULT 0,
  `content` longtext DEFAULT NULL,
  `actiontime` int(11) NOT NULL DEFAULT 0,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  `tasktemplates_id` int(10) unsigned NOT NULL DEFAULT 0,
  `timeline_position` tinyint(4) NOT NULL DEFAULT 0,
  `is_private` tinyint(4) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  UNIQUE KEY `uuid` (`uuid`),
  KEY `changes_id` (`changes_id`),
  KEY `state` (`state`),
  KEY `users_id` (`users_id`),
  KEY `users_id_editor` (`users_id_editor`),
  KEY `users_id_tech` (`users_id_tech`),
  KEY `groups_id_tech` (`groups_id_tech`),
  KEY `date` (`date`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`),
  KEY `begin` (`begin`),
  KEY `end` (`end`),
  KEY `taskcategories_id` (`taskcategories_id`),
  KEY `tasktemplates_id` (`tasktemplates_id`),
  KEY `is_private` (`is_private`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_changetasks`
--

LOCK TABLES `glpi_changetasks` WRITE;
/*!40000 ALTER TABLE `glpi_changetasks` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_changetasks` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_changetemplatehiddenfields`
--

DROP TABLE IF EXISTS `glpi_changetemplatehiddenfields`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_changetemplatehiddenfields` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `changetemplates_id` int(10) unsigned NOT NULL DEFAULT 0,
  `num` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`changetemplates_id`,`num`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_changetemplatehiddenfields`
--

LOCK TABLES `glpi_changetemplatehiddenfields` WRITE;
/*!40000 ALTER TABLE `glpi_changetemplatehiddenfields` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_changetemplatehiddenfields` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_changetemplatemandatoryfields`
--

DROP TABLE IF EXISTS `glpi_changetemplatemandatoryfields`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_changetemplatemandatoryfields` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `changetemplates_id` int(10) unsigned NOT NULL DEFAULT 0,
  `num` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`changetemplates_id`,`num`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_changetemplatemandatoryfields`
--

LOCK TABLES `glpi_changetemplatemandatoryfields` WRITE;
/*!40000 ALTER TABLE `glpi_changetemplatemandatoryfields` DISABLE KEYS */;
INSERT INTO `glpi_changetemplatemandatoryfields` VALUES
(1,1,21);
/*!40000 ALTER TABLE `glpi_changetemplatemandatoryfields` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_changetemplatepredefinedfields`
--

DROP TABLE IF EXISTS `glpi_changetemplatepredefinedfields`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_changetemplatepredefinedfields` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `changetemplates_id` int(10) unsigned NOT NULL DEFAULT 0,
  `num` int(11) NOT NULL DEFAULT 0,
  `value` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `changetemplates_id` (`changetemplates_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_changetemplatepredefinedfields`
--

LOCK TABLES `glpi_changetemplatepredefinedfields` WRITE;
/*!40000 ALTER TABLE `glpi_changetemplatepredefinedfields` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_changetemplatepredefinedfields` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_changetemplates`
--

DROP TABLE IF EXISTS `glpi_changetemplates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_changetemplates` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `comment` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_changetemplates`
--

LOCK TABLES `glpi_changetemplates` WRITE;
/*!40000 ALTER TABLE `glpi_changetemplates` DISABLE KEYS */;
INSERT INTO `glpi_changetemplates` VALUES
(1,'Default',0,1,NULL);
/*!40000 ALTER TABLE `glpi_changetemplates` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_changevalidations`
--

DROP TABLE IF EXISTS `glpi_changevalidations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_changevalidations` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `users_id` int(10) unsigned NOT NULL DEFAULT 0,
  `changes_id` int(10) unsigned NOT NULL DEFAULT 0,
  `users_id_validate` int(10) unsigned NOT NULL DEFAULT 0,
  `comment_submission` text DEFAULT NULL,
  `comment_validation` text DEFAULT NULL,
  `status` int(11) NOT NULL DEFAULT 2,
  `submission_date` timestamp NULL DEFAULT NULL,
  `validation_date` timestamp NULL DEFAULT NULL,
  `timeline_position` tinyint(4) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `users_id` (`users_id`),
  KEY `users_id_validate` (`users_id_validate`),
  KEY `changes_id` (`changes_id`),
  KEY `submission_date` (`submission_date`),
  KEY `validation_date` (`validation_date`),
  KEY `status` (`status`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_changevalidations`
--

LOCK TABLES `glpi_changevalidations` WRITE;
/*!40000 ALTER TABLE `glpi_changevalidations` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_changevalidations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_clusters`
--

DROP TABLE IF EXISTS `glpi_clusters`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_clusters` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `name` varchar(255) DEFAULT NULL,
  `uuid` varchar(255) DEFAULT NULL,
  `version` varchar(255) DEFAULT NULL,
  `users_id_tech` int(10) unsigned NOT NULL DEFAULT 0,
  `groups_id_tech` int(10) unsigned NOT NULL DEFAULT 0,
  `is_deleted` tinyint(4) NOT NULL DEFAULT 0,
  `states_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'RELATION to states (id)',
  `comment` text DEFAULT NULL,
  `clustertypes_id` int(10) unsigned NOT NULL DEFAULT 0,
  `autoupdatesystems_id` int(10) unsigned NOT NULL DEFAULT 0,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `users_id_tech` (`users_id_tech`),
  KEY `group_id_tech` (`groups_id_tech`),
  KEY `is_deleted` (`is_deleted`),
  KEY `states_id` (`states_id`),
  KEY `clustertypes_id` (`clustertypes_id`),
  KEY `autoupdatesystems_id` (`autoupdatesystems_id`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `date_creation` (`date_creation`),
  KEY `date_mod` (`date_mod`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_clusters`
--

LOCK TABLES `glpi_clusters` WRITE;
/*!40000 ALTER TABLE `glpi_clusters` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_clusters` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_clustertypes`
--

DROP TABLE IF EXISTS `glpi_clustertypes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_clustertypes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `date_creation` (`date_creation`),
  KEY `date_mod` (`date_mod`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_clustertypes`
--

LOCK TABLES `glpi_clustertypes` WRITE;
/*!40000 ALTER TABLE `glpi_clustertypes` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_clustertypes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_computerantiviruses`
--

DROP TABLE IF EXISTS `glpi_computerantiviruses`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_computerantiviruses` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `computers_id` int(10) unsigned NOT NULL DEFAULT 0,
  `name` varchar(255) DEFAULT NULL,
  `manufacturers_id` int(10) unsigned NOT NULL DEFAULT 0,
  `antivirus_version` varchar(255) DEFAULT NULL,
  `signature_version` varchar(255) DEFAULT NULL,
  `is_active` tinyint(4) NOT NULL DEFAULT 0,
  `is_deleted` tinyint(4) NOT NULL DEFAULT 0,
  `is_uptodate` tinyint(4) NOT NULL DEFAULT 0,
  `is_dynamic` tinyint(4) NOT NULL DEFAULT 0,
  `date_expiration` timestamp NULL DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `antivirus_version` (`antivirus_version`),
  KEY `signature_version` (`signature_version`),
  KEY `is_active` (`is_active`),
  KEY `is_uptodate` (`is_uptodate`),
  KEY `is_dynamic` (`is_dynamic`),
  KEY `is_deleted` (`is_deleted`),
  KEY `computers_id` (`computers_id`),
  KEY `date_expiration` (`date_expiration`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`),
  KEY `manufacturers_id` (`manufacturers_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_computerantiviruses`
--

LOCK TABLES `glpi_computerantiviruses` WRITE;
/*!40000 ALTER TABLE `glpi_computerantiviruses` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_computerantiviruses` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_computermodels`
--

DROP TABLE IF EXISTS `glpi_computermodels`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_computermodels` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `product_number` varchar(255) DEFAULT NULL,
  `weight` int(11) NOT NULL DEFAULT 0,
  `required_units` int(11) NOT NULL DEFAULT 1,
  `depth` float NOT NULL DEFAULT 1,
  `power_connections` int(11) NOT NULL DEFAULT 0,
  `power_consumption` int(11) NOT NULL DEFAULT 0,
  `is_half_rack` tinyint(4) NOT NULL DEFAULT 0,
  `picture_front` text DEFAULT NULL,
  `picture_rear` text DEFAULT NULL,
  `pictures` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`),
  KEY `product_number` (`product_number`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_computermodels`
--

LOCK TABLES `glpi_computermodels` WRITE;
/*!40000 ALTER TABLE `glpi_computermodels` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_computermodels` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_computers`
--

DROP TABLE IF EXISTS `glpi_computers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_computers` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `name` varchar(255) DEFAULT NULL,
  `serial` varchar(255) DEFAULT NULL,
  `otherserial` varchar(255) DEFAULT NULL,
  `contact` varchar(255) DEFAULT NULL,
  `contact_num` varchar(255) DEFAULT NULL,
  `users_id_tech` int(10) unsigned NOT NULL DEFAULT 0,
  `groups_id_tech` int(10) unsigned NOT NULL DEFAULT 0,
  `comment` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `autoupdatesystems_id` int(10) unsigned NOT NULL DEFAULT 0,
  `locations_id` int(10) unsigned NOT NULL DEFAULT 0,
  `networks_id` int(10) unsigned NOT NULL DEFAULT 0,
  `computermodels_id` int(10) unsigned NOT NULL DEFAULT 0,
  `computertypes_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_template` tinyint(4) NOT NULL DEFAULT 0,
  `template_name` varchar(255) DEFAULT NULL,
  `manufacturers_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_deleted` tinyint(4) NOT NULL DEFAULT 0,
  `is_dynamic` tinyint(4) NOT NULL DEFAULT 0,
  `users_id` int(10) unsigned NOT NULL DEFAULT 0,
  `groups_id` int(10) unsigned NOT NULL DEFAULT 0,
  `states_id` int(10) unsigned NOT NULL DEFAULT 0,
  `ticket_tco` decimal(20,4) DEFAULT 0.0000,
  `uuid` varchar(255) DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `last_inventory_update` timestamp NULL DEFAULT NULL,
  `last_boot` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `date_mod` (`date_mod`),
  KEY `name` (`name`),
  KEY `is_template` (`is_template`),
  KEY `autoupdatesystems_id` (`autoupdatesystems_id`),
  KEY `entities_id` (`entities_id`),
  KEY `manufacturers_id` (`manufacturers_id`),
  KEY `groups_id` (`groups_id`),
  KEY `users_id` (`users_id`),
  KEY `locations_id` (`locations_id`),
  KEY `computermodels_id` (`computermodels_id`),
  KEY `networks_id` (`networks_id`),
  KEY `states_id` (`states_id`),
  KEY `users_id_tech` (`users_id_tech`),
  KEY `computertypes_id` (`computertypes_id`),
  KEY `is_deleted` (`is_deleted`),
  KEY `groups_id_tech` (`groups_id_tech`),
  KEY `is_dynamic` (`is_dynamic`),
  KEY `serial` (`serial`),
  KEY `otherserial` (`otherserial`),
  KEY `uuid` (`uuid`),
  KEY `date_creation` (`date_creation`),
  KEY `is_recursive` (`is_recursive`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_computers`
--

LOCK TABLES `glpi_computers` WRITE;
/*!40000 ALTER TABLE `glpi_computers` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_computers` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_computers_items`
--

DROP TABLE IF EXISTS `glpi_computers_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_computers_items` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `items_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'RELATION to various table, according to itemtype (ID)',
  `computers_id` int(10) unsigned NOT NULL DEFAULT 0,
  `itemtype` varchar(100) NOT NULL,
  `is_deleted` tinyint(4) NOT NULL DEFAULT 0,
  `is_dynamic` tinyint(4) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `computers_id` (`computers_id`),
  KEY `item` (`itemtype`,`items_id`),
  KEY `is_deleted` (`is_deleted`),
  KEY `is_dynamic` (`is_dynamic`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_computers_items`
--

LOCK TABLES `glpi_computers_items` WRITE;
/*!40000 ALTER TABLE `glpi_computers_items` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_computers_items` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_computertypes`
--

DROP TABLE IF EXISTS `glpi_computertypes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_computertypes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_computertypes`
--

LOCK TABLES `glpi_computertypes` WRITE;
/*!40000 ALTER TABLE `glpi_computertypes` DISABLE KEYS */;
INSERT INTO `glpi_computertypes` VALUES
(1,'DESKTOP','','2024-12-27 14:00:49','2024-12-27 14:00:49'),
(2,'ALL IN ONE','','2024-12-27 14:00:55','2024-12-27 14:00:55'),
(3,'NOTEBOOK','','2024-12-27 14:01:01','2024-12-27 14:01:01');
/*!40000 ALTER TABLE `glpi_computertypes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_computervirtualmachines`
--

DROP TABLE IF EXISTS `glpi_computervirtualmachines`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_computervirtualmachines` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `computers_id` int(10) unsigned NOT NULL DEFAULT 0,
  `name` varchar(255) NOT NULL DEFAULT '',
  `virtualmachinestates_id` int(10) unsigned NOT NULL DEFAULT 0,
  `virtualmachinesystems_id` int(10) unsigned NOT NULL DEFAULT 0,
  `virtualmachinetypes_id` int(10) unsigned NOT NULL DEFAULT 0,
  `uuid` varchar(255) NOT NULL DEFAULT '',
  `vcpu` int(11) NOT NULL DEFAULT 0,
  `ram` int(10) unsigned DEFAULT NULL,
  `is_deleted` tinyint(4) NOT NULL DEFAULT 0,
  `is_dynamic` tinyint(4) NOT NULL DEFAULT 0,
  `comment` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `computers_id` (`computers_id`),
  KEY `entities_id` (`entities_id`),
  KEY `name` (`name`),
  KEY `virtualmachinestates_id` (`virtualmachinestates_id`),
  KEY `virtualmachinesystems_id` (`virtualmachinesystems_id`),
  KEY `vcpu` (`vcpu`),
  KEY `ram` (`ram`),
  KEY `is_deleted` (`is_deleted`),
  KEY `is_dynamic` (`is_dynamic`),
  KEY `uuid` (`uuid`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`),
  KEY `virtualmachinetypes_id` (`virtualmachinetypes_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_computervirtualmachines`
--

LOCK TABLES `glpi_computervirtualmachines` WRITE;
/*!40000 ALTER TABLE `glpi_computervirtualmachines` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_computervirtualmachines` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_configs`
--

DROP TABLE IF EXISTS `glpi_configs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_configs` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `context` varchar(150) DEFAULT NULL,
  `name` varchar(150) DEFAULT NULL,
  `value` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`context`,`name`),
  KEY `name` (`name`)
) ENGINE=InnoDB AUTO_INCREMENT=314 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_configs`
--

LOCK TABLES `glpi_configs` WRITE;
/*!40000 ALTER TABLE `glpi_configs` DISABLE KEYS */;
INSERT INTO `glpi_configs` VALUES
(1,'core','version','10.0.17'),
(2,'core','show_jobs_at_login','0'),
(3,'core','cut','250'),
(4,'core','list_limit','15'),
(5,'core','list_limit_max','50'),
(6,'core','url_maxlength','30'),
(7,'core','event_loglevel','5'),
(8,'core','notifications_mailing','1'),
(9,'core','admin_email','admsys@localhost'),
(10,'core','admin_email_name',''),
(11,'core','from_email',''),
(12,'core','from_email_name',''),
(13,'core','noreply_email',''),
(14,'core','noreply_email_name',''),
(15,'core','replyto_email',''),
(16,'core','replyto_email_name',''),
(17,'core','mailing_signature','SIGNATURE'),
(18,'core','use_anonymous_helpdesk','0'),
(19,'core','use_anonymous_followups','0'),
(20,'core','language','pt_BR'),
(21,'core','priority_1','#fff2f2'),
(22,'core','priority_2','#ffe0e0'),
(23,'core','priority_3','#ffcece'),
(24,'core','priority_4','#ffbfbf'),
(25,'core','priority_5','#ffadad'),
(26,'core','priority_6','#ff5555'),
(27,'core','date_tax','2005-12-31'),
(28,'core','cas_host',''),
(29,'core','cas_port','443'),
(30,'core','cas_uri',''),
(31,'core','cas_logout',''),
(32,'core','cas_version','CAS_VERSION_2_0'),
(33,'core','existing_auth_server_field_clean_domain','0'),
(34,'core','planning_begin','08:00'),
(35,'core','planning_end','20:00'),
(36,'core','utf8_conv','1'),
(37,'core','use_public_faq','0'),
(38,'core','url_base','https://oswintech.ddns.net'),
(39,'core','show_link_in_mail','0'),
(40,'core','text_login',''),
(41,'core','founded_new_version',''),
(42,'core','dropdown_max','100'),
(43,'core','ajax_wildcard','*'),
(44,'core','ajax_limit_count','10'),
(45,'core','is_users_auto_add','1'),
(46,'core','date_format','1'),
(47,'core','number_format','0'),
(48,'core','csv_delimiter',';'),
(49,'core','is_ids_visible','0'),
(50,'core','smtp_mode','0'),
(51,'core','smtp_host',''),
(52,'core','smtp_port','25'),
(53,'core','smtp_username',''),
(54,'core','smtp_oauth_provider',''),
(55,'core','smtp_oauth_client_id',''),
(56,'core','smtp_oauth_client_secret',''),
(57,'core','smtp_oauth_options','{}'),
(58,'core','smtp_oauth_refresh_token',''),
(59,'core','proxy_name',''),
(60,'core','proxy_port','8080'),
(61,'core','proxy_user',''),
(62,'core','add_followup_on_update_ticket','1'),
(63,'core','keep_tickets_on_delete','1'),
(64,'core','time_step','5'),
(65,'core','decimal_number','2'),
(66,'core','helpdesk_doc_url',''),
(67,'core','central_doc_url',''),
(68,'core','documentcategories_id_forticket','0'),
(69,'core','monitors_management_restrict','2'),
(70,'core','phones_management_restrict','2'),
(71,'core','peripherals_management_restrict','2'),
(72,'core','printers_management_restrict','2'),
(73,'core','use_log_in_files','1'),
(74,'core','time_offset','0'),
(75,'core','is_contact_autoupdate','1'),
(76,'core','is_user_autoupdate','1'),
(77,'core','is_group_autoupdate','1'),
(78,'core','is_location_autoupdate','1'),
(79,'core','state_autoupdate_mode','0'),
(80,'core','is_contact_autoclean','0'),
(81,'core','is_user_autoclean','0'),
(82,'core','is_group_autoclean','0'),
(83,'core','is_location_autoclean','0'),
(84,'core','state_autoclean_mode','0'),
(85,'core','use_flat_dropdowntree','0'),
(86,'core','use_flat_dropdowntree_on_search_result','1'),
(87,'core','use_autoname_by_entity','1'),
(88,'core','softwarecategories_id_ondelete','1'),
(89,'core','x509_email_field',''),
(90,'core','x509_cn_restrict',''),
(91,'core','x509_o_restrict',''),
(92,'core','x509_ou_restrict',''),
(93,'core','default_mailcollector_filesize_max','2097152'),
(94,'core','followup_private','0'),
(95,'core','task_private','0'),
(96,'core','default_software_helpdesk_visible','1'),
(97,'core','names_format','1'),
(98,'core','default_requesttypes_id','1'),
(99,'core','use_noright_users_add','1'),
(100,'core','cron_limit','5'),
(101,'core','priority_matrix','{\"1\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"2\",\"4\":\"2\",\"5\":\"2\"},\"2\":{\"1\":\"1\",\"2\":\"2\",\"3\":\"2\",\"4\":\"3\",\"5\":\"3\"},\"3\":{\"1\":\"2\",\"2\":\"2\",\"3\":\"3\",\"4\":\"4\",\"5\":\"4\"},\"4\":{\"1\":\"2\",\"2\":\"3\",\"3\":\"4\",\"4\":\"4\",\"5\":\"5\"},\"5\":{\"1\":\"2\",\"2\":\"3\",\"3\":\"4\",\"4\":\"5\",\"5\":\"5\"}}'),
(102,'core','urgency_mask','62'),
(103,'core','impact_mask','62'),
(104,'core','user_deleted_ldap','0'),
(105,'core','user_restored_ldap','0'),
(106,'core','auto_create_infocoms','1'),
(107,'core','use_slave_for_search','0'),
(108,'core','proxy_passwd',''),
(109,'core','smtp_passwd',''),
(110,'core','show_count_on_tabs','1'),
(111,'core','refresh_views','1'),
(112,'core','set_default_tech','1'),
(113,'core','allow_search_view','2'),
(114,'core','allow_search_all','0'),
(115,'core','allow_search_global','1'),
(116,'core','display_count_on_home','5'),
(117,'core','use_password_security','0'),
(118,'core','password_min_length','8'),
(119,'core','password_need_number','1'),
(120,'core','password_need_letter','1'),
(121,'core','password_need_caps','1'),
(122,'core','password_need_symbol','1'),
(123,'core','use_check_pref','0'),
(124,'core','notification_to_myself','1'),
(125,'core','duedateok_color','#06ff00'),
(126,'core','duedatewarning_color','#ffb800'),
(127,'core','duedatecritical_color','#ff0000'),
(128,'core','duedatewarning_less','20'),
(129,'core','duedatecritical_less','5'),
(130,'core','duedatewarning_unit','%'),
(131,'core','duedatecritical_unit','%'),
(132,'core','realname_ssofield',''),
(133,'core','firstname_ssofield',''),
(134,'core','email1_ssofield',''),
(135,'core','email2_ssofield',''),
(136,'core','email3_ssofield',''),
(137,'core','email4_ssofield',''),
(138,'core','phone_ssofield',''),
(139,'core','phone2_ssofield',''),
(140,'core','mobile_ssofield',''),
(141,'core','comment_ssofield',''),
(142,'core','title_ssofield',''),
(143,'core','category_ssofield',''),
(144,'core','language_ssofield',''),
(145,'core','entity_ssofield',''),
(146,'core','registration_number_ssofield',''),
(147,'core','ssovariables_id','0'),
(148,'core','ssologout_url',''),
(149,'core','translate_kb','0'),
(150,'core','translate_dropdowns','0'),
(151,'core','translate_reminders','0'),
(152,'core','pdffont','dejavusans'),
(153,'core','keep_devices_when_purging_item','0'),
(154,'core','maintenance_mode','0'),
(155,'core','maintenance_text',''),
(156,'core','attach_ticket_documents_to_mail','0'),
(157,'core','backcreated','0'),
(158,'core','task_state','1'),
(159,'core','palette','auror'),
(160,'core','page_layout','vertical'),
(161,'core','fold_menu','0'),
(162,'core','fold_search','0'),
(163,'core','savedsearches_pinned','0'),
(164,'core','timeline_order','natural'),
(165,'core','itil_layout',''),
(166,'core','richtext_layout','classic'),
(167,'core','lock_use_lock_item','0'),
(168,'core','lock_autolock_mode','1'),
(169,'core','lock_directunlock_notification','0'),
(170,'core','lock_item_list','[]'),
(171,'core','lock_lockprofile_id','8'),
(172,'core','set_default_requester','1'),
(173,'core','highcontrast_css','0'),
(174,'core','default_central_tab','0'),
(175,'core','smtp_check_certificate','1'),
(176,'core','enable_api','1'),
(177,'core','enable_api_login_credentials','1'),
(178,'core','enable_api_login_external_token','1'),
(179,'core','url_base_api','https://os.wintech.tecnomulti.com/apirest.php'),
(180,'core','login_remember_time','604800'),
(181,'core','login_remember_default','1'),
(182,'core','use_notifications','1'),
(183,'core','notifications_ajax','1'),
(184,'core','notifications_ajax_check_interval','5'),
(185,'core','notifications_ajax_sound','sound_c'),
(186,'core','notifications_ajax_icon_url','/pics/glpi.png'),
(187,'core','dbversion','10.0.17@bde16719fbd4112f59a9a7d34c66c959bce73434'),
(188,'core','smtp_max_retries','5'),
(189,'core','smtp_sender',NULL),
(190,'core','instance_uuid','BOySSqnrtnZqeQY2jfczJ5y5Y0RWygGstv5BN5Xk'),
(191,'core','registration_uuid',NULL),
(192,'core','smtp_retry_time','5'),
(193,'core','purge_addrelation','0'),
(194,'core','purge_deleterelation','0'),
(195,'core','purge_createitem','0'),
(196,'core','purge_deleteitem','0'),
(197,'core','purge_restoreitem','0'),
(198,'core','purge_updateitem','0'),
(199,'core','purge_item_software_install','0'),
(200,'core','purge_software_item_install','0'),
(201,'core','purge_software_version_install','0'),
(202,'core','purge_infocom_creation','0'),
(203,'core','purge_profile_user','0'),
(204,'core','purge_group_user','0'),
(205,'core','purge_adddevice','0'),
(206,'core','purge_updatedevice','0'),
(207,'core','purge_deletedevice','0'),
(208,'core','purge_connectdevice','0'),
(209,'core','purge_disconnectdevice','0'),
(210,'core','purge_userdeletedfromldap','0'),
(211,'core','purge_comments','0'),
(212,'core','purge_datemod','0'),
(213,'core','purge_all','0'),
(214,'core','purge_user_auth_changes','0'),
(215,'core','purge_plugins','0'),
(216,'core','purge_refusedequipment','0'),
(217,'core','display_login_source','1'),
(218,'core','devices_in_menu','[\"Item_DeviceSimcard\"]'),
(219,'core','password_expiration_delay','-1'),
(220,'core','password_expiration_notice','-1'),
(221,'core','password_expiration_lock_delay','-1'),
(222,'core','default_dashboard_central','assistance'),
(223,'core','default_dashboard_assets','assets'),
(224,'core','default_dashboard_helpdesk','assistance'),
(225,'core','default_dashboard_mini_ticket','mini_tickets'),
(226,'core','impact_enabled_itemtypes','[\"Appliance\",\"Cluster\",\"Computer\",\"Datacenter\",\"DCRoom\",\"Domain\",\"Enclosure\",\"Monitor\",\"NetworkEquipment\",\"PDU\",\"Peripheral\",\"Phone\",\"Printer\",\"Rack\",\"Software\",\"DatabaseInstance\"]'),
(227,'core','document_max_size','2'),
(228,'core','planning_work_days','[1,2,3,4,5]'),
(229,'core','system_user','6'),
(230,'core','support_legacy_data','0'),
(231,'core','initialized_rules_collections','[\"RuleImportAssetCollection\",\"RuleMailCollectorCollection\",\"RuleRightCollection\",\"RuleSoftwareCategoryCollection\",\"RuleTicketCollection\",\"RuleAssetCollection\",\"RuleDictionnaryOperatingSystemCollection\",\"RuleDictionnaryOperatingSystemVersionCollection\",\"RuleDictionnaryOperatingSystemEditionCollection\"]'),
(232,'core','timeline_action_btn_layout','0'),
(233,'core','timeline_date_format','0'),
(234,'inventory','enabled_inventory','0'),
(235,'inventory','import_software','1'),
(236,'inventory','import_volume','1'),
(237,'inventory','import_antivirus','1'),
(238,'inventory','import_registry','1'),
(239,'inventory','import_process','1'),
(240,'inventory','import_vm','1'),
(241,'inventory','import_monitor_on_partial_sn','0'),
(242,'inventory','import_unmanaged','1'),
(243,'inventory','component_processor','1'),
(244,'inventory','component_memory','1'),
(245,'inventory','component_harddrive','1'),
(246,'inventory','component_networkcard','1'),
(247,'inventory','component_graphiccard','1'),
(248,'inventory','component_soundcard','1'),
(249,'inventory','component_drive','1'),
(250,'inventory','component_networkdrive','1'),
(251,'inventory','component_networkcardvirtual','1'),
(252,'inventory','component_control','1'),
(253,'inventory','component_battery','1'),
(254,'inventory','component_simcard','1'),
(255,'inventory','states_id_default','0'),
(256,'inventory','entities_id_default','3'),
(257,'inventory','location','0'),
(258,'inventory','group','0'),
(259,'inventory','vm_type','0'),
(260,'inventory','vm_components','0'),
(261,'inventory','vm_as_computer','0'),
(262,'inventory','component_removablemedia','1'),
(263,'inventory','component_powersupply','1'),
(264,'inventory','inventory_frequency','24'),
(265,'inventory','import_monitor','1'),
(266,'inventory','import_printer','1'),
(267,'inventory','import_peripheral','1'),
(268,'inventory','stale_agents_delay','0'),
(269,'inventory','stale_agents_action','[0]'),
(270,'inventory','stale_agents_status','0'),
(271,'core','timezone','0'),
(272,'core','_matrix','1'),
(273,'core','_impact_5','1'),
(274,'core','_impact_4','1'),
(275,'core','_impact_3','1'),
(276,'core','_impact_2','1'),
(277,'core','_impact_1','1'),
(278,'core','_urgency_5','1'),
(279,'core','_matrix_5_5','5'),
(280,'core','_matrix_5_4','5'),
(281,'core','_matrix_5_3','4'),
(282,'core','_matrix_5_2','3'),
(283,'core','_matrix_5_1','2'),
(284,'core','_urgency_4','1'),
(285,'core','_matrix_4_5','5'),
(286,'core','_matrix_4_4','4'),
(287,'core','_matrix_4_3','4'),
(288,'core','_matrix_4_2','3'),
(289,'core','_matrix_4_1','2'),
(290,'core','_urgency_3','1'),
(291,'core','_matrix_3_5','4'),
(292,'core','_matrix_3_4','4'),
(293,'core','_matrix_3_3','3'),
(294,'core','_matrix_3_2','2'),
(295,'core','_matrix_3_1','2'),
(296,'core','_urgency_2','1'),
(297,'core','_matrix_2_5','3'),
(298,'core','_matrix_2_4','3'),
(299,'core','_matrix_2_3','2'),
(300,'core','_matrix_2_2','2'),
(301,'core','_matrix_2_1','1'),
(302,'core','_urgency_1','1'),
(303,'core','_matrix_1_5','2'),
(304,'core','_matrix_1_4','2'),
(305,'core','_matrix_1_3','2'),
(306,'core','_matrix_1_2','1'),
(307,'core','_matrix_1_1','1'),
(308,'core','marketplace_replace_plugins','2'),
(309,'core','glpinetwork_registration_key','onUIwNnwovaD44bhs4+Ccc4sm8K7D/wRtFC5L8PNPhcWVqEKr9mTKwWNosZNr8EXVfQ1LmpUknY8dv5sTcv2qggDHGDtR1xSEmY+TisVxOAQzjXzrYmb3BmDbFp575nascWeqILGaQDyq7lBOd6oDGnMLPZTKKRF+dV0dQVN5rgkcCCg12eEhb36Y0aK3zSMvOVUf4fQQ2WcKxL7kklvOgn2aMAR1besZrEzMXQucHfXbVyqzHPfDf2g4y6/Yt9bfdfvPz/htDcEuOAso1IMQWji9efEOJDjY64qRYOppv6aMfWjUNdaTTJScxbxIIfZeswbs0+CpE2Aip5ltZAuyK06zIntZ4RKNZwA0Im0oqhQScbLkp5Uqr0mfs/k8FZVWAwd3Pn0Ndz/IK2O2Y4ivT0R7MWpC93z1M56FqbXZIA+N0OuEl1UsCY+KeDWN1M1JCyNoRgc2mby3bRPgBYHmLLE/J/mySYtwdvEH0OF2kQVyaLaU7h2aW/cD4veFidNFuDi0IOIpNznoBFINzr9jPncCYZG/lvR9n6B3+DCCM+UBbfOFSI2AHxLeNY4oJo4RDQmzjKgJnAVnlrvy2umLhqoRGt9JI3DKJBMWgSPsZ2/mwDCvvSgNGxCCFINdVwWUJ0X/IJM3KD50zT3XXJornYCa54HudzVar3Bw80Ik1//2t0Gd75NWu2KP8qnTvCqn5R04owp71Gru+NypTSjjNMhuXz5z4pOoNZFicIT3mMFLN2i0wfBYVKZoNHY35vnTCiFeZX+8XE='),
(310,'core','glpi_network_uuid','IklXoZMBVSFHAPUoLhOEjIZE3BIAScxSANE1woMi'),
(311,'formcreator','schema_version','2.13'),
(312,'core','notification_uuid','Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn'),
(313,'core','_update_devices_in_menu','1');
/*!40000 ALTER TABLE `glpi_configs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_consumableitems`
--

DROP TABLE IF EXISTS `glpi_consumableitems`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_consumableitems` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `name` varchar(255) DEFAULT NULL,
  `ref` varchar(255) DEFAULT NULL,
  `locations_id` int(10) unsigned NOT NULL DEFAULT 0,
  `consumableitemtypes_id` int(10) unsigned NOT NULL DEFAULT 0,
  `manufacturers_id` int(10) unsigned NOT NULL DEFAULT 0,
  `users_id_tech` int(10) unsigned NOT NULL DEFAULT 0,
  `groups_id_tech` int(10) unsigned NOT NULL DEFAULT 0,
  `is_deleted` tinyint(4) NOT NULL DEFAULT 0,
  `comment` text DEFAULT NULL,
  `alarm_threshold` int(11) NOT NULL DEFAULT 10,
  `stock_target` int(11) NOT NULL DEFAULT 0,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  `otherserial` varchar(255) DEFAULT NULL,
  `pictures` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `manufacturers_id` (`manufacturers_id`),
  KEY `locations_id` (`locations_id`),
  KEY `users_id_tech` (`users_id_tech`),
  KEY `consumableitemtypes_id` (`consumableitemtypes_id`),
  KEY `is_deleted` (`is_deleted`),
  KEY `alarm_threshold` (`alarm_threshold`),
  KEY `groups_id_tech` (`groups_id_tech`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`),
  KEY `otherserial` (`otherserial`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_consumableitems`
--

LOCK TABLES `glpi_consumableitems` WRITE;
/*!40000 ALTER TABLE `glpi_consumableitems` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_consumableitems` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_consumableitemtypes`
--

DROP TABLE IF EXISTS `glpi_consumableitemtypes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_consumableitemtypes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_consumableitemtypes`
--

LOCK TABLES `glpi_consumableitemtypes` WRITE;
/*!40000 ALTER TABLE `glpi_consumableitemtypes` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_consumableitemtypes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_consumables`
--

DROP TABLE IF EXISTS `glpi_consumables`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_consumables` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `consumableitems_id` int(10) unsigned NOT NULL DEFAULT 0,
  `date_in` date DEFAULT NULL,
  `date_out` date DEFAULT NULL,
  `itemtype` varchar(100) DEFAULT NULL,
  `items_id` int(10) unsigned NOT NULL DEFAULT 0,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `date_in` (`date_in`),
  KEY `date_out` (`date_out`),
  KEY `consumableitems_id` (`consumableitems_id`),
  KEY `entities_id` (`entities_id`),
  KEY `item` (`itemtype`,`items_id`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_consumables`
--

LOCK TABLES `glpi_consumables` WRITE;
/*!40000 ALTER TABLE `glpi_consumables` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_consumables` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_contacts`
--

DROP TABLE IF EXISTS `glpi_contacts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_contacts` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `name` varchar(255) DEFAULT NULL,
  `firstname` varchar(255) DEFAULT NULL,
  `registration_number` varchar(255) DEFAULT NULL,
  `phone` varchar(255) DEFAULT NULL,
  `phone2` varchar(255) DEFAULT NULL,
  `mobile` varchar(255) DEFAULT NULL,
  `fax` varchar(255) DEFAULT NULL,
  `email` varchar(255) DEFAULT NULL,
  `contacttypes_id` int(10) unsigned NOT NULL DEFAULT 0,
  `comment` text DEFAULT NULL,
  `is_deleted` tinyint(4) NOT NULL DEFAULT 0,
  `usertitles_id` int(10) unsigned NOT NULL DEFAULT 0,
  `address` text DEFAULT NULL,
  `postcode` varchar(255) DEFAULT NULL,
  `town` varchar(255) DEFAULT NULL,
  `state` varchar(255) DEFAULT NULL,
  `country` varchar(255) DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  `pictures` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `contacttypes_id` (`contacttypes_id`),
  KEY `is_deleted` (`is_deleted`),
  KEY `usertitles_id` (`usertitles_id`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_contacts`
--

LOCK TABLES `glpi_contacts` WRITE;
/*!40000 ALTER TABLE `glpi_contacts` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_contacts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_contacts_suppliers`
--

DROP TABLE IF EXISTS `glpi_contacts_suppliers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_contacts_suppliers` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `suppliers_id` int(10) unsigned NOT NULL DEFAULT 0,
  `contacts_id` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`suppliers_id`,`contacts_id`),
  KEY `contacts_id` (`contacts_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_contacts_suppliers`
--

LOCK TABLES `glpi_contacts_suppliers` WRITE;
/*!40000 ALTER TABLE `glpi_contacts_suppliers` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_contacts_suppliers` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_contacttypes`
--

DROP TABLE IF EXISTS `glpi_contacttypes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_contacttypes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_contacttypes`
--

LOCK TABLES `glpi_contacttypes` WRITE;
/*!40000 ALTER TABLE `glpi_contacttypes` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_contacttypes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_contractcosts`
--

DROP TABLE IF EXISTS `glpi_contractcosts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_contractcosts` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `contracts_id` int(10) unsigned NOT NULL DEFAULT 0,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `begin_date` date DEFAULT NULL,
  `end_date` date DEFAULT NULL,
  `cost` decimal(20,4) NOT NULL DEFAULT 0.0000,
  `budgets_id` int(10) unsigned NOT NULL DEFAULT 0,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `contracts_id` (`contracts_id`),
  KEY `begin_date` (`begin_date`),
  KEY `end_date` (`end_date`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `budgets_id` (`budgets_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_contractcosts`
--

LOCK TABLES `glpi_contractcosts` WRITE;
/*!40000 ALTER TABLE `glpi_contractcosts` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_contractcosts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_contracts`
--

DROP TABLE IF EXISTS `glpi_contracts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_contracts` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `name` varchar(255) DEFAULT NULL,
  `num` varchar(255) DEFAULT NULL,
  `contracttypes_id` int(10) unsigned NOT NULL DEFAULT 0,
  `locations_id` int(10) unsigned NOT NULL DEFAULT 0,
  `begin_date` date DEFAULT NULL,
  `duration` int(11) NOT NULL DEFAULT 0,
  `notice` int(11) NOT NULL DEFAULT 0,
  `periodicity` int(11) NOT NULL DEFAULT 0,
  `billing` int(11) NOT NULL DEFAULT 0,
  `comment` text DEFAULT NULL,
  `accounting_number` varchar(255) DEFAULT NULL,
  `is_deleted` tinyint(4) NOT NULL DEFAULT 0,
  `week_begin_hour` time NOT NULL DEFAULT '00:00:00',
  `week_end_hour` time NOT NULL DEFAULT '00:00:00',
  `saturday_begin_hour` time NOT NULL DEFAULT '00:00:00',
  `saturday_end_hour` time NOT NULL DEFAULT '00:00:00',
  `use_saturday` tinyint(4) NOT NULL DEFAULT 0,
  `sunday_begin_hour` time NOT NULL DEFAULT '00:00:00',
  `sunday_end_hour` time NOT NULL DEFAULT '00:00:00',
  `use_sunday` tinyint(4) NOT NULL DEFAULT 0,
  `max_links_allowed` int(11) NOT NULL DEFAULT 0,
  `alert` int(11) NOT NULL DEFAULT 0,
  `renewal` int(11) NOT NULL DEFAULT 0,
  `template_name` varchar(255) DEFAULT NULL,
  `is_template` tinyint(4) NOT NULL DEFAULT 0,
  `states_id` int(10) unsigned NOT NULL DEFAULT 0,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `begin_date` (`begin_date`),
  KEY `name` (`name`),
  KEY `contracttypes_id` (`contracttypes_id`),
  KEY `locations_id` (`locations_id`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `is_deleted` (`is_deleted`),
  KEY `is_template` (`is_template`),
  KEY `use_sunday` (`use_sunday`),
  KEY `use_saturday` (`use_saturday`),
  KEY `alert` (`alert`),
  KEY `states_id` (`states_id`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_contracts`
--

LOCK TABLES `glpi_contracts` WRITE;
/*!40000 ALTER TABLE `glpi_contracts` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_contracts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_contracts_items`
--

DROP TABLE IF EXISTS `glpi_contracts_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_contracts_items` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `contracts_id` int(10) unsigned NOT NULL DEFAULT 0,
  `items_id` int(10) unsigned NOT NULL DEFAULT 0,
  `itemtype` varchar(100) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`contracts_id`,`itemtype`,`items_id`),
  KEY `item` (`itemtype`,`items_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_contracts_items`
--

LOCK TABLES `glpi_contracts_items` WRITE;
/*!40000 ALTER TABLE `glpi_contracts_items` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_contracts_items` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_contracts_suppliers`
--

DROP TABLE IF EXISTS `glpi_contracts_suppliers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_contracts_suppliers` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `suppliers_id` int(10) unsigned NOT NULL DEFAULT 0,
  `contracts_id` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`suppliers_id`,`contracts_id`),
  KEY `contracts_id` (`contracts_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_contracts_suppliers`
--

LOCK TABLES `glpi_contracts_suppliers` WRITE;
/*!40000 ALTER TABLE `glpi_contracts_suppliers` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_contracts_suppliers` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_contracttypes`
--

DROP TABLE IF EXISTS `glpi_contracttypes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_contracttypes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_contracttypes`
--

LOCK TABLES `glpi_contracttypes` WRITE;
/*!40000 ALTER TABLE `glpi_contracttypes` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_contracttypes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_crontasklogs`
--

DROP TABLE IF EXISTS `glpi_crontasklogs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_crontasklogs` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `crontasks_id` int(10) unsigned NOT NULL,
  `crontasklogs_id` int(10) unsigned NOT NULL COMMENT 'id of ''start'' event',
  `date` timestamp NOT NULL DEFAULT current_timestamp(),
  `state` int(11) NOT NULL COMMENT '0:start, 1:run, 2:stop',
  `elapsed` float NOT NULL COMMENT 'time elapsed since start',
  `volume` int(11) NOT NULL COMMENT 'for statistics',
  `content` varchar(255) DEFAULT NULL COMMENT 'message',
  PRIMARY KEY (`id`),
  KEY `date` (`date`),
  KEY `crontasks_id` (`crontasks_id`),
  KEY `crontasklogs_id_state` (`crontasklogs_id`,`state`)
) ENGINE=InnoDB AUTO_INCREMENT=2145 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_crontasklogs`
--

LOCK TABLES `glpi_crontasklogs` WRITE;
/*!40000 ALTER TABLE `glpi_crontasklogs` DISABLE KEYS */;
INSERT INTO `glpi_crontasklogs` VALUES
(1,5,0,'2024-12-27 05:24:19',0,0,0,'Run mode: GLPI'),
(2,5,1,'2024-12-27 05:24:19',2,0.031697,0,'Action completed, no processing required'),
(3,6,0,'2024-12-27 05:45:52',0,0,0,'Run mode: GLPI'),
(4,6,3,'2024-12-27 05:45:52',2,0.00567198,0,'Action completed, no processing required'),
(5,9,0,'2024-12-27 05:52:55',0,0,0,'Run mode: GLPI'),
(6,9,5,'2024-12-27 05:52:55',2,0.0282609,0,'Action completed, no processing required'),
(7,12,0,'2024-12-27 05:58:09',0,0,0,'Run mode: GLPI'),
(8,12,7,'2024-12-27 05:58:09',1,0.00574493,2,'Limpar 2 arquivos de sessão criados a mais de 1440 segundos\n'),
(9,12,7,'2024-12-27 05:58:09',2,0.0274239,2,'Action completed, fully processed'),
(10,13,0,'2024-12-27 06:05:38',0,0,0,'Run mode: GLPI'),
(11,13,10,'2024-12-27 06:05:38',2,0.0721869,0,'Action completed, no processing required'),
(12,14,0,'2024-12-27 06:29:31',0,0,0,'Run mode: GLPI'),
(13,14,12,'2024-12-27 06:29:31',2,0.013742,0,'Action completed, no processing required'),
(14,15,0,'2024-12-27 13:15:04',0,0,0,'Run mode: GLPI'),
(15,15,14,'2024-12-27 13:15:04',2,0.0329561,0,'Action completed, no processing required'),
(16,16,0,'2024-12-27 13:19:57',0,0,0,'Run mode: GLPI'),
(17,16,16,'2024-12-27 13:19:57',2,0.0135901,0,'Action completed, no processing required'),
(18,17,0,'2024-12-27 13:53:40',0,0,0,'Run mode: GLPI'),
(19,17,18,'2024-12-27 13:53:40',2,0.00586009,0,'Action completed, no processing required'),
(20,18,0,'2024-12-27 13:58:56',0,0,0,'Run mode: GLPI'),
(21,18,20,'2024-12-27 13:58:56',2,0.00830388,0,'Action completed, no processing required'),
(22,19,0,'2024-12-27 17:11:29',0,0,0,'Run mode: GLPI'),
(23,19,22,'2024-12-27 17:11:29',2,0.0086751,0,'Action completed, fully processed'),
(24,20,0,'2024-12-27 19:28:38',0,0,0,'Run mode: GLPI'),
(25,20,24,'2024-12-27 19:28:38',2,0.00521398,0,'Action completed, no processing required'),
(26,21,0,'2024-12-27 19:37:14',0,0,0,'Run mode: GLPI'),
(27,21,26,'2024-12-27 19:37:14',2,0.00473905,0,'Action completed, no processing required'),
(28,22,0,'2024-12-27 19:38:43',0,0,0,'Run mode: GLPI'),
(29,22,28,'2024-12-27 19:38:43',2,0.0114169,0,'Action completed, no processing required'),
(30,23,0,'2024-12-27 19:39:01',0,0,0,'Run mode: GLPI'),
(31,23,30,'2024-12-27 19:39:01',2,0.00506902,0,'Action completed, no processing required'),
(32,24,0,'2024-12-27 19:39:46',0,0,0,'Run mode: GLPI'),
(33,24,32,'2024-12-27 19:39:46',2,0.011508,0,'Action completed, no processing required'),
(34,25,0,'2024-12-27 19:40:58',0,0,0,'Run mode: GLPI'),
(35,25,34,'2024-12-27 19:40:58',2,0.00556183,0,'Action completed, no processing required'),
(36,31,0,'2024-12-27 19:41:35',0,0,0,'Run mode: GLPI'),
(37,31,36,'2024-12-27 19:41:35',2,0.00541592,0,'Action completed, no processing required'),
(38,32,0,'2024-12-27 19:45:10',0,0,0,'Run mode: GLPI'),
(39,32,38,'2024-12-27 19:45:10',2,0.005476,0,'Action completed, no processing required'),
(40,9,0,'2024-12-27 19:45:17',0,0,0,'Run mode: GLPI'),
(41,9,40,'2024-12-27 19:45:17',2,0.012316,0,'Action completed, no processing required'),
(42,13,0,'2024-12-27 19:47:42',0,0,0,'Run mode: GLPI'),
(43,13,42,'2024-12-27 19:47:42',2,0.00580096,0,'Action completed, no processing required'),
(44,14,0,'2024-12-27 19:49:31',0,0,0,'Run mode: GLPI'),
(45,14,44,'2024-12-27 19:49:31',2,0.00577021,0,'Action completed, no processing required'),
(46,17,0,'2024-12-27 19:53:26',0,0,0,'Run mode: GLPI'),
(47,17,46,'2024-12-27 19:53:26',2,0.00481391,0,'Action completed, no processing required'),
(48,22,0,'2024-12-27 19:55:01',0,0,0,'Run mode: GLPI'),
(49,22,48,'2024-12-27 19:55:01',2,0.0118511,0,'Action completed, no processing required'),
(50,21,0,'2024-12-27 19:58:27',0,0,0,'Run mode: GLPI'),
(51,21,50,'2024-12-27 19:58:27',2,0.00393391,0,'Action completed, no processing required'),
(52,32,0,'2024-12-27 19:58:55',0,0,0,'Run mode: GLPI'),
(53,32,52,'2024-12-27 19:58:55',2,0.00542808,0,'Action completed, no processing required'),
(54,9,0,'2024-12-27 20:00:05',0,0,0,'Run mode: GLPI'),
(55,9,54,'2024-12-27 20:00:05',2,0.011035,0,'Action completed, no processing required'),
(56,22,0,'2024-12-27 20:04:21',0,0,0,'Run mode: GLPI'),
(57,22,56,'2024-12-27 20:04:21',2,0.0132399,0,'Action completed, no processing required'),
(58,17,0,'2024-12-27 20:06:57',0,0,0,'Run mode: GLPI'),
(59,17,58,'2024-12-27 20:06:57',2,0.00483108,0,'Action completed, no processing required'),
(60,21,0,'2024-12-27 20:14:38',0,0,0,'Run mode: GLPI'),
(61,21,60,'2024-12-27 20:14:38',2,0.010093,0,'Action completed, no processing required'),
(62,32,0,'2024-12-27 20:16:07',0,0,0,'Run mode: GLPI'),
(63,32,62,'2024-12-27 20:16:07',2,0.00548983,0,'Action completed, no processing required'),
(64,22,0,'2024-12-27 20:20:00',0,0,0,'Run mode: GLPI'),
(65,22,64,'2024-12-27 20:20:00',2,0.013972,0,'Action completed, no processing required'),
(66,9,0,'2024-12-27 20:21:17',0,0,0,'Run mode: GLPI'),
(67,9,66,'2024-12-27 20:21:17',2,0.00616503,0,'Action completed, no processing required'),
(68,17,0,'2024-12-27 20:22:06',0,0,0,'Run mode: GLPI'),
(69,17,68,'2024-12-27 20:22:06',2,0.00610113,0,'Action completed, no processing required'),
(70,21,0,'2024-12-27 20:25:00',0,0,0,'Run mode: GLPI'),
(71,21,70,'2024-12-27 20:25:00',2,0.0125821,0,'Action completed, no processing required'),
(72,22,0,'2024-12-27 20:25:38',0,0,0,'Run mode: GLPI'),
(73,22,72,'2024-12-27 20:25:38',2,0.00775504,0,'Action completed, no processing required'),
(74,32,0,'2024-12-27 20:28:54',0,0,0,'Run mode: GLPI'),
(75,32,74,'2024-12-27 20:28:54',2,0.00616884,0,'Action completed, no processing required'),
(76,22,0,'2024-12-27 20:33:49',0,0,0,'Run mode: GLPI'),
(77,22,76,'2024-12-27 20:33:49',2,0.006145,0,'Action completed, no processing required'),
(78,17,0,'2024-12-27 20:34:03',0,0,0,'Run mode: GLPI'),
(79,17,78,'2024-12-27 20:34:03',2,0.00567389,0,'Action completed, no processing required'),
(80,20,0,'2024-12-27 20:37:36',0,0,0,'Run mode: GLPI'),
(81,20,80,'2024-12-27 20:37:36',2,0.00633001,0,'Action completed, no processing required'),
(82,21,0,'2024-12-27 20:38:22',0,0,0,'Run mode: GLPI'),
(83,21,82,'2024-12-27 20:38:22',2,0.00648308,0,'Action completed, no processing required'),
(84,9,0,'2024-12-27 20:39:44',0,0,0,'Run mode: GLPI'),
(85,9,84,'2024-12-27 20:39:44',2,0.00618601,0,'Action completed, no processing required'),
(86,32,0,'2024-12-27 20:41:48',0,0,0,'Run mode: GLPI'),
(87,32,86,'2024-12-27 20:41:48',2,0.00533605,0,'Action completed, no processing required'),
(88,22,0,'2024-12-27 20:42:51',0,0,0,'Run mode: GLPI'),
(89,22,88,'2024-12-27 20:42:51',2,0.00498104,0,'Action completed, no processing required'),
(90,17,0,'2024-12-27 20:45:26',0,0,0,'Run mode: GLPI'),
(91,17,90,'2024-12-27 20:45:26',2,0.00529599,0,'Action completed, no processing required'),
(92,24,0,'2024-12-27 20:48:19',0,0,0,'Run mode: GLPI'),
(93,24,92,'2024-12-27 20:48:19',2,0.005054,0,'Action completed, no processing required'),
(94,21,0,'2024-12-27 20:49:26',0,0,0,'Run mode: GLPI'),
(95,21,94,'2024-12-27 20:49:26',2,0.012414,0,'Action completed, no processing required'),
(96,22,0,'2024-12-27 20:50:41',0,0,0,'Run mode: GLPI'),
(97,22,96,'2024-12-27 20:50:41',2,0.00618696,0,'Action completed, no processing required'),
(98,32,0,'2024-12-27 20:52:55',0,0,0,'Run mode: GLPI'),
(99,32,98,'2024-12-27 20:52:55',2,0.00558496,0,'Action completed, no processing required'),
(100,13,0,'2024-12-27 20:54:37',0,0,0,'Run mode: GLPI'),
(101,13,100,'2024-12-27 20:54:37',2,0.00552297,0,'Action completed, no processing required'),
(102,9,0,'2024-12-27 20:59:07',0,0,0,'Run mode: GLPI'),
(103,9,102,'2024-12-27 20:59:07',2,0.00579,0,'Action completed, no processing required'),
(104,14,0,'2024-12-27 20:59:32',0,0,0,'Run mode: GLPI'),
(105,14,104,'2024-12-27 20:59:32',2,0.00516486,0,'Action completed, no processing required'),
(106,17,0,'2024-12-27 21:04:35',0,0,0,'Run mode: GLPI'),
(107,17,106,'2024-12-27 21:04:35',2,0.00968313,0,'Action completed, no processing required'),
(108,22,0,'2024-12-27 21:05:47',0,0,0,'Run mode: GLPI'),
(109,22,108,'2024-12-27 21:05:47',2,0.00918794,0,'Action completed, no processing required'),
(110,21,0,'2024-12-27 21:09:57',0,0,0,'Run mode: GLPI'),
(111,21,110,'2024-12-27 21:09:57',2,0.00640702,0,'Action completed, no processing required'),
(112,32,0,'2024-12-27 21:11:27',0,0,0,'Run mode: GLPI'),
(113,32,112,'2024-12-27 21:11:27',2,0.00495601,0,'Action completed, no processing required'),
(114,22,0,'2024-12-27 21:15:10',0,0,0,'Run mode: GLPI'),
(115,22,114,'2024-12-27 21:15:10',2,0.0101111,0,'Action completed, no processing required'),
(116,9,0,'2024-12-27 21:16:37',0,0,0,'Run mode: GLPI'),
(117,9,116,'2024-12-27 21:16:37',2,0.00532603,0,'Action completed, no processing required'),
(118,17,0,'2024-12-27 21:22:24',0,0,0,'Run mode: GLPI'),
(119,17,118,'2024-12-27 21:22:24',2,0.00621891,0,'Action completed, no processing required'),
(120,21,0,'2024-12-27 21:28:56',0,0,0,'Run mode: GLPI'),
(121,21,120,'2024-12-27 21:28:56',2,0.010098,0,'Action completed, no processing required'),
(122,22,0,'2024-12-27 21:33:08',0,0,0,'Run mode: GLPI'),
(123,22,122,'2024-12-27 21:33:08',2,0.00506401,0,'Action completed, no processing required'),
(124,32,0,'2024-12-27 21:47:39',0,0,0,'Run mode: GLPI'),
(125,32,124,'2024-12-27 21:47:39',2,0.00952911,0,'Action completed, no processing required'),
(126,9,0,'2024-12-28 05:04:54',0,0,0,'Run mode: GLPI'),
(127,9,126,'2024-12-28 05:04:54',2,0.0724111,0,'Action completed, no processing required'),
(128,17,0,'2024-12-29 00:02:45',0,0,0,'Run mode: GLPI'),
(129,17,128,'2024-12-29 00:02:45',2,0.0185149,0,'Action completed, no processing required'),
(130,21,0,'2024-12-29 18:32:20',0,0,0,'Run mode: GLPI'),
(131,21,130,'2024-12-29 18:32:20',2,0.112877,1,'Action completed, fully processed'),
(132,22,0,'2024-12-30 17:53:05',0,0,0,'Run mode: GLPI'),
(133,22,132,'2024-12-30 17:53:05',2,0.0453539,0,'Action completed, no processing required'),
(134,20,0,'2025-01-01 07:42:36',0,0,0,'Run mode: GLPI'),
(135,20,134,'2025-01-01 07:42:36',2,0.039115,0,'Action completed, no processing required'),
(136,24,0,'2025-01-02 14:18:31',0,0,0,'Run mode: GLPI'),
(137,24,136,'2025-01-02 14:18:31',1,0.0360072,3,'Limpar 3 arquivos temporários criados a mais de 3600 segundos\n'),
(138,24,136,'2025-01-02 14:18:31',2,0.0408001,3,'Action completed, fully processed'),
(139,32,0,'2025-01-02 20:40:00',0,0,0,'Run mode: GLPI'),
(140,32,139,'2025-01-02 20:40:00',2,0.0106421,0,'Action completed, no processing required'),
(141,13,0,'2025-01-02 21:00:01',0,0,0,'Run mode: GLPI'),
(142,13,141,'2025-01-02 21:00:01',2,0.0214629,0,'Action completed, no processing required'),
(143,14,0,'2025-01-02 21:07:18',0,0,0,'Run mode: GLPI'),
(144,14,143,'2025-01-02 21:07:18',2,0.00645113,0,'Action completed, no processing required'),
(145,15,0,'2025-01-02 21:16:25',0,0,0,'Run mode: GLPI'),
(146,15,145,'2025-01-02 21:16:25',2,0.00819016,0,'Action completed, no processing required'),
(147,16,0,'2025-01-02 21:16:51',0,0,0,'Run mode: GLPI'),
(148,16,147,'2025-01-02 21:16:51',2,0.00641704,0,'Action completed, no processing required'),
(149,9,0,'2025-01-02 21:17:23',0,0,0,'Run mode: GLPI'),
(150,9,149,'2025-01-02 21:17:23',2,0.00874901,0,'Action completed, no processing required'),
(151,5,0,'2025-01-02 21:21:19',0,0,0,'Run mode: GLPI'),
(152,5,151,'2025-01-02 21:21:19',2,0.034049,0,'Action completed, no processing required'),
(153,6,0,'2025-01-02 21:21:38',0,0,0,'Run mode: GLPI'),
(154,6,153,'2025-01-02 21:21:38',2,0.00905395,0,'Action completed, no processing required'),
(155,12,0,'2025-01-02 21:23:07',0,0,0,'Run mode: GLPI'),
(156,12,155,'2025-01-02 21:23:07',1,0.018764,522,'Limpar 522 arquivos de sessão criados a mais de 1440 segundos\n'),
(157,12,155,'2025-01-02 21:23:07',2,0.0232489,522,'Action completed, fully processed'),
(158,18,0,'2025-01-02 21:23:43',0,0,0,'Run mode: GLPI'),
(159,18,158,'2025-01-02 21:23:43',2,0.0110419,0,'Action completed, no processing required'),
(160,19,0,'2025-01-02 21:24:13',0,0,0,'Run mode: GLPI'),
(161,19,160,'2025-01-02 21:24:13',2,0.00971198,0,'Action completed, fully processed'),
(162,23,0,'2025-01-02 21:25:40',0,0,0,'Run mode: GLPI'),
(163,23,162,'2025-01-02 21:25:40',2,0.00605583,0,'Action completed, no processing required'),
(164,25,0,'2025-01-02 21:25:49',0,0,0,'Run mode: GLPI'),
(165,25,164,'2025-01-02 21:25:49',2,0.00567293,0,'Action completed, no processing required'),
(166,31,0,'2025-01-02 21:30:02',0,0,0,'Run mode: GLPI'),
(167,31,166,'2025-01-02 21:30:02',2,0.0232759,0,'Action completed, no processing required'),
(168,17,0,'2025-01-02 21:30:07',0,0,0,'Run mode: GLPI'),
(169,17,168,'2025-01-02 21:30:07',2,0.00643992,0,'Action completed, no processing required'),
(170,21,0,'2025-01-02 21:34:25',0,0,0,'Run mode: GLPI'),
(171,21,170,'2025-01-02 21:34:25',2,0.014262,0,'Action completed, no processing required'),
(172,22,0,'2025-01-02 21:48:25',0,0,0,'Run mode: GLPI'),
(173,22,172,'2025-01-02 21:48:25',2,0.0186591,0,'Action completed, no processing required'),
(174,20,0,'2025-01-02 22:10:39',0,0,0,'Run mode: GLPI'),
(175,20,174,'2025-01-02 22:10:39',2,0.0082202,0,'Action completed, no processing required'),
(176,24,0,'2025-01-02 22:21:00',0,0,0,'Run mode: GLPI'),
(177,24,176,'2025-01-02 22:21:00',2,0.016921,0,'Action completed, no processing required'),
(178,32,0,'2025-01-02 23:36:03',0,0,0,'Run mode: GLPI'),
(179,32,178,'2025-01-02 23:36:03',2,0.00968385,0,'Action completed, no processing required'),
(180,9,0,'2025-01-02 23:36:08',0,0,0,'Run mode: GLPI'),
(181,9,180,'2025-01-02 23:36:08',2,0.00983119,0,'Action completed, no processing required'),
(182,17,0,'2025-01-03 00:20:33',0,0,0,'Run mode: GLPI'),
(183,17,182,'2025-01-03 00:20:33',2,0.00622296,0,'Action completed, no processing required'),
(184,21,0,'2025-01-03 01:06:31',0,0,0,'Run mode: GLPI'),
(185,21,184,'2025-01-03 01:06:31',2,0.00696993,0,'Action completed, no processing required'),
(186,22,0,'2025-01-03 01:20:12',0,0,0,'Run mode: GLPI'),
(187,22,186,'2025-01-03 01:20:12',2,0.00612092,0,'Action completed, no processing required'),
(188,13,0,'2025-01-03 01:22:02',0,0,0,'Run mode: GLPI'),
(189,13,188,'2025-01-03 01:22:02',2,0.0141568,0,'Action completed, no processing required'),
(190,14,0,'2025-01-03 01:29:45',0,0,0,'Run mode: GLPI'),
(191,14,190,'2025-01-03 01:29:45',2,0.00605798,0,'Action completed, no processing required'),
(192,20,0,'2025-01-03 01:30:25',0,0,0,'Run mode: GLPI'),
(193,20,192,'2025-01-03 01:30:25',2,0.00619698,0,'Action completed, no processing required'),
(194,24,0,'2025-01-03 01:52:00',0,0,0,'Run mode: GLPI'),
(195,24,194,'2025-01-03 01:52:00',2,0.00510812,0,'Action completed, no processing required'),
(196,32,0,'2025-01-03 01:56:09',0,0,0,'Run mode: GLPI'),
(197,32,196,'2025-01-03 01:56:09',2,0.0160501,0,'Action completed, no processing required'),
(198,9,0,'2025-01-03 02:12:21',0,0,0,'Run mode: GLPI'),
(199,9,198,'2025-01-03 02:12:21',2,0.00660086,0,'Action completed, no processing required'),
(200,17,0,'2025-01-03 02:45:44',0,0,0,'Run mode: GLPI'),
(201,17,200,'2025-01-03 02:45:44',2,0.00644302,0,'Action completed, no processing required'),
(202,21,0,'2025-01-03 02:45:49',0,0,0,'Run mode: GLPI'),
(203,21,202,'2025-01-03 02:45:49',2,0.00842786,0,'Action completed, no processing required'),
(204,22,0,'2025-01-03 02:50:45',0,0,0,'Run mode: GLPI'),
(205,22,204,'2025-01-03 02:50:45',2,0.00467491,0,'Action completed, no processing required'),
(206,32,0,'2025-01-03 02:50:59',0,0,0,'Run mode: GLPI'),
(207,32,206,'2025-01-03 02:50:59',2,0.00829601,0,'Action completed, no processing required'),
(208,9,0,'2025-01-03 02:56:03',0,0,0,'Run mode: GLPI'),
(209,9,208,'2025-01-03 02:56:03',2,0.00703096,0,'Action completed, no processing required'),
(210,13,0,'2025-01-03 02:56:12',0,0,0,'Run mode: GLPI'),
(211,13,210,'2025-01-03 02:56:12',2,0.00701904,0,'Action completed, no processing required'),
(212,14,0,'2025-01-03 03:01:03',0,0,0,'Run mode: GLPI'),
(213,14,212,'2025-01-03 03:01:03',2,0.0197701,0,'Action completed, no processing required'),
(214,20,0,'2025-01-03 03:01:48',0,0,0,'Run mode: GLPI'),
(215,20,214,'2025-01-03 03:01:48',2,0.00825191,0,'Action completed, no processing required'),
(216,17,0,'2025-01-03 03:06:07',0,0,0,'Run mode: GLPI'),
(217,17,216,'2025-01-03 03:06:07',2,0.00953579,0,'Action completed, no processing required'),
(218,21,0,'2025-01-03 03:06:56',0,0,0,'Run mode: GLPI'),
(219,21,218,'2025-01-03 03:06:56',2,0.00675106,0,'Action completed, no processing required'),
(220,22,0,'2025-01-03 03:11:08',0,0,0,'Run mode: GLPI'),
(221,22,220,'2025-01-03 03:11:08',2,0.011508,0,'Action completed, no processing required'),
(222,24,0,'2025-01-03 03:12:09',0,0,0,'Run mode: GLPI'),
(223,24,222,'2025-01-03 03:12:09',2,0.0104921,0,'Action completed, no processing required'),
(224,32,0,'2025-01-03 03:14:38',0,0,0,'Run mode: GLPI'),
(225,32,224,'2025-01-03 03:14:38',2,0.00597596,0,'Action completed, no processing required'),
(226,9,0,'2025-01-03 03:16:26',0,0,0,'Run mode: GLPI'),
(227,9,226,'2025-01-03 03:16:26',2,0.00661492,0,'Action completed, no processing required'),
(228,17,0,'2025-01-03 03:17:36',0,0,0,'Run mode: GLPI'),
(229,17,228,'2025-01-03 03:17:36',2,0.00769997,0,'Action completed, no processing required'),
(230,21,0,'2025-01-03 03:21:27',0,0,0,'Run mode: GLPI'),
(231,21,230,'2025-01-03 03:21:27',2,0.00701904,0,'Action completed, no processing required'),
(232,22,0,'2025-01-03 03:21:28',0,0,0,'Run mode: GLPI'),
(233,22,232,'2025-01-03 03:21:28',2,0.00771117,0,'Action completed, no processing required'),
(234,32,0,'2025-01-03 03:22:05',0,0,0,'Run mode: GLPI'),
(235,32,234,'2025-01-03 03:22:05',2,0.00643682,0,'Action completed, no processing required'),
(236,17,0,'2025-01-03 03:22:50',0,0,0,'Run mode: GLPI'),
(237,17,236,'2025-01-03 03:22:50',2,0.00719714,0,'Action completed, no processing required'),
(238,22,0,'2025-01-03 03:26:45',0,0,0,'Run mode: GLPI'),
(239,22,238,'2025-01-03 03:26:45',2,0.010602,0,'Action completed, no processing required'),
(240,9,0,'2025-01-03 03:28:08',0,0,0,'Run mode: GLPI'),
(241,9,240,'2025-01-03 03:28:08',2,0.00858092,0,'Action completed, no processing required'),
(242,21,0,'2025-01-03 03:31:57',0,0,0,'Run mode: GLPI'),
(243,21,242,'2025-01-03 03:31:57',2,0.00898314,0,'Action completed, no processing required'),
(244,17,0,'2025-01-03 03:32:38',0,0,0,'Run mode: GLPI'),
(245,17,244,'2025-01-03 03:32:38',2,0.0055151,0,'Action completed, no processing required'),
(246,22,0,'2025-01-03 03:34:19',0,0,0,'Run mode: GLPI'),
(247,22,246,'2025-01-03 03:34:19',2,0.00860786,0,'Action completed, no processing required'),
(248,32,0,'2025-01-03 03:35:49',0,0,0,'Run mode: GLPI'),
(249,32,248,'2025-01-03 03:35:49',2,0.00679708,0,'Action completed, no processing required'),
(250,22,0,'2025-01-03 03:38:17',0,0,0,'Run mode: GLPI'),
(251,22,250,'2025-01-03 03:38:17',2,0.012305,0,'Action completed, no processing required'),
(252,21,0,'2025-01-03 03:47:36',0,0,0,'Run mode: GLPI'),
(253,21,252,'2025-01-03 03:47:36',2,0.00688601,0,'Action completed, no processing required'),
(254,17,0,'2025-01-03 03:47:40',0,0,0,'Run mode: GLPI'),
(255,17,254,'2025-01-03 03:47:40',2,0.00651407,0,'Action completed, no processing required'),
(256,9,0,'2025-01-03 04:05:36',0,0,0,'Run mode: GLPI'),
(257,9,256,'2025-01-03 04:05:36',2,0.00628185,0,'Action completed, no processing required'),
(258,22,0,'2025-01-03 04:11:06',0,0,0,'Run mode: GLPI'),
(259,22,258,'2025-01-03 04:11:06',2,0.00648594,0,'Action completed, no processing required'),
(260,32,0,'2025-01-03 04:15:15',0,0,0,'Run mode: GLPI'),
(261,32,260,'2025-01-03 04:15:15',2,0.00669098,0,'Action completed, no processing required'),
(262,17,0,'2025-01-03 04:16:14',0,0,0,'Run mode: GLPI'),
(263,17,262,'2025-01-03 04:16:14',2,0.00637293,0,'Action completed, no processing required'),
(264,21,0,'2025-01-03 04:21:15',0,0,0,'Run mode: GLPI'),
(265,21,264,'2025-01-03 04:21:15',2,0.00624895,0,'Action completed, no processing required'),
(266,13,0,'2025-01-03 04:21:27',0,0,0,'Run mode: GLPI'),
(267,13,266,'2025-01-03 04:21:27',2,0.00857592,0,'Action completed, no processing required'),
(268,14,0,'2025-01-03 04:23:29',0,0,0,'Run mode: GLPI'),
(269,14,268,'2025-01-03 04:23:29',2,0.00686002,0,'Action completed, no processing required'),
(270,20,0,'2025-01-03 04:24:03',0,0,0,'Run mode: GLPI'),
(271,20,270,'2025-01-03 04:24:03',2,0.00955892,0,'Action completed, no processing required'),
(272,22,0,'2025-01-03 16:15:49',0,0,0,'Run mode: GLPI'),
(273,22,272,'2025-01-03 16:15:49',2,0.010776,0,'Action completed, no processing required'),
(274,24,0,'2025-01-03 16:18:04',0,0,0,'Run mode: GLPI'),
(275,24,274,'2025-01-03 16:18:04',2,0.0177701,0,'Action completed, no processing required'),
(276,9,0,'2025-01-03 16:35:52',0,0,0,'Run mode: GLPI'),
(277,9,276,'2025-01-03 16:35:52',2,0.0365341,0,'Action completed, no processing required'),
(278,32,0,'2025-01-04 02:35:20',0,0,0,'Run mode: GLPI'),
(279,32,278,'2025-01-04 02:35:20',2,0.028439,0,'Action completed, no processing required'),
(280,17,0,'2025-01-04 02:41:21',0,0,0,'Run mode: GLPI'),
(281,17,280,'2025-01-04 02:41:21',2,0.00688696,0,'Action completed, no processing required'),
(282,21,0,'2025-01-04 02:41:49',0,0,0,'Run mode: GLPI'),
(283,21,282,'2025-01-04 02:41:49',2,0.00710297,0,'Action completed, no processing required'),
(284,13,0,'2025-01-04 02:42:03',0,0,0,'Run mode: GLPI'),
(285,13,284,'2025-01-04 02:42:03',2,0.00582004,0,'Action completed, no processing required'),
(286,14,0,'2025-01-05 02:42:04',0,0,0,'Run mode: GLPI'),
(287,14,286,'2025-01-05 02:42:04',2,0.0358539,0,'Action completed, no processing required'),
(288,20,0,'2025-01-06 21:03:21',0,0,0,'Run mode: GLPI'),
(289,20,288,'2025-01-06 21:03:21',2,0.036392,0,'Action completed, no processing required'),
(290,15,0,'2025-01-06 21:22:23',0,0,0,'Run mode: GLPI'),
(291,15,290,'2025-01-06 21:22:23',2,0.0084579,0,'Action completed, no processing required'),
(292,16,0,'2025-01-06 21:31:44',0,0,0,'Run mode: GLPI'),
(293,16,292,'2025-01-06 21:31:44',2,0.00946999,0,'Action completed, no processing required'),
(294,22,0,'2025-01-06 21:36:42',0,0,0,'Run mode: GLPI'),
(295,22,294,'2025-01-06 21:36:42',2,0.0145929,0,'Action completed, no processing required'),
(296,9,0,'2025-01-06 21:36:50',0,0,0,'Run mode: GLPI'),
(297,9,296,'2025-01-06 21:36:50',2,0.011008,0,'Action completed, no processing required'),
(298,24,0,'2025-01-06 21:44:37',0,0,0,'Run mode: GLPI'),
(299,24,298,'2025-01-06 21:44:37',2,0.010875,0,'Action completed, no processing required'),
(300,5,0,'2025-01-06 21:45:28',0,0,0,'Run mode: GLPI'),
(301,5,300,'2025-01-06 21:45:28',2,0.00750494,0,'Action completed, no processing required'),
(302,6,0,'2025-01-06 21:46:26',0,0,0,'Run mode: GLPI'),
(303,6,302,'2025-01-06 21:46:26',2,0.00671887,0,'Action completed, no processing required'),
(304,12,0,'2025-01-06 21:50:07',0,0,0,'Run mode: GLPI'),
(305,12,304,'2025-01-06 21:50:07',1,0.0272231,587,'Limpar 587 arquivos de sessão criados a mais de 1440 segundos\n'),
(306,12,304,'2025-01-06 21:50:07',2,0.039618,587,'Action completed, fully processed'),
(307,18,0,'2025-01-06 21:51:01',0,0,0,'Run mode: GLPI'),
(308,18,307,'2025-01-06 21:51:01',2,0.0101271,0,'Action completed, no processing required'),
(309,19,0,'2025-01-06 21:53:31',0,0,0,'Run mode: GLPI'),
(310,19,309,'2025-01-06 21:53:31',2,0.00613403,0,'Action completed, fully processed'),
(311,23,0,'2025-01-06 21:53:39',0,0,0,'Run mode: GLPI'),
(312,23,311,'2025-01-06 21:53:39',2,0.0102658,0,'Action completed, no processing required'),
(313,25,0,'2025-01-06 21:55:28',0,0,0,'Run mode: GLPI'),
(314,25,313,'2025-01-06 21:55:28',2,0.00567985,0,'Action completed, no processing required'),
(315,31,0,'2025-01-06 21:56:13',0,0,0,'Run mode: GLPI'),
(316,31,315,'2025-01-06 21:56:13',2,0.00595999,0,'Action completed, no processing required'),
(317,32,0,'2025-01-06 22:01:40',0,0,0,'Run mode: GLPI'),
(318,32,317,'2025-01-06 22:01:40',2,0.00914001,0,'Action completed, no processing required'),
(319,17,0,'2025-01-06 22:28:22',0,0,0,'Run mode: GLPI'),
(320,17,319,'2025-01-06 22:28:22',2,0.305872,0,'Action completed, no processing required'),
(321,21,0,'2025-01-06 22:28:31',0,0,0,'Run mode: GLPI'),
(322,21,321,'2025-01-06 22:28:31',2,0.646636,0,'Action completed, no processing required'),
(323,13,0,'2025-01-06 22:28:41',0,0,0,'Run mode: GLPI'),
(324,13,323,'2025-01-06 22:28:41',2,0.201742,0,'Action completed, no processing required'),
(325,14,0,'2025-01-06 22:44:41',0,0,0,'Run mode: GLPI'),
(326,14,325,'2025-01-06 22:44:41',2,0.0299029,0,'Action completed, no processing required'),
(327,22,0,'2025-01-06 22:50:17',0,0,0,'Run mode: GLPI'),
(328,22,327,'2025-01-06 22:50:17',2,0.0108452,0,'Action completed, no processing required'),
(329,9,0,'2025-01-06 22:50:29',0,0,0,'Run mode: GLPI'),
(330,9,329,'2025-01-06 22:50:29',2,0.029155,0,'Action completed, no processing required'),
(331,20,0,'2025-01-06 22:50:46',0,0,0,'Run mode: GLPI'),
(332,20,331,'2025-01-06 22:50:46',2,0.00963306,0,'Action completed, no processing required'),
(333,32,0,'2025-01-06 22:51:06',0,0,0,'Run mode: GLPI'),
(334,32,333,'2025-01-06 22:51:06',2,0.00692701,0,'Action completed, no processing required'),
(335,17,0,'2025-01-06 22:51:13',0,0,0,'Run mode: GLPI'),
(336,17,335,'2025-01-06 22:51:13',2,0.00638509,0,'Action completed, no processing required'),
(337,21,0,'2025-01-06 22:56:01',0,0,0,'Run mode: GLPI'),
(338,21,337,'2025-01-06 22:56:01',2,0.024509,0,'Action completed, no processing required'),
(339,24,0,'2025-01-06 22:56:01',0,0,0,'Run mode: GLPI'),
(340,24,339,'2025-01-06 22:56:01',2,0.0138419,0,'Action completed, no processing required'),
(341,22,0,'2025-01-06 22:56:09',0,0,0,'Run mode: GLPI'),
(342,22,341,'2025-01-06 22:56:09',2,0.0168281,0,'Action completed, no processing required'),
(343,17,0,'2025-01-06 23:02:39',0,0,0,'Run mode: GLPI'),
(344,17,343,'2025-01-06 23:02:39',2,0.00688601,0,'Action completed, no processing required'),
(345,32,0,'2025-01-06 23:08:02',0,0,0,'Run mode: GLPI'),
(346,32,345,'2025-01-06 23:08:02',2,0.00634599,0,'Action completed, no processing required'),
(347,22,0,'2025-01-06 23:08:02',0,0,0,'Run mode: GLPI'),
(348,22,347,'2025-01-06 23:08:02',2,0.013525,0,'Action completed, no processing required'),
(349,9,0,'2025-01-07 00:24:52',0,0,0,'Run mode: GLPI'),
(350,9,349,'2025-01-07 00:24:52',2,0.00829101,0,'Action completed, no processing required'),
(351,21,0,'2025-01-07 02:41:42',0,0,0,'Run mode: GLPI'),
(352,21,351,'2025-01-07 02:41:42',2,0.00588894,0,'Action completed, no processing required'),
(353,17,0,'2025-01-07 02:42:10',0,0,0,'Run mode: GLPI'),
(354,17,353,'2025-01-07 02:42:10',2,0.00571012,0,'Action completed, no processing required'),
(355,22,0,'2025-01-07 06:39:40',0,0,0,'Run mode: GLPI'),
(356,22,355,'2025-01-07 06:39:40',2,0.0337329,0,'Action completed, no processing required'),
(357,32,0,'2025-01-07 07:28:32',0,0,0,'Run mode: GLPI'),
(358,32,357,'2025-01-07 07:28:32',2,0.0141401,0,'Action completed, no processing required'),
(359,13,0,'2025-01-07 07:28:38',0,0,0,'Run mode: GLPI'),
(360,13,359,'2025-01-07 07:28:38',2,0.00971508,0,'Action completed, no processing required'),
(361,14,0,'2025-01-07 09:32:05',0,0,0,'Run mode: GLPI'),
(362,14,361,'2025-01-07 09:32:05',2,0.00765586,0,'Action completed, no processing required'),
(363,20,0,'2025-01-07 11:10:55',0,0,0,'Run mode: GLPI'),
(364,20,363,'2025-01-07 11:10:55',2,0.00888205,0,'Action completed, no processing required'),
(365,24,0,'2025-01-07 11:12:20',0,0,0,'Run mode: GLPI'),
(366,24,365,'2025-01-07 11:12:20',2,0.00730205,0,'Action completed, no processing required'),
(367,9,0,'2025-01-07 11:13:03',0,0,0,'Run mode: GLPI'),
(368,9,367,'2025-01-07 11:13:03',2,0.00756693,0,'Action completed, no processing required'),
(369,21,0,'2025-01-07 11:13:25',0,0,0,'Run mode: GLPI'),
(370,21,369,'2025-01-07 11:13:25',2,0.0135529,0,'Action completed, no processing required'),
(371,17,0,'2025-01-07 11:16:47',0,0,0,'Run mode: GLPI'),
(372,17,371,'2025-01-07 11:16:47',2,0.00582409,0,'Action completed, no processing required'),
(373,22,0,'2025-01-07 11:19:52',0,0,0,'Run mode: GLPI'),
(374,22,373,'2025-01-07 11:19:52',2,0.00588393,0,'Action completed, no processing required'),
(375,32,0,'2025-01-07 11:27:32',0,0,0,'Run mode: GLPI'),
(376,32,375,'2025-01-07 11:27:32',2,0.013025,0,'Action completed, no processing required'),
(377,13,0,'2025-01-07 11:32:39',0,0,0,'Run mode: GLPI'),
(378,13,377,'2025-01-07 11:32:39',2,0.00608993,0,'Action completed, no processing required'),
(379,15,0,'2025-01-07 13:29:55',0,0,0,'Run mode: GLPI'),
(380,15,379,'2025-01-07 13:29:55',2,0.0157211,0,'Action completed, no processing required'),
(381,16,0,'2025-01-07 13:36:54',0,0,0,'Run mode: GLPI'),
(382,16,381,'2025-01-07 13:36:54',2,0.006984,0,'Action completed, no processing required'),
(383,14,0,'2025-01-07 13:37:01',0,0,0,'Run mode: GLPI'),
(384,14,383,'2025-01-07 13:37:01',2,0.00722814,0,'Action completed, no processing required'),
(385,21,0,'2025-01-07 13:37:03',0,0,0,'Run mode: GLPI'),
(386,21,385,'2025-01-07 13:37:03',2,0.0235622,0,'Action completed, no processing required'),
(387,22,0,'2025-01-07 13:41:12',0,0,0,'Run mode: GLPI'),
(388,22,387,'2025-01-07 13:41:12',2,0.00731087,0,'Action completed, no processing required'),
(389,17,0,'2025-01-07 13:43:14',0,0,0,'Run mode: GLPI'),
(390,17,389,'2025-01-07 13:43:14',2,0.00686908,0,'Action completed, no processing required'),
(391,9,0,'2025-01-07 13:43:48',0,0,0,'Run mode: GLPI'),
(392,9,391,'2025-01-07 13:43:48',2,0.00725293,0,'Action completed, no processing required'),
(393,32,0,'2025-01-07 13:47:57',0,0,0,'Run mode: GLPI'),
(394,32,393,'2025-01-07 13:47:57',2,0.00548792,0,'Action completed, no processing required'),
(395,20,0,'2025-01-07 13:51:59',0,0,0,'Run mode: GLPI'),
(396,20,395,'2025-01-07 13:51:59',2,0.00800514,0,'Action completed, no processing required'),
(397,24,0,'2025-01-07 13:54:21',0,0,0,'Run mode: GLPI'),
(398,24,397,'2025-01-07 13:54:21',2,0.00540495,0,'Action completed, no processing required'),
(399,13,0,'2025-01-07 14:00:02',0,0,0,'Run mode: GLPI'),
(400,13,399,'2025-01-07 14:00:02',2,0.00928807,0,'Action completed, no processing required'),
(401,21,0,'2025-01-07 14:02:38',0,0,0,'Run mode: GLPI'),
(402,21,401,'2025-01-07 14:02:38',2,0.006006,0,'Action completed, no processing required'),
(403,22,0,'2025-01-07 14:04:23',0,0,0,'Run mode: GLPI'),
(404,22,403,'2025-01-07 14:04:23',2,0.00627804,0,'Action completed, no processing required'),
(405,17,0,'2025-01-07 14:04:52',0,0,0,'Run mode: GLPI'),
(406,17,405,'2025-01-07 14:04:52',2,0.00649619,0,'Action completed, no processing required'),
(407,32,0,'2025-01-07 14:05:40',0,0,0,'Run mode: GLPI'),
(408,32,407,'2025-01-07 14:05:40',2,0.00921893,0,'Action completed, no processing required'),
(409,9,0,'2025-01-07 14:06:01',0,0,0,'Run mode: GLPI'),
(410,9,409,'2025-01-07 14:06:01',2,0.0107999,0,'Action completed, no processing required'),
(411,22,0,'2025-01-07 14:06:22',0,0,0,'Run mode: GLPI'),
(412,22,411,'2025-01-07 14:06:22',2,0.0056951,0,'Action completed, no processing required'),
(413,21,0,'2025-01-07 14:07:23',0,0,0,'Run mode: GLPI'),
(414,21,413,'2025-01-07 14:07:23',2,0.00691605,0,'Action completed, no processing required'),
(415,22,0,'2025-01-07 14:07:35',0,0,0,'Run mode: GLPI'),
(416,22,415,'2025-01-07 14:07:35',2,0.00768495,0,'Action completed, no processing required'),
(417,22,0,'2025-01-07 14:08:26',0,0,0,'Run mode: GLPI'),
(418,22,417,'2025-01-07 14:08:26',2,0.00608015,0,'Action completed, no processing required'),
(419,17,0,'2025-01-07 14:13:17',0,0,0,'Run mode: GLPI'),
(420,17,419,'2025-01-07 14:13:17',2,0.00592518,0,'Action completed, no processing required'),
(421,22,0,'2025-01-07 14:19:34',0,0,0,'Run mode: GLPI'),
(422,22,421,'2025-01-07 14:19:34',2,0.011097,0,'Action completed, no processing required'),
(423,32,0,'2025-01-07 14:20:59',0,0,0,'Run mode: GLPI'),
(424,32,423,'2025-01-07 14:20:59',2,0.00594807,0,'Action completed, no processing required'),
(425,21,0,'2025-01-07 14:24:24',0,0,0,'Run mode: GLPI'),
(426,21,425,'2025-01-07 14:24:24',2,0.00709915,0,'Action completed, no processing required'),
(427,9,0,'2025-01-07 14:33:06',0,0,0,'Run mode: GLPI'),
(428,9,427,'2025-01-07 14:33:06',2,0.012522,0,'Action completed, no processing required'),
(429,17,0,'2025-01-07 15:02:52',0,0,0,'Run mode: GLPI'),
(430,17,429,'2025-01-07 15:02:52',2,0.0138159,0,'Action completed, no processing required'),
(431,22,0,'2025-01-07 15:02:55',0,0,0,'Run mode: GLPI'),
(432,22,431,'2025-01-07 15:02:55',2,0.0401359,0,'Action completed, no processing required'),
(433,32,0,'2025-01-07 15:13:33',0,0,0,'Run mode: GLPI'),
(434,32,433,'2025-01-07 15:13:33',2,0.00842905,0,'Action completed, no processing required'),
(435,21,0,'2025-01-07 15:13:41',0,0,0,'Run mode: GLPI'),
(436,21,435,'2025-01-07 15:13:41',2,0.00713706,0,'Action completed, no processing required'),
(437,14,0,'2025-01-07 15:23:22',0,0,0,'Run mode: GLPI'),
(438,14,437,'2025-01-07 15:23:22',2,0.00594187,0,'Action completed, no processing required'),
(439,9,0,'2025-01-07 15:25:04',0,0,0,'Run mode: GLPI'),
(440,9,439,'2025-01-07 15:25:04',2,0.0081811,0,'Action completed, no processing required'),
(441,20,0,'2025-01-07 15:27:43',0,0,0,'Run mode: GLPI'),
(442,20,441,'2025-01-07 15:27:43',2,0.0102119,0,'Action completed, no processing required'),
(443,24,0,'2025-01-07 16:00:46',0,0,0,'Run mode: GLPI'),
(444,24,443,'2025-01-07 16:00:46',2,0.00576019,0,'Action completed, no processing required'),
(445,13,0,'2025-01-07 16:28:25',0,0,0,'Run mode: GLPI'),
(446,13,445,'2025-01-07 16:28:25',2,0.0087409,0,'Action completed, no processing required'),
(447,22,0,'2025-01-07 17:20:37',0,0,0,'Run mode: GLPI'),
(448,22,447,'2025-01-07 17:20:37',2,0.00595379,0,'Action completed, no processing required'),
(449,17,0,'2025-01-07 18:03:10',0,0,0,'Run mode: GLPI'),
(450,17,449,'2025-01-07 18:03:10',2,0.00610495,0,'Action completed, no processing required'),
(451,21,0,'2025-01-07 18:32:53',0,0,0,'Run mode: GLPI'),
(452,21,451,'2025-01-07 18:32:53',2,0.00579786,0,'Action completed, no processing required'),
(453,32,0,'2025-01-07 18:57:24',0,0,0,'Run mode: GLPI'),
(454,32,453,'2025-01-07 18:57:24',2,0.00652909,0,'Action completed, no processing required'),
(455,9,0,'2025-01-07 21:02:40',0,0,0,'Run mode: GLPI'),
(456,9,455,'2025-01-07 21:02:40',2,0.00596023,0,'Action completed, no processing required'),
(457,14,0,'2025-01-07 22:09:16',0,0,0,'Run mode: GLPI'),
(458,14,457,'2025-01-07 22:09:16',2,0.00717402,0,'Action completed, no processing required'),
(459,20,0,'2025-01-08 00:49:23',0,0,0,'Run mode: GLPI'),
(460,20,459,'2025-01-08 00:49:23',2,0.019376,0,'Action completed, no processing required'),
(461,24,0,'2025-01-08 02:14:13',0,0,0,'Run mode: GLPI'),
(462,24,461,'2025-01-08 02:14:13',2,0.00608206,0,'Action completed, no processing required'),
(463,22,0,'2025-01-08 02:35:35',0,0,0,'Run mode: GLPI'),
(464,22,463,'2025-01-08 02:35:35',2,0.00595784,0,'Action completed, no processing required'),
(465,13,0,'2025-01-08 03:39:48',0,0,0,'Run mode: GLPI'),
(466,13,465,'2025-01-08 03:39:48',2,0.024888,0,'Action completed, no processing required'),
(467,17,0,'2025-01-08 03:41:36',0,0,0,'Run mode: GLPI'),
(468,17,467,'2025-01-08 03:41:36',2,0.00973201,0,'Action completed, no processing required'),
(469,21,0,'2025-01-08 03:42:02',0,0,0,'Run mode: GLPI'),
(470,21,469,'2025-01-08 03:42:02',2,0.0189669,0,'Action completed, no processing required'),
(471,32,0,'2025-01-08 04:42:20',0,0,0,'Run mode: GLPI'),
(472,32,471,'2025-01-08 04:42:20',2,0.00708699,0,'Action completed, no processing required'),
(473,9,0,'2025-01-08 06:30:46',0,0,0,'Run mode: GLPI'),
(474,9,473,'2025-01-08 06:30:46',2,0.0123501,0,'Action completed, no processing required'),
(475,5,0,'2025-01-08 07:46:41',0,0,0,'Run mode: GLPI'),
(476,5,475,'2025-01-08 07:46:41',2,0.00607204,0,'Action completed, no processing required'),
(477,6,0,'2025-01-08 09:35:40',0,0,0,'Run mode: GLPI'),
(478,6,477,'2025-01-08 09:35:40',2,0.00925303,0,'Action completed, no processing required'),
(479,12,0,'2025-01-08 12:18:36',0,0,0,'Run mode: GLPI'),
(480,12,479,'2025-01-08 12:18:36',1,0.157805,6236,'Limpar 6236 arquivos de sessão criados a mais de 1440 segundos\n'),
(481,12,479,'2025-01-08 12:18:36',2,0.163352,6236,'Action completed, fully processed'),
(482,18,0,'2025-01-08 12:19:59',0,0,0,'Run mode: GLPI'),
(483,18,482,'2025-01-08 12:19:59',2,0.010968,0,'Action completed, no processing required'),
(484,19,0,'2025-01-08 12:27:17',0,0,0,'Run mode: GLPI'),
(485,19,484,'2025-01-08 12:27:17',2,0.00597405,0,'Action completed, fully processed'),
(486,23,0,'2025-01-08 13:07:43',0,0,0,'Run mode: GLPI'),
(487,23,486,'2025-01-08 13:07:43',2,0.00727487,0,'Action completed, no processing required'),
(488,25,0,'2025-01-08 13:17:32',0,0,0,'Run mode: GLPI'),
(489,25,488,'2025-01-08 13:17:32',2,0.00892901,0,'Action completed, no processing required'),
(490,31,0,'2025-01-08 13:21:25',0,0,0,'Run mode: GLPI'),
(491,31,490,'2025-01-08 13:21:25',2,0.006392,0,'Action completed, no processing required'),
(492,14,0,'2025-01-08 13:26:44',0,0,0,'Run mode: GLPI'),
(493,14,492,'2025-01-08 13:26:44',2,0.00604916,0,'Action completed, no processing required'),
(494,15,0,'2025-01-08 13:34:51',0,0,0,'Run mode: GLPI'),
(495,15,494,'2025-01-08 13:34:51',2,0.0085659,0,'Action completed, no processing required'),
(496,16,0,'2025-01-08 13:36:33',0,0,0,'Run mode: GLPI'),
(497,16,496,'2025-01-08 13:36:33',2,0.0102098,0,'Action completed, no processing required'),
(498,20,0,'2025-01-08 13:42:02',0,0,0,'Run mode: GLPI'),
(499,20,498,'2025-01-08 13:42:02',2,0.0077641,0,'Action completed, no processing required'),
(500,22,0,'2025-01-08 13:47:06',0,0,0,'Run mode: GLPI'),
(501,22,500,'2025-01-08 13:47:06',2,0.013392,0,'Action completed, no processing required'),
(502,24,0,'2025-01-08 14:06:07',0,0,0,'Run mode: GLPI'),
(503,24,502,'2025-01-08 14:06:07',1,0.016566,1,'Limpar 1 arquivo temporário criado a mais de 3600 segundos\n'),
(504,24,502,'2025-01-08 14:06:07',2,0.024797,1,'Action completed, fully processed'),
(505,17,0,'2025-01-08 14:38:24',0,0,0,'Run mode: GLPI'),
(506,17,505,'2025-01-08 14:38:24',2,0.00603199,0,'Action completed, no processing required'),
(507,21,0,'2025-01-08 15:16:38',0,0,0,'Run mode: GLPI'),
(508,21,507,'2025-01-08 15:16:38',2,0.00665998,0,'Action completed, no processing required'),
(509,13,0,'2025-01-08 15:26:25',0,0,0,'Run mode: GLPI'),
(510,13,509,'2025-01-08 15:26:25',2,0.005795,0,'Action completed, no processing required'),
(511,32,0,'2025-01-08 16:34:17',0,0,0,'Run mode: GLPI'),
(512,32,511,'2025-01-08 16:34:17',2,0.00870299,0,'Action completed, no processing required'),
(513,9,0,'2025-01-08 18:17:29',0,0,0,'Run mode: GLPI'),
(514,9,513,'2025-01-08 18:17:29',2,0.0100291,0,'Action completed, no processing required'),
(515,22,0,'2025-01-08 20:07:40',0,0,0,'Run mode: GLPI'),
(516,22,515,'2025-01-08 20:07:40',2,0.0103149,0,'Action completed, no processing required'),
(517,14,0,'2025-01-08 20:14:42',0,0,0,'Run mode: GLPI'),
(518,14,517,'2025-01-08 20:14:42',2,0.00610709,0,'Action completed, no processing required'),
(519,20,0,'2025-01-08 20:28:09',0,0,0,'Run mode: GLPI'),
(520,20,519,'2025-01-08 20:28:09',2,0.0130498,0,'Action completed, no processing required'),
(521,17,0,'2025-01-08 20:42:11',0,0,0,'Run mode: GLPI'),
(522,17,521,'2025-01-08 20:42:11',2,0.00625491,0,'Action completed, no processing required'),
(523,24,0,'2025-01-08 23:41:25',0,0,0,'Run mode: GLPI'),
(524,24,523,'2025-01-08 23:41:25',1,0.00392604,2,'Limpar 2 arquivos temporários criados a mais de 3600 segundos\n'),
(525,24,523,'2025-01-08 23:41:25',2,0.0118289,2,'Action completed, fully processed'),
(526,21,0,'2025-01-09 04:15:46',0,0,0,'Run mode: GLPI'),
(527,21,526,'2025-01-09 04:15:46',2,0.0285399,0,'Action completed, no processing required'),
(528,13,0,'2025-01-09 08:54:03',0,0,0,'Run mode: GLPI'),
(529,13,528,'2025-01-09 08:54:03',2,0.00958514,0,'Action completed, no processing required'),
(530,32,0,'2025-01-09 10:04:19',0,0,0,'Run mode: GLPI'),
(531,32,530,'2025-01-09 10:04:19',2,0.0550742,0,'Action completed, no processing required'),
(532,9,0,'2025-01-09 10:05:18',0,0,0,'Run mode: GLPI'),
(533,9,532,'2025-01-09 10:05:18',2,0.493871,0,'Action completed, no processing required'),
(534,22,0,'2025-01-09 10:07:17',0,0,0,'Run mode: GLPI'),
(535,22,534,'2025-01-09 10:07:17',2,0.649804,0,'Action completed, no processing required'),
(536,17,0,'2025-01-09 11:52:34',0,0,0,'Run mode: GLPI'),
(537,17,536,'2025-01-09 11:52:34',2,0.90179,0,'Action completed, no processing required'),
(538,14,0,'2025-01-09 13:12:01',0,0,0,'Run mode: GLPI'),
(539,14,538,'2025-01-09 13:12:01',2,0.63188,0,'Action completed, no processing required'),
(540,20,0,'2025-01-09 17:50:16',0,0,0,'Run mode: GLPI'),
(541,20,540,'2025-01-09 17:50:16',2,0.0398681,0,'Action completed, no processing required'),
(542,24,0,'2025-01-09 17:50:39',0,0,0,'Run mode: GLPI'),
(543,24,542,'2025-01-09 17:50:39',2,0.007586,0,'Action completed, no processing required'),
(544,15,0,'2025-01-09 17:55:54',0,0,0,'Run mode: GLPI'),
(545,15,544,'2025-01-09 17:55:54',2,0.00815797,0,'Action completed, no processing required'),
(546,16,0,'2025-01-09 17:57:49',0,0,0,'Run mode: GLPI'),
(547,16,546,'2025-01-09 17:57:49',2,0.0066011,0,'Action completed, no processing required'),
(548,21,0,'2025-01-09 17:58:47',0,0,0,'Run mode: GLPI'),
(549,21,548,'2025-01-09 17:58:47',2,0.013505,0,'Action completed, no processing required'),
(550,5,0,'2025-01-09 18:01:32',0,0,0,'Run mode: GLPI'),
(551,5,550,'2025-01-09 18:01:32',2,0.00645494,0,'Action completed, no processing required'),
(552,6,0,'2025-01-09 18:08:58',0,0,0,'Run mode: GLPI'),
(553,6,552,'2025-01-09 18:08:58',2,0.00673604,0,'Action completed, no processing required'),
(554,13,0,'2025-01-09 18:10:54',0,0,0,'Run mode: GLPI'),
(555,13,554,'2025-01-09 18:10:54',2,0.00546598,0,'Action completed, no processing required'),
(556,22,0,'2025-01-09 18:26:47',0,0,0,'Run mode: GLPI'),
(557,22,556,'2025-01-09 18:26:47',2,0.00762701,0,'Action completed, no processing required'),
(558,32,0,'2025-01-09 19:23:35',0,0,0,'Run mode: GLPI'),
(559,32,558,'2025-01-09 19:23:35',2,0.00582409,0,'Action completed, no processing required'),
(560,9,0,'2025-01-09 19:38:06',0,0,0,'Run mode: GLPI'),
(561,9,560,'2025-01-09 19:38:06',2,0.018676,0,'Action completed, no processing required'),
(562,17,0,'2025-01-09 19:38:59',0,0,0,'Run mode: GLPI'),
(563,17,562,'2025-01-09 19:38:59',2,0.00694513,0,'Action completed, no processing required'),
(564,12,0,'2025-01-09 19:49:28',0,0,0,'Run mode: GLPI'),
(565,12,564,'2025-01-09 19:49:28',1,0.538661,19970,'Limpar 19970 arquivos de sessão criados a mais de 1440 segundos\n'),
(566,12,564,'2025-01-09 19:49:28',2,0.548691,19970,'Action completed, fully processed'),
(567,18,0,'2025-01-09 19:52:42',0,0,0,'Run mode: GLPI'),
(568,18,567,'2025-01-09 19:52:42',2,0.010355,0,'Action completed, no processing required'),
(569,19,0,'2025-01-09 19:58:26',0,0,0,'Run mode: GLPI'),
(570,19,569,'2025-01-09 19:58:26',2,0.00589204,0,'Action completed, fully processed'),
(571,23,0,'2025-01-09 22:50:40',0,0,0,'Run mode: GLPI'),
(572,23,571,'2025-01-09 22:50:40',2,0.00790405,0,'Action completed, no processing required'),
(573,25,0,'2025-01-09 23:32:41',0,0,0,'Run mode: GLPI'),
(574,25,573,'2025-01-09 23:32:41',2,0.0206642,0,'Action completed, no processing required'),
(575,31,0,'2025-01-09 23:58:14',0,0,0,'Run mode: GLPI'),
(576,31,575,'2025-01-09 23:58:14',2,0.012538,0,'Action completed, no processing required'),
(577,14,0,'2025-01-09 23:58:48',0,0,0,'Run mode: GLPI'),
(578,14,577,'2025-01-09 23:58:48',2,0.00663495,0,'Action completed, no processing required'),
(579,21,0,'2025-01-10 00:52:03',0,0,0,'Run mode: GLPI'),
(580,21,579,'2025-01-10 00:52:03',2,0.00879812,0,'Action completed, no processing required'),
(581,22,0,'2025-01-10 00:57:46',0,0,0,'Run mode: GLPI'),
(582,22,581,'2025-01-10 00:57:46',2,0.00508308,0,'Action completed, no processing required'),
(583,20,0,'2025-01-10 01:32:39',0,0,0,'Run mode: GLPI'),
(584,20,583,'2025-01-10 01:32:39',2,0.012697,0,'Action completed, no processing required'),
(585,24,0,'2025-01-10 01:33:40',0,0,0,'Run mode: GLPI'),
(586,24,585,'2025-01-10 01:33:40',1,0.00883293,2,'Limpar 2 arquivos temporários criados a mais de 3600 segundos\n'),
(587,24,585,'2025-01-10 01:33:40',2,0.0143089,2,'Action completed, fully processed'),
(588,13,0,'2025-01-10 01:42:59',0,0,0,'Run mode: GLPI'),
(589,13,588,'2025-01-10 01:42:59',2,0.0115039,0,'Action completed, no processing required'),
(590,32,0,'2025-01-10 10:01:13',0,0,0,'Run mode: GLPI'),
(591,32,590,'2025-01-10 10:01:13',2,0.029021,0,'Action completed, no processing required'),
(592,17,0,'2025-01-10 11:33:48',0,0,0,'Run mode: GLPI'),
(593,17,592,'2025-01-10 11:33:48',2,0.0169981,0,'Action completed, no processing required'),
(594,9,0,'2025-01-10 12:16:48',0,0,0,'Run mode: GLPI'),
(595,9,594,'2025-01-10 12:16:48',2,0.261888,0,'Action completed, no processing required'),
(596,21,0,'2025-01-10 12:41:15',0,0,0,'Run mode: GLPI'),
(597,21,596,'2025-01-10 12:41:15',2,0.0122299,0,'Action completed, no processing required'),
(598,14,0,'2025-01-10 16:40:12',0,0,0,'Run mode: GLPI'),
(599,14,598,'2025-01-10 16:40:12',2,0.01401,0,'Action completed, no processing required'),
(600,22,0,'2025-01-10 16:43:05',0,0,0,'Run mode: GLPI'),
(601,22,600,'2025-01-10 16:43:05',2,0.0103488,0,'Action completed, no processing required'),
(602,20,0,'2025-01-10 16:43:31',0,0,0,'Run mode: GLPI'),
(603,20,602,'2025-01-10 16:43:31',2,0.0180469,0,'Action completed, no processing required'),
(604,24,0,'2025-01-10 16:43:40',0,0,0,'Run mode: GLPI'),
(605,24,604,'2025-01-10 16:43:40',2,0.00542021,0,'Action completed, no processing required'),
(606,13,0,'2025-01-10 16:46:52',0,0,0,'Run mode: GLPI'),
(607,13,606,'2025-01-10 16:46:52',2,0.0100639,0,'Action completed, no processing required'),
(608,15,0,'2025-01-10 16:51:19',0,0,0,'Run mode: GLPI'),
(609,15,608,'2025-01-10 16:51:19',2,0.00745106,0,'Action completed, no processing required'),
(610,16,0,'2025-01-10 16:51:55',0,0,0,'Run mode: GLPI'),
(611,16,610,'2025-01-10 16:51:55',2,0.00632,0,'Action completed, no processing required'),
(612,32,0,'2025-01-10 16:51:57',0,0,0,'Run mode: GLPI'),
(613,32,612,'2025-01-10 16:51:57',2,0.00817585,0,'Action completed, no processing required'),
(614,17,0,'2025-01-10 16:52:00',0,0,0,'Run mode: GLPI'),
(615,17,614,'2025-01-10 16:52:00',2,0.005404,0,'Action completed, no processing required'),
(616,9,0,'2025-01-10 16:58:01',0,0,0,'Run mode: GLPI'),
(617,9,616,'2025-01-10 16:58:01',2,0.0104899,0,'Action completed, no processing required'),
(618,21,0,'2025-01-10 17:09:27',0,0,0,'Run mode: GLPI'),
(619,21,618,'2025-01-10 17:09:27',2,0.00625706,0,'Action completed, no processing required'),
(620,22,0,'2025-01-10 17:19:02',0,0,0,'Run mode: GLPI'),
(621,22,620,'2025-01-10 17:19:02',2,0.00543523,0,'Action completed, no processing required'),
(622,32,0,'2025-01-10 17:29:00',0,0,0,'Run mode: GLPI'),
(623,32,622,'2025-01-10 17:29:00',2,0.0178108,0,'Action completed, no processing required'),
(624,17,0,'2025-01-10 17:34:49',0,0,0,'Run mode: GLPI'),
(625,17,624,'2025-01-10 17:34:49',2,0.00702691,0,'Action completed, no processing required'),
(626,9,0,'2025-01-10 17:47:01',0,0,0,'Run mode: GLPI'),
(627,9,626,'2025-01-10 17:47:01',2,0.00588799,0,'Action completed, no processing required'),
(628,21,0,'2025-01-10 17:56:17',0,0,0,'Run mode: GLPI'),
(629,21,628,'2025-01-10 17:56:17',2,0.164128,0,'Action completed, no processing required'),
(630,22,0,'2025-01-10 17:56:22',0,0,0,'Run mode: GLPI'),
(631,22,630,'2025-01-10 17:56:22',2,0.00862503,0,'Action completed, no processing required'),
(632,32,0,'2025-01-10 18:25:48',0,0,0,'Run mode: GLPI'),
(633,32,632,'2025-01-10 18:25:48',2,0.014379,0,'Action completed, no processing required'),
(634,17,0,'2025-01-10 19:02:16',0,0,0,'Run mode: GLPI'),
(635,17,634,'2025-01-10 19:02:16',2,0.00594616,0,'Action completed, no processing required'),
(636,14,0,'2025-01-10 19:43:22',0,0,0,'Run mode: GLPI'),
(637,14,636,'2025-01-10 19:43:22',2,0.0159819,0,'Action completed, no processing required'),
(638,20,0,'2025-01-10 21:15:18',0,0,0,'Run mode: GLPI'),
(639,20,638,'2025-01-10 21:15:18',2,0.00721407,0,'Action completed, no processing required'),
(640,24,0,'2025-01-10 21:21:20',0,0,0,'Run mode: GLPI'),
(641,24,640,'2025-01-10 21:21:20',2,0.00651288,0,'Action completed, no processing required'),
(642,13,0,'2025-01-10 21:31:57',0,0,0,'Run mode: GLPI'),
(643,13,642,'2025-01-10 21:31:57',2,0.0668809,0,'Action completed, no processing required'),
(644,9,0,'2025-01-10 21:37:19',0,0,0,'Run mode: GLPI'),
(645,9,644,'2025-01-10 21:37:19',2,0.0128012,0,'Action completed, no processing required'),
(646,22,0,'2025-01-11 01:21:28',0,0,0,'Run mode: GLPI'),
(647,22,646,'2025-01-11 01:21:28',2,0.0262411,0,'Action completed, no processing required'),
(648,5,0,'2025-01-11 04:41:34',0,0,0,'Run mode: GLPI'),
(649,5,648,'2025-01-11 04:41:34',2,0.0421321,0,'Action completed, no processing required'),
(650,21,0,'2025-01-11 06:11:12',0,0,0,'Run mode: GLPI'),
(651,21,650,'2025-01-11 06:11:12',2,0.0203538,0,'Action completed, no processing required'),
(652,6,0,'2025-01-11 07:39:06',0,0,0,'Run mode: GLPI'),
(653,6,652,'2025-01-11 07:39:06',2,0.130697,0,'Action completed, no processing required'),
(654,32,0,'2025-01-12 05:39:21',0,0,0,'Run mode: GLPI'),
(655,32,654,'2025-01-12 05:39:21',2,0.0714979,0,'Action completed, no processing required'),
(656,17,0,'2025-01-12 06:12:28',0,0,0,'Run mode: GLPI'),
(657,17,656,'2025-01-12 06:12:28',2,0.018117,0,'Action completed, no processing required'),
(658,12,0,'2025-01-12 06:17:43',0,0,0,'Run mode: GLPI'),
(659,12,658,'2025-01-12 06:17:43',1,1.01612,26798,'Limpar 26798 arquivos de sessão criados a mais de 1440 segundos\n'),
(660,12,658,'2025-01-12 06:17:43',2,1.02103,26798,'Action completed, fully processed'),
(661,18,0,'2025-01-12 06:27:00',0,0,0,'Run mode: GLPI'),
(662,18,661,'2025-01-12 06:27:00',2,0.0339799,0,'Action completed, no processing required'),
(663,19,0,'2025-01-12 06:38:34',0,0,0,'Run mode: GLPI'),
(664,19,663,'2025-01-12 06:38:34',2,0.012161,0,'Action completed, fully processed'),
(665,14,0,'2025-01-12 06:45:22',0,0,0,'Run mode: GLPI'),
(666,14,665,'2025-01-12 06:45:22',2,0.0165992,0,'Action completed, no processing required'),
(667,9,0,'2025-01-12 07:17:56',0,0,0,'Run mode: GLPI'),
(668,9,667,'2025-01-12 07:17:56',2,0.019558,0,'Action completed, no processing required'),
(669,20,0,'2025-01-12 17:16:12',0,0,0,'Run mode: GLPI'),
(670,20,669,'2025-01-12 17:16:12',2,0.0644932,0,'Action completed, no processing required'),
(671,24,0,'2025-01-12 17:56:05',0,0,0,'Run mode: GLPI'),
(672,24,671,'2025-01-12 17:56:05',1,0.0691862,1,'Limpar 1 arquivo temporário criado a mais de 3600 segundos\n'),
(673,24,671,'2025-01-12 17:56:05',2,0.0748041,1,'Action completed, fully processed'),
(674,13,0,'2025-01-12 17:56:10',0,0,0,'Run mode: GLPI'),
(675,13,674,'2025-01-12 17:56:10',2,0.00659609,0,'Action completed, no processing required'),
(676,23,0,'2025-01-12 18:12:16',0,0,0,'Run mode: GLPI'),
(677,23,676,'2025-01-12 18:12:16',2,0.0064919,0,'Action completed, no processing required'),
(678,25,0,'2025-01-12 20:50:21',0,0,0,'Run mode: GLPI'),
(679,25,678,'2025-01-12 20:50:21',2,0.0326838,0,'Action completed, no processing required'),
(680,31,0,'2025-01-13 11:33:43',0,0,0,'Run mode: GLPI'),
(681,31,680,'2025-01-13 11:33:43',2,0.091733,0,'Action completed, no processing required'),
(682,22,0,'2025-01-13 11:34:28',0,0,0,'Run mode: GLPI'),
(683,22,682,'2025-01-13 11:34:28',2,0.023247,0,'Action completed, no processing required'),
(684,15,0,'2025-01-13 11:35:21',0,0,0,'Run mode: GLPI'),
(685,15,684,'2025-01-13 11:35:21',2,0.0187371,0,'Action completed, no processing required'),
(686,16,0,'2025-01-13 11:35:48',0,0,0,'Run mode: GLPI'),
(687,16,686,'2025-01-13 11:35:48',2,0.00710583,0,'Action completed, no processing required'),
(688,21,0,'2025-01-13 12:15:04',0,0,0,'Run mode: GLPI'),
(689,21,688,'2025-01-13 12:15:04',2,0.0196888,0,'Action completed, no processing required'),
(690,5,0,'2025-01-13 12:15:27',0,0,0,'Run mode: GLPI'),
(691,5,690,'2025-01-13 12:15:27',2,0.0082171,0,'Action completed, no processing required'),
(692,32,0,'2025-01-13 12:20:40',0,0,0,'Run mode: GLPI'),
(693,32,692,'2025-01-13 12:20:40',2,0.0101402,0,'Action completed, no processing required'),
(694,17,0,'2025-01-13 12:25:42',0,0,0,'Run mode: GLPI'),
(695,17,694,'2025-01-13 12:25:42',2,0.0136242,0,'Action completed, no processing required'),
(696,9,0,'2025-01-13 12:29:34',0,0,0,'Run mode: GLPI'),
(697,9,696,'2025-01-13 12:29:34',2,0.0198469,0,'Action completed, no processing required'),
(698,6,0,'2025-01-13 12:32:13',0,0,0,'Run mode: GLPI'),
(699,6,698,'2025-01-13 12:32:13',2,0.00929785,0,'Action completed, no processing required'),
(700,14,0,'2025-01-13 12:33:29',0,0,0,'Run mode: GLPI'),
(701,14,700,'2025-01-13 12:33:29',2,0.018645,0,'Action completed, no processing required'),
(702,20,0,'2025-01-13 12:37:36',0,0,0,'Run mode: GLPI'),
(703,20,702,'2025-01-13 12:37:36',2,0.010303,0,'Action completed, no processing required'),
(704,13,0,'2025-01-13 12:39:09',0,0,0,'Run mode: GLPI'),
(705,13,704,'2025-01-13 12:39:09',2,0.00673699,0,'Action completed, no processing required'),
(706,24,0,'2025-01-13 12:47:28',0,0,0,'Run mode: GLPI'),
(707,24,706,'2025-01-13 12:47:28',2,0.0101771,0,'Action completed, no processing required'),
(708,12,0,'2025-01-13 12:55:30',0,0,0,'Run mode: GLPI'),
(709,12,708,'2025-01-13 12:55:30',1,0.636238,21898,'Limpar 21898 arquivos de sessão criados a mais de 1440 segundos\n'),
(710,12,708,'2025-01-13 12:55:30',2,0.644527,21898,'Action completed, fully processed'),
(711,18,0,'2025-01-13 13:01:36',0,0,0,'Run mode: GLPI'),
(712,18,711,'2025-01-13 13:01:36',2,0.01055,0,'Action completed, no processing required'),
(713,19,0,'2025-01-13 13:15:55',0,0,0,'Run mode: GLPI'),
(714,19,713,'2025-01-13 13:15:55',2,0.00988889,0,'Action completed, fully processed'),
(715,22,0,'2025-01-13 13:29:36',0,0,0,'Run mode: GLPI'),
(716,22,715,'2025-01-13 13:29:36',2,0.017225,0,'Action completed, no processing required'),
(717,21,0,'2025-01-13 13:29:36',0,0,0,'Run mode: GLPI'),
(718,21,717,'2025-01-13 13:29:36',2,0.00693393,0,'Action completed, no processing required'),
(719,32,0,'2025-01-13 13:29:56',0,0,0,'Run mode: GLPI'),
(720,32,719,'2025-01-13 13:29:56',2,0.00679898,0,'Action completed, no processing required'),
(721,17,0,'2025-01-13 13:40:06',0,0,0,'Run mode: GLPI'),
(722,17,721,'2025-01-13 13:40:06',2,0.013973,0,'Action completed, no processing required'),
(723,9,0,'2025-01-13 13:41:42',0,0,0,'Run mode: GLPI'),
(724,9,723,'2025-01-13 13:41:42',2,0.0071702,0,'Action completed, no processing required'),
(725,22,0,'2025-01-13 14:12:48',0,0,0,'Run mode: GLPI'),
(726,22,725,'2025-01-13 14:12:48',2,0.0125852,0,'Action completed, no processing required'),
(727,14,0,'2025-01-13 14:44:51',0,0,0,'Run mode: GLPI'),
(728,14,727,'2025-01-13 14:44:51',2,0.0140429,0,'Action completed, no processing required'),
(729,21,0,'2025-01-13 15:02:16',0,0,0,'Run mode: GLPI'),
(730,21,729,'2025-01-13 15:02:16',2,0.0187712,0,'Action completed, no processing required'),
(731,32,0,'2025-01-13 15:02:43',0,0,0,'Run mode: GLPI'),
(732,32,731,'2025-01-13 15:02:43',2,0.0118139,0,'Action completed, no processing required'),
(733,20,0,'2025-01-13 15:24:51',0,0,0,'Run mode: GLPI'),
(734,20,733,'2025-01-13 15:24:51',2,0.0146079,0,'Action completed, no processing required'),
(735,13,0,'2025-01-13 15:25:44',0,0,0,'Run mode: GLPI'),
(736,13,735,'2025-01-13 15:25:44',2,0.00902915,0,'Action completed, no processing required'),
(737,17,0,'2025-01-13 18:09:08',0,0,0,'Run mode: GLPI'),
(738,17,737,'2025-01-13 18:09:08',2,0.021534,0,'Action completed, no processing required'),
(739,24,0,'2025-01-13 20:37:16',0,0,0,'Run mode: GLPI'),
(740,24,739,'2025-01-13 20:37:16',1,0.00856185,1,'Limpar 1 arquivo temporário criado a mais de 3600 segundos\n'),
(741,24,739,'2025-01-13 20:37:16',2,0.0144339,1,'Action completed, fully processed'),
(742,9,0,'2025-01-13 21:28:15',0,0,0,'Run mode: GLPI'),
(743,9,742,'2025-01-13 21:28:15',2,0.0176251,0,'Action completed, no processing required'),
(744,22,0,'2025-01-13 21:35:43',0,0,0,'Run mode: GLPI'),
(745,22,744,'2025-01-13 21:35:43',2,0.00900602,0,'Action completed, no processing required'),
(746,21,0,'2025-01-13 22:25:56',0,0,0,'Run mode: GLPI'),
(747,21,746,'2025-01-13 22:25:56',2,0.03267,0,'Action completed, no processing required'),
(748,32,0,'2025-01-13 22:26:33',0,0,0,'Run mode: GLPI'),
(749,32,748,'2025-01-13 22:26:33',2,0.0098381,0,'Action completed, no processing required'),
(750,14,0,'2025-01-13 22:36:04',0,0,0,'Run mode: GLPI'),
(751,14,750,'2025-01-13 22:36:04',2,0.0251169,0,'Action completed, no processing required'),
(752,20,0,'2025-01-13 22:36:09',0,0,0,'Run mode: GLPI'),
(753,20,752,'2025-01-13 22:36:09',2,0.0188169,0,'Action completed, no processing required'),
(754,13,0,'2025-01-13 22:43:39',0,0,0,'Run mode: GLPI'),
(755,13,754,'2025-01-13 22:43:39',2,0.029032,0,'Action completed, no processing required'),
(756,23,0,'2025-01-13 22:43:49',0,0,0,'Run mode: GLPI'),
(757,23,756,'2025-01-13 22:43:49',2,0.00860691,0,'Action completed, no processing required'),
(758,17,0,'2025-01-13 22:43:57',0,0,0,'Run mode: GLPI'),
(759,17,758,'2025-01-13 22:43:57',2,0.01107,0,'Action completed, no processing required'),
(760,25,0,'2025-01-13 22:44:30',0,0,0,'Run mode: GLPI'),
(761,25,760,'2025-01-13 22:44:30',2,0.00657296,0,'Action completed, no processing required'),
(762,22,0,'2025-01-13 22:47:18',0,0,0,'Run mode: GLPI'),
(763,22,762,'2025-01-13 22:47:18',2,0.0247869,0,'Action completed, no processing required'),
(764,24,0,'2025-01-13 23:21:41',0,0,0,'Run mode: GLPI'),
(765,24,764,'2025-01-13 23:21:41',2,0.012325,0,'Action completed, no processing required'),
(766,9,0,'2025-01-13 23:21:49',0,0,0,'Run mode: GLPI'),
(767,9,766,'2025-01-13 23:21:49',2,0.00819182,0,'Action completed, no processing required'),
(768,21,0,'2025-01-13 23:23:39',0,0,0,'Run mode: GLPI'),
(769,21,768,'2025-01-13 23:23:39',2,0.0206089,0,'Action completed, no processing required'),
(770,32,0,'2025-01-13 23:26:35',0,0,0,'Run mode: GLPI'),
(771,32,770,'2025-01-13 23:26:35',2,0.0240421,0,'Action completed, no processing required'),
(772,17,0,'2025-01-13 23:26:37',0,0,0,'Run mode: GLPI'),
(773,17,772,'2025-01-13 23:26:37',2,0.0121062,0,'Action completed, no processing required'),
(774,22,0,'2025-01-13 23:26:40',0,0,0,'Run mode: GLPI'),
(775,22,774,'2025-01-13 23:26:40',2,0.016875,0,'Action completed, no processing required'),
(776,22,0,'2025-01-13 23:29:54',0,0,0,'Run mode: GLPI'),
(777,22,776,'2025-01-13 23:29:54',2,0.0208371,0,'Action completed, no processing required'),
(778,21,0,'2025-01-13 23:30:32',0,0,0,'Run mode: GLPI'),
(779,21,778,'2025-01-13 23:30:32',2,0.00754786,0,'Action completed, no processing required'),
(780,22,0,'2025-01-13 23:41:07',0,0,0,'Run mode: GLPI'),
(781,22,780,'2025-01-13 23:41:07',2,0.060442,0,'Action completed, no processing required'),
(782,9,0,'2025-01-13 23:41:19',0,0,0,'Run mode: GLPI'),
(783,9,782,'2025-01-13 23:41:19',2,0.029331,0,'Action completed, no processing required'),
(784,17,0,'2025-01-13 23:41:24',0,0,0,'Run mode: GLPI'),
(785,17,784,'2025-01-13 23:41:24',2,0.00668406,0,'Action completed, no processing required'),
(786,32,0,'2025-01-13 23:41:30',0,0,0,'Run mode: GLPI'),
(787,32,786,'2025-01-13 23:41:30',2,0.0110941,0,'Action completed, no processing required'),
(788,15,0,'2025-01-13 23:45:15',0,0,0,'Run mode: GLPI'),
(789,15,788,'2025-01-13 23:45:15',2,0.0247829,0,'Action completed, no processing required'),
(790,16,0,'2025-01-13 23:45:19',0,0,0,'Run mode: GLPI'),
(791,16,790,'2025-01-13 23:45:19',2,0.0102749,0,'Action completed, no processing required'),
(792,21,0,'2025-01-13 23:45:21',0,0,0,'Run mode: GLPI'),
(793,21,792,'2025-01-13 23:45:21',2,0.01475,0,'Action completed, no processing required'),
(794,14,0,'2025-01-13 23:46:01',0,0,0,'Run mode: GLPI'),
(795,14,794,'2025-01-13 23:46:01',2,0.00852799,0,'Action completed, no processing required'),
(796,20,0,'2025-01-13 23:46:56',0,0,0,'Run mode: GLPI'),
(797,20,796,'2025-01-13 23:46:56',2,0.0110331,0,'Action completed, no processing required'),
(798,22,0,'2025-01-13 23:58:43',0,0,0,'Run mode: GLPI'),
(799,22,798,'2025-01-13 23:58:43',2,0.0610552,0,'Action completed, no processing required'),
(800,13,0,'2025-01-14 02:32:10',0,0,0,'Run mode: GLPI'),
(801,13,800,'2025-01-14 02:32:10',2,0.013639,0,'Action completed, no processing required'),
(802,17,0,'2025-01-14 02:58:36',0,0,0,'Run mode: GLPI'),
(803,17,802,'2025-01-14 02:58:36',2,0.0102389,0,'Action completed, no processing required'),
(804,32,0,'2025-01-14 03:00:13',0,0,0,'Run mode: GLPI'),
(805,32,804,'2025-01-14 03:00:13',2,0.0146,0,'Action completed, no processing required'),
(806,21,0,'2025-01-14 08:04:23',0,0,0,'Run mode: GLPI'),
(807,21,806,'2025-01-14 08:04:23',2,0.0589609,0,'Action completed, no processing required'),
(808,9,0,'2025-01-14 10:56:11',0,0,0,'Run mode: GLPI'),
(809,9,808,'2025-01-14 10:56:11',2,0.0298789,0,'Action completed, no processing required'),
(810,22,0,'2025-01-14 10:56:12',0,0,0,'Run mode: GLPI'),
(811,22,810,'2025-01-14 10:56:12',2,0.026159,0,'Action completed, no processing required'),
(812,24,0,'2025-01-14 10:56:12',0,0,0,'Run mode: GLPI'),
(813,24,812,'2025-01-14 10:56:12',2,0.0189331,0,'Action completed, no processing required'),
(814,14,0,'2025-01-14 10:56:13',0,0,0,'Run mode: GLPI'),
(815,14,814,'2025-01-14 10:56:13',2,0.017287,0,'Action completed, no processing required'),
(816,20,0,'2025-01-14 12:48:37',0,0,0,'Run mode: GLPI'),
(817,20,816,'2025-01-14 12:48:37',2,0.03157,0,'Action completed, no processing required'),
(818,17,0,'2025-01-14 13:32:16',0,0,0,'Run mode: GLPI'),
(819,17,818,'2025-01-14 13:32:16',2,0.0221162,0,'Action completed, no processing required'),
(820,32,0,'2025-01-14 14:07:03',0,0,0,'Run mode: GLPI'),
(821,32,820,'2025-01-14 14:07:03',2,0.015435,0,'Action completed, no processing required'),
(822,13,0,'2025-01-14 14:18:23',0,0,0,'Run mode: GLPI'),
(823,13,822,'2025-01-14 14:18:23',2,0.00799298,0,'Action completed, no processing required'),
(824,21,0,'2025-01-14 14:31:19',0,0,0,'Run mode: GLPI'),
(825,21,824,'2025-01-14 14:31:19',2,0.016741,0,'Action completed, no processing required'),
(826,22,0,'2025-01-14 15:30:28',0,0,0,'Run mode: GLPI'),
(827,22,826,'2025-01-14 15:30:28',2,0.0103619,0,'Action completed, no processing required'),
(828,9,0,'2025-01-14 15:30:48',0,0,0,'Run mode: GLPI'),
(829,9,828,'2025-01-14 15:30:48',2,0.00716496,0,'Action completed, no processing required'),
(830,31,0,'2025-01-14 15:37:35',0,0,0,'Run mode: GLPI'),
(831,31,830,'2025-01-14 15:37:35',2,0.00738311,0,'Action completed, no processing required'),
(832,15,0,'2025-01-14 15:55:07',0,0,0,'Run mode: GLPI'),
(833,15,832,'2025-01-14 15:55:07',2,0.017925,0,'Action completed, no processing required'),
(834,16,0,'2025-01-14 15:55:31',0,0,0,'Run mode: GLPI'),
(835,16,834,'2025-01-14 15:55:31',2,0.010684,0,'Action completed, no processing required'),
(836,14,0,'2025-01-14 15:57:04',0,0,0,'Run mode: GLPI'),
(837,14,836,'2025-01-14 15:57:04',2,0.0080719,0,'Action completed, no processing required'),
(838,24,0,'2025-01-14 15:57:59',0,0,0,'Run mode: GLPI'),
(839,24,838,'2025-01-14 15:57:59',2,0.00511098,0,'Action completed, no processing required'),
(840,5,0,'2025-01-14 15:59:01',0,0,0,'Run mode: GLPI'),
(841,5,840,'2025-01-14 15:59:01',2,0.00736403,0,'Action completed, no processing required'),
(842,6,0,'2025-01-14 15:59:02',0,0,0,'Run mode: GLPI'),
(843,6,842,'2025-01-14 15:59:02',2,0.0095048,0,'Action completed, no processing required'),
(844,12,0,'2025-01-14 15:59:05',0,0,0,'Run mode: GLPI'),
(845,12,844,'2025-01-14 15:59:05',1,0.521176,19275,'Limpar 19275 arquivos de sessão criados a mais de 1440 segundos\n'),
(846,12,844,'2025-01-14 15:59:05',2,0.526333,19275,'Action completed, fully processed'),
(847,18,0,'2025-01-14 15:59:11',0,0,0,'Run mode: GLPI'),
(848,18,847,'2025-01-14 15:59:11',2,0.0145252,0,'Action completed, no processing required'),
(849,19,0,'2025-01-14 15:59:14',0,0,0,'Run mode: GLPI'),
(850,19,849,'2025-01-14 15:59:14',2,0.00895405,0,'Action completed, fully processed'),
(851,17,0,'2025-01-14 16:01:41',0,0,0,'Run mode: GLPI'),
(852,17,851,'2025-01-14 16:01:41',2,0.0106862,0,'Action completed, no processing required'),
(853,20,0,'2025-01-14 16:04:55',0,0,0,'Run mode: GLPI'),
(854,20,853,'2025-01-14 16:04:55',2,0.00833797,0,'Action completed, no processing required'),
(855,32,0,'2025-01-14 16:06:54',0,0,0,'Run mode: GLPI'),
(856,32,855,'2025-01-14 16:06:54',2,0.00872493,0,'Action completed, no processing required'),
(857,21,0,'2025-01-14 16:12:04',0,0,0,'Run mode: GLPI'),
(858,21,857,'2025-01-14 16:12:04',2,0.00806594,0,'Action completed, no processing required'),
(859,13,0,'2025-01-14 16:37:53',0,0,0,'Run mode: GLPI'),
(860,13,859,'2025-01-14 16:37:53',2,0.00652194,0,'Action completed, no processing required'),
(861,22,0,'2025-01-14 16:50:11',0,0,0,'Run mode: GLPI'),
(862,22,861,'2025-01-14 16:50:11',2,0.00609899,0,'Action completed, no processing required'),
(863,9,0,'2025-01-14 16:51:06',0,0,0,'Run mode: GLPI'),
(864,9,863,'2025-01-14 16:51:06',2,0.00617909,0,'Action completed, no processing required'),
(865,17,0,'2025-01-14 17:00:32',0,0,0,'Run mode: GLPI'),
(866,17,865,'2025-01-14 17:00:32',2,0.012203,0,'Action completed, no processing required'),
(867,32,0,'2025-01-14 17:26:12',0,0,0,'Run mode: GLPI'),
(868,32,867,'2025-01-14 17:26:12',2,0.0071249,0,'Action completed, no processing required'),
(869,21,0,'2025-01-14 18:20:06',0,0,0,'Run mode: GLPI'),
(870,21,869,'2025-01-14 18:20:06',2,0.010324,0,'Action completed, no processing required'),
(871,22,0,'2025-01-14 18:24:27',0,0,0,'Run mode: GLPI'),
(872,22,871,'2025-01-14 18:24:27',2,0.0074501,0,'Action completed, no processing required'),
(873,14,0,'2025-01-14 18:53:33',0,0,0,'Run mode: GLPI'),
(874,14,873,'2025-01-14 18:53:33',2,0.00751591,0,'Action completed, no processing required'),
(875,24,0,'2025-01-14 19:10:03',0,0,0,'Run mode: GLPI'),
(876,24,875,'2025-01-14 19:10:03',2,0.0103788,0,'Action completed, no processing required'),
(877,9,0,'2025-01-14 19:10:11',0,0,0,'Run mode: GLPI'),
(878,9,877,'2025-01-14 19:10:11',2,0.010637,0,'Action completed, no processing required'),
(879,20,0,'2025-01-14 19:38:00',0,0,0,'Run mode: GLPI'),
(880,20,879,'2025-01-14 19:38:00',2,0.00855184,0,'Action completed, no processing required'),
(881,17,0,'2025-01-14 19:53:21',0,0,0,'Run mode: GLPI'),
(882,17,881,'2025-01-14 19:53:21',2,0.00629687,0,'Action completed, no processing required'),
(883,32,0,'2025-01-14 19:54:24',0,0,0,'Run mode: GLPI'),
(884,32,883,'2025-01-14 19:54:24',2,0.0103951,0,'Action completed, no processing required'),
(885,13,0,'2025-01-14 20:01:17',0,0,0,'Run mode: GLPI'),
(886,13,885,'2025-01-14 20:01:17',2,0.0111709,0,'Action completed, no processing required'),
(887,21,0,'2025-01-14 20:07:09',0,0,0,'Run mode: GLPI'),
(888,21,887,'2025-01-14 20:07:09',2,0.00592804,0,'Action completed, no processing required'),
(889,22,0,'2025-01-14 20:08:03',0,0,0,'Run mode: GLPI'),
(890,22,889,'2025-01-14 20:08:03',2,0.00837922,0,'Action completed, no processing required'),
(891,9,0,'2025-01-14 20:20:07',0,0,0,'Run mode: GLPI'),
(892,9,891,'2025-01-14 20:20:07',2,0.0137062,0,'Action completed, no processing required'),
(893,14,0,'2025-01-14 20:41:37',0,0,0,'Run mode: GLPI'),
(894,14,893,'2025-01-14 20:41:37',2,0.0183661,0,'Action completed, no processing required'),
(895,17,0,'2025-01-14 20:47:31',0,0,0,'Run mode: GLPI'),
(896,17,895,'2025-01-14 20:47:31',2,0.00911784,0,'Action completed, no processing required'),
(897,32,0,'2025-01-14 20:52:40',0,0,0,'Run mode: GLPI'),
(898,32,897,'2025-01-14 20:52:40',2,0.0108452,0,'Action completed, no processing required'),
(899,22,0,'2025-01-14 20:52:59',0,0,0,'Run mode: GLPI'),
(900,22,899,'2025-01-14 20:52:59',2,0.00709915,0,'Action completed, no processing required'),
(901,24,0,'2025-01-14 20:57:42',0,0,0,'Run mode: GLPI'),
(902,24,901,'2025-01-14 20:57:42',2,0.00994706,0,'Action completed, no processing required'),
(903,21,0,'2025-01-14 21:02:54',0,0,0,'Run mode: GLPI'),
(904,21,903,'2025-01-14 21:02:54',2,0.0132329,0,'Action completed, no processing required'),
(905,9,0,'2025-01-14 21:16:13',0,0,0,'Run mode: GLPI'),
(906,9,905,'2025-01-14 21:16:13',2,0.00813985,0,'Action completed, no processing required'),
(907,20,0,'2025-01-14 21:23:45',0,0,0,'Run mode: GLPI'),
(908,20,907,'2025-01-14 21:23:45',2,0.00646091,0,'Action completed, no processing required'),
(909,17,0,'2025-01-14 21:25:59',0,0,0,'Run mode: GLPI'),
(910,17,909,'2025-01-14 21:25:59',2,0.00989485,0,'Action completed, no processing required'),
(911,22,0,'2025-01-14 21:26:03',0,0,0,'Run mode: GLPI'),
(912,22,911,'2025-01-14 21:26:03',2,0.00827885,0,'Action completed, no processing required'),
(913,32,0,'2025-01-14 21:30:08',0,0,0,'Run mode: GLPI'),
(914,32,913,'2025-01-14 21:30:08',2,0.00616598,0,'Action completed, no processing required'),
(915,13,0,'2025-01-14 21:30:23',0,0,0,'Run mode: GLPI'),
(916,13,915,'2025-01-14 21:30:23',2,0.0168419,0,'Action completed, no processing required'),
(917,21,0,'2025-01-14 21:30:41',0,0,0,'Run mode: GLPI'),
(918,21,917,'2025-01-14 21:30:41',2,0.00647521,0,'Action completed, no processing required'),
(919,9,0,'2025-01-14 21:31:40',0,0,0,'Run mode: GLPI'),
(920,9,919,'2025-01-14 21:31:40',2,0.00773692,0,'Action completed, no processing required'),
(921,22,0,'2025-01-14 21:36:58',0,0,0,'Run mode: GLPI'),
(922,22,921,'2025-01-14 21:36:58',2,0.00833201,0,'Action completed, no processing required'),
(923,17,0,'2025-01-14 21:41:11',0,0,0,'Run mode: GLPI'),
(924,17,923,'2025-01-14 21:41:11',2,0.013526,0,'Action completed, no processing required'),
(925,21,0,'2025-01-14 21:42:38',0,0,0,'Run mode: GLPI'),
(926,21,925,'2025-01-14 21:42:38',2,0.0111392,0,'Action completed, no processing required'),
(927,32,0,'2025-01-14 21:47:44',0,0,0,'Run mode: GLPI'),
(928,32,927,'2025-01-14 21:47:44',2,0.00800014,0,'Action completed, no processing required'),
(929,22,0,'2025-01-14 21:49:26',0,0,0,'Run mode: GLPI'),
(930,22,929,'2025-01-14 21:49:26',2,0.0210781,0,'Action completed, no processing required'),
(931,9,0,'2025-01-14 21:54:14',0,0,0,'Run mode: GLPI'),
(932,9,931,'2025-01-14 21:54:14',2,0.00845408,0,'Action completed, no processing required'),
(933,14,0,'2025-01-14 22:00:34',0,0,0,'Run mode: GLPI'),
(934,14,933,'2025-01-14 22:00:34',2,0.00913405,0,'Action completed, no processing required'),
(935,17,0,'2025-01-15 00:38:30',0,0,0,'Run mode: GLPI'),
(936,17,935,'2025-01-15 00:38:30',2,0.0386078,0,'Action completed, no processing required'),
(937,21,0,'2025-01-15 01:24:19',0,0,0,'Run mode: GLPI'),
(938,21,937,'2025-01-15 01:24:19',2,0.0223899,0,'Action completed, no processing required'),
(939,22,0,'2025-01-15 11:35:54',0,0,0,'Run mode: GLPI'),
(940,22,939,'2025-01-15 11:35:54',2,0.152431,0,'Action completed, fully processed'),
(941,32,0,'2025-01-15 11:43:42',0,0,0,'Run mode: GLPI'),
(942,32,941,'2025-01-15 11:43:42',2,0.012063,0,'Action completed, no processing required'),
(943,24,0,'2025-01-15 11:56:55',0,0,0,'Run mode: GLPI'),
(944,24,943,'2025-01-15 11:56:55',2,0.005759,0,'Action completed, no processing required'),
(945,9,0,'2025-01-15 12:03:17',0,0,0,'Run mode: GLPI'),
(946,9,945,'2025-01-15 12:03:17',2,0.0206568,0,'Action completed, no processing required'),
(947,20,0,'2025-01-15 12:08:02',0,0,0,'Run mode: GLPI'),
(948,20,947,'2025-01-15 12:08:02',2,0.0129511,0,'Action completed, no processing required'),
(949,13,0,'2025-01-15 12:40:46',0,0,0,'Run mode: GLPI'),
(950,13,949,'2025-01-15 12:40:46',2,0.00944901,0,'Action completed, no processing required'),
(951,23,0,'2025-01-15 13:00:36',0,0,0,'Run mode: GLPI'),
(952,23,951,'2025-01-15 13:00:36',2,0.00727606,0,'Action completed, no processing required'),
(953,25,0,'2025-01-15 13:00:59',0,0,0,'Run mode: GLPI'),
(954,25,953,'2025-01-15 13:00:59',2,0.00608182,0,'Action completed, no processing required'),
(955,14,0,'2025-01-15 14:12:16',0,0,0,'Run mode: GLPI'),
(956,14,955,'2025-01-15 14:12:16',2,0.0107019,0,'Action completed, no processing required'),
(957,17,0,'2025-01-15 15:09:17',0,0,0,'Run mode: GLPI'),
(958,17,957,'2025-01-15 15:09:17',2,0.0172429,0,'Action completed, no processing required'),
(959,21,0,'2025-01-15 15:24:19',0,0,0,'Run mode: GLPI'),
(960,21,959,'2025-01-15 15:24:19',2,0.0233731,0,'Action completed, no processing required'),
(961,15,0,'2025-01-15 15:40:31',0,0,0,'Run mode: GLPI'),
(962,15,961,'2025-01-15 15:40:31',2,0.00982094,0,'Action completed, no processing required'),
(963,16,0,'2025-01-15 16:28:32',0,0,0,'Run mode: GLPI'),
(964,16,963,'2025-01-15 16:28:32',2,0.014878,0,'Action completed, no processing required'),
(965,22,0,'2025-01-15 19:00:24',0,0,0,'Run mode: GLPI'),
(966,22,965,'2025-01-15 19:00:24',2,0.16832,0,'Action completed, fully processed'),
(967,32,0,'2025-01-15 20:07:51',0,0,0,'Run mode: GLPI'),
(968,32,967,'2025-01-15 20:07:51',2,0.0121579,0,'Action completed, no processing required'),
(969,9,0,'2025-01-15 23:52:35',0,0,0,'Run mode: GLPI'),
(970,9,969,'2025-01-15 23:52:35',2,0.019438,0,'Action completed, no processing required'),
(971,24,0,'2025-01-15 23:59:12',0,0,0,'Run mode: GLPI'),
(972,24,971,'2025-01-15 23:59:12',2,0.00759602,0,'Action completed, no processing required'),
(973,20,0,'2025-01-16 00:07:14',0,0,0,'Run mode: GLPI'),
(974,20,973,'2025-01-16 00:07:14',2,0.035244,0,'Action completed, no processing required'),
(975,13,0,'2025-01-16 00:09:41',0,0,0,'Run mode: GLPI'),
(976,13,975,'2025-01-16 00:09:41',2,0.00654006,0,'Action completed, no processing required'),
(977,14,0,'2025-01-16 00:14:42',0,0,0,'Run mode: GLPI'),
(978,14,977,'2025-01-16 00:14:42',2,0.00897598,0,'Action completed, no processing required'),
(979,17,0,'2025-01-16 00:16:16',0,0,0,'Run mode: GLPI'),
(980,17,979,'2025-01-16 00:16:16',2,0.0120029,0,'Action completed, no processing required'),
(981,21,0,'2025-01-16 00:19:58',0,0,0,'Run mode: GLPI'),
(982,21,981,'2025-01-16 00:19:58',2,0.0144,0,'Action completed, no processing required'),
(983,31,0,'2025-01-16 00:22:53',0,0,0,'Run mode: GLPI'),
(984,31,983,'2025-01-16 00:22:53',2,0.00629711,0,'Action completed, no processing required'),
(985,5,0,'2025-01-16 00:25:24',0,0,0,'Run mode: GLPI'),
(986,5,985,'2025-01-16 00:25:24',2,0.008219,0,'Action completed, no processing required'),
(987,6,0,'2025-01-16 00:30:10',0,0,0,'Run mode: GLPI'),
(988,6,987,'2025-01-16 00:30:10',2,0.00911403,0,'Action completed, no processing required'),
(989,12,0,'2025-01-16 00:30:26',0,0,0,'Run mode: GLPI'),
(990,12,989,'2025-01-16 00:30:26',1,0.725035,23570,'Limpar 23570 arquivos de sessão criados a mais de 1440 segundos\n'),
(991,12,989,'2025-01-16 00:30:26',2,0.731576,23570,'Action completed, fully processed'),
(992,18,0,'2025-01-16 00:35:29',0,0,0,'Run mode: GLPI'),
(993,18,992,'2025-01-16 00:35:29',2,0.00993299,0,'Action completed, no processing required'),
(994,19,0,'2025-01-16 00:43:01',0,0,0,'Run mode: GLPI'),
(995,19,994,'2025-01-16 00:43:01',2,0.00787187,0,'Action completed, fully processed'),
(996,22,0,'2025-01-16 00:50:54',0,0,0,'Run mode: GLPI'),
(997,22,996,'2025-01-16 00:50:54',2,0.129522,0,'Action completed, fully processed'),
(998,32,0,'2025-01-16 00:53:19',0,0,0,'Run mode: GLPI'),
(999,32,998,'2025-01-16 00:53:19',2,0.00702906,0,'Action completed, no processing required'),
(1000,9,0,'2025-01-16 00:58:07',0,0,0,'Run mode: GLPI'),
(1001,9,1000,'2025-01-16 00:58:07',2,0.00844908,0,'Action completed, no processing required'),
(1002,17,0,'2025-01-16 00:58:31',0,0,0,'Run mode: GLPI'),
(1003,17,1002,'2025-01-16 00:58:31',2,0.00675082,0,'Action completed, no processing required'),
(1004,21,0,'2025-01-16 01:05:01',0,0,0,'Run mode: GLPI'),
(1005,21,1004,'2025-01-16 01:05:01',2,0.00826597,0,'Action completed, no processing required'),
(1006,22,0,'2025-01-16 01:06:29',0,0,0,'Run mode: GLPI'),
(1007,22,1006,'2025-01-16 01:06:29',2,0.144372,0,'Action completed, fully processed'),
(1008,32,0,'2025-01-16 01:10:43',0,0,0,'Run mode: GLPI'),
(1009,32,1008,'2025-01-16 01:10:43',2,0.00704908,0,'Action completed, no processing required'),
(1010,24,0,'2025-01-16 01:14:49',0,0,0,'Run mode: GLPI'),
(1011,24,1010,'2025-01-16 01:14:49',2,0.00676799,0,'Action completed, no processing required'),
(1012,17,0,'2025-01-16 01:15:44',0,0,0,'Run mode: GLPI'),
(1013,17,1012,'2025-01-16 01:15:44',2,0.0142,0,'Action completed, no processing required'),
(1014,20,0,'2025-01-16 01:21:16',0,0,0,'Run mode: GLPI'),
(1015,20,1014,'2025-01-16 01:21:16',2,0.00645494,0,'Action completed, no processing required'),
(1016,22,0,'2025-01-16 01:22:21',0,0,0,'Run mode: GLPI'),
(1017,22,1016,'2025-01-16 01:22:21',2,0.17556,0,'Action completed, fully processed'),
(1018,9,0,'2025-01-16 01:26:21',0,0,0,'Run mode: GLPI'),
(1019,9,1018,'2025-01-16 01:26:21',2,0.00786304,0,'Action completed, no processing required'),
(1020,13,0,'2025-01-16 01:28:10',0,0,0,'Run mode: GLPI'),
(1021,13,1020,'2025-01-16 01:28:10',2,0.00638199,0,'Action completed, no processing required'),
(1022,21,0,'2025-01-16 01:38:04',0,0,0,'Run mode: GLPI'),
(1023,21,1022,'2025-01-16 01:38:04',2,0.0139539,0,'Action completed, no processing required'),
(1024,14,0,'2025-01-16 01:43:26',0,0,0,'Run mode: GLPI'),
(1025,14,1024,'2025-01-16 01:43:26',2,0.00702906,0,'Action completed, no processing required'),
(1026,32,0,'2025-01-16 01:48:54',0,0,0,'Run mode: GLPI'),
(1027,32,1026,'2025-01-16 01:48:54',2,0.00590587,0,'Action completed, no processing required'),
(1028,17,0,'2025-01-16 01:51:18',0,0,0,'Run mode: GLPI'),
(1029,17,1028,'2025-01-16 01:51:18',2,0.0107989,0,'Action completed, no processing required'),
(1030,22,0,'2025-01-16 01:51:29',0,0,0,'Run mode: GLPI'),
(1031,22,1030,'2025-01-16 01:51:29',2,0.223912,0,'Action completed, fully processed'),
(1032,9,0,'2025-01-16 01:53:55',0,0,0,'Run mode: GLPI'),
(1033,9,1032,'2025-01-16 01:53:55',2,0.00984693,0,'Action completed, no processing required'),
(1034,21,0,'2025-01-16 01:56:39',0,0,0,'Run mode: GLPI'),
(1035,21,1034,'2025-01-16 01:56:39',2,0.0103121,0,'Action completed, no processing required'),
(1036,22,0,'2025-01-16 01:56:41',0,0,0,'Run mode: GLPI'),
(1037,22,1036,'2025-01-16 01:56:41',2,0.186432,0,'Action completed, fully processed'),
(1038,32,0,'2025-01-16 01:56:49',0,0,0,'Run mode: GLPI'),
(1039,32,1038,'2025-01-16 01:56:49',2,0.00671101,0,'Action completed, no processing required'),
(1040,17,0,'2025-01-16 01:59:01',0,0,0,'Run mode: GLPI'),
(1041,17,1040,'2025-01-16 01:59:01',2,0.006531,0,'Action completed, no processing required'),
(1042,22,0,'2025-01-16 02:04:06',0,0,0,'Run mode: GLPI'),
(1043,22,1042,'2025-01-16 02:04:06',2,0.333456,0,'Action completed, fully processed'),
(1044,21,0,'2025-01-16 02:06:08',0,0,0,'Run mode: GLPI'),
(1045,21,1044,'2025-01-16 02:06:08',2,0.0103319,0,'Action completed, no processing required'),
(1046,32,0,'2025-01-16 02:07:12',0,0,0,'Run mode: GLPI'),
(1047,32,1046,'2025-01-16 02:07:12',2,0.00713897,0,'Action completed, no processing required'),
(1048,9,0,'2025-01-16 02:09:21',0,0,0,'Run mode: GLPI'),
(1049,9,1048,'2025-01-16 02:09:21',2,0.00784302,0,'Action completed, no processing required'),
(1050,17,0,'2025-01-16 02:13:50',0,0,0,'Run mode: GLPI'),
(1051,17,1050,'2025-01-16 02:13:50',2,0.0104022,0,'Action completed, no processing required'),
(1052,22,0,'2025-01-16 02:15:32',0,0,0,'Run mode: GLPI'),
(1053,22,1052,'2025-01-16 02:15:32',2,0.221475,0,'Action completed, fully processed'),
(1054,21,0,'2025-01-16 02:20:22',0,0,0,'Run mode: GLPI'),
(1055,21,1054,'2025-01-16 02:20:22',2,0.0105488,0,'Action completed, no processing required'),
(1056,32,0,'2025-01-16 02:20:44',0,0,0,'Run mode: GLPI'),
(1057,32,1056,'2025-01-16 02:20:44',2,0.00971818,0,'Action completed, no processing required'),
(1058,24,0,'2025-01-16 02:21:21',0,0,0,'Run mode: GLPI'),
(1059,24,1058,'2025-01-16 02:21:21',1,0.00490689,2,'Limpar 2 arquivos temporários criados a mais de 3600 segundos\n'),
(1060,24,1058,'2025-01-16 02:21:21',2,0.00935507,2,'Action completed, fully processed'),
(1061,22,0,'2025-01-16 02:39:41',0,0,0,'Run mode: GLPI'),
(1062,22,1061,'2025-01-16 02:39:41',2,2.29045,0,'Action completed, fully processed'),
(1063,17,0,'2025-01-16 02:40:58',0,0,0,'Run mode: GLPI'),
(1064,17,1063,'2025-01-16 02:40:58',2,0.009866,0,'Action completed, no processing required'),
(1065,9,0,'2025-01-16 02:49:06',0,0,0,'Run mode: GLPI'),
(1066,9,1065,'2025-01-16 02:49:06',2,0.011055,0,'Action completed, no processing required'),
(1067,20,0,'2025-01-16 02:51:26',0,0,0,'Run mode: GLPI'),
(1068,20,1067,'2025-01-16 02:51:26',2,0.023072,0,'Action completed, no processing required'),
(1069,21,0,'2025-01-16 02:57:09',0,0,0,'Run mode: GLPI'),
(1070,21,1069,'2025-01-16 02:57:09',2,0.015218,0,'Action completed, no processing required'),
(1071,32,0,'2025-01-16 02:57:13',0,0,0,'Run mode: GLPI'),
(1072,32,1071,'2025-01-16 02:57:13',2,0.0109141,0,'Action completed, no processing required'),
(1073,13,0,'2025-01-16 02:57:26',0,0,0,'Run mode: GLPI'),
(1074,13,1073,'2025-01-16 02:57:26',2,0.00797796,0,'Action completed, no processing required'),
(1075,22,0,'2025-01-16 03:03:00',0,0,0,'Run mode: GLPI'),
(1076,22,1075,'2025-01-16 03:03:00',2,0.212279,0,'Action completed, fully processed'),
(1077,14,0,'2025-01-16 03:05:01',0,0,0,'Run mode: GLPI'),
(1078,14,1077,'2025-01-16 03:05:01',2,0.00611496,0,'Action completed, no processing required'),
(1079,17,0,'2025-01-16 03:05:57',0,0,0,'Run mode: GLPI'),
(1080,17,1079,'2025-01-16 03:05:57',2,0.00527501,0,'Action completed, no processing required'),
(1081,9,0,'2025-01-16 03:09:03',0,0,0,'Run mode: GLPI'),
(1082,9,1081,'2025-01-16 03:09:03',2,0.00893402,0,'Action completed, no processing required'),
(1083,21,0,'2025-01-16 03:09:39',0,0,0,'Run mode: GLPI'),
(1084,21,1083,'2025-01-16 03:09:39',2,0.00627804,0,'Action completed, no processing required'),
(1085,32,0,'2025-01-16 03:10:00',0,0,0,'Run mode: GLPI'),
(1086,32,1085,'2025-01-16 03:10:00',2,0.014107,0,'Action completed, no processing required'),
(1087,22,0,'2025-01-16 06:33:33',0,0,0,'Run mode: GLPI'),
(1088,22,1087,'2025-01-16 06:33:33',2,0.387447,0,'Action completed, fully processed'),
(1089,17,0,'2025-01-16 10:56:00',0,0,0,'Run mode: GLPI'),
(1090,17,1089,'2025-01-16 10:56:00',2,0.036351,0,'Action completed, no processing required'),
(1091,21,0,'2025-01-16 12:15:21',0,0,0,'Run mode: GLPI'),
(1092,21,1091,'2025-01-16 12:15:21',2,0.0119779,0,'Action completed, no processing required'),
(1093,32,0,'2025-01-16 12:45:50',0,0,0,'Run mode: GLPI'),
(1094,32,1093,'2025-01-16 12:45:50',2,0.0119078,0,'Action completed, no processing required'),
(1095,9,0,'2025-01-16 12:53:41',0,0,0,'Run mode: GLPI'),
(1096,9,1095,'2025-01-16 12:53:41',2,0.011791,0,'Action completed, no processing required'),
(1097,24,0,'2025-01-16 13:08:15',0,0,0,'Run mode: GLPI'),
(1098,24,1097,'2025-01-16 13:08:15',2,0.012754,0,'Action completed, no processing required'),
(1099,15,0,'2025-01-16 13:14:21',0,0,0,'Run mode: GLPI'),
(1100,15,1099,'2025-01-16 13:14:21',2,0.012924,0,'Action completed, no processing required'),
(1101,20,0,'2025-01-16 13:21:49',0,0,0,'Run mode: GLPI'),
(1102,20,1101,'2025-01-16 13:21:49',2,0.0118248,0,'Action completed, no processing required'),
(1103,13,0,'2025-01-16 15:29:41',0,0,0,'Run mode: GLPI'),
(1104,13,1103,'2025-01-16 15:29:41',2,0.010005,0,'Action completed, no processing required'),
(1105,14,0,'2025-01-16 15:50:10',0,0,0,'Run mode: GLPI'),
(1106,14,1105,'2025-01-16 15:50:10',2,0.0144711,0,'Action completed, no processing required'),
(1107,16,0,'2025-01-16 19:42:53',0,0,0,'Run mode: GLPI'),
(1108,16,1107,'2025-01-16 19:42:53',2,0.0283639,0,'Action completed, no processing required'),
(1109,22,0,'2025-01-16 19:53:03',0,0,0,'Run mode: GLPI'),
(1110,22,1109,'2025-01-16 19:53:03',2,0.248118,0,'Action completed, fully processed'),
(1111,17,0,'2025-01-16 22:12:27',0,0,0,'Run mode: GLPI'),
(1112,17,1111,'2025-01-16 22:12:27',2,0.0301158,0,'Action completed, no processing required'),
(1113,21,0,'2025-01-17 05:54:51',0,0,0,'Run mode: GLPI'),
(1114,21,1113,'2025-01-17 05:54:51',2,0.069607,0,'Action completed, no processing required'),
(1115,32,0,'2025-01-17 12:01:54',0,0,0,'Run mode: GLPI'),
(1116,32,1115,'2025-01-17 12:01:54',2,0.030813,0,'Action completed, no processing required'),
(1117,23,0,'2025-01-17 12:15:50',0,0,0,'Run mode: GLPI'),
(1118,23,1117,'2025-01-17 12:15:50',2,0.0229099,0,'Action completed, no processing required'),
(1119,25,0,'2025-01-17 12:19:26',0,0,0,'Run mode: GLPI'),
(1120,25,1119,'2025-01-17 12:19:26',2,0.00756216,0,'Action completed, no processing required'),
(1121,9,0,'2025-01-17 12:25:11',0,0,0,'Run mode: GLPI'),
(1122,9,1121,'2025-01-17 12:25:11',2,0.011328,0,'Action completed, no processing required'),
(1123,24,0,'2025-01-17 12:35:57',0,0,0,'Run mode: GLPI'),
(1124,24,1123,'2025-01-17 12:35:57',1,0.00634789,1,'Limpar 1 arquivo temporário criado a mais de 3600 segundos\n'),
(1125,24,1123,'2025-01-17 12:35:57',2,0.012522,1,'Action completed, fully processed'),
(1126,20,0,'2025-01-17 12:37:01',0,0,0,'Run mode: GLPI'),
(1127,20,1126,'2025-01-17 12:37:01',2,0.00954604,0,'Action completed, no processing required'),
(1128,13,0,'2025-01-17 12:56:58',0,0,0,'Run mode: GLPI'),
(1129,13,1128,'2025-01-17 12:56:58',2,0.006984,0,'Action completed, no processing required'),
(1130,14,0,'2025-01-17 13:56:24',0,0,0,'Run mode: GLPI'),
(1131,14,1130,'2025-01-17 13:56:24',2,0.01212,0,'Action completed, no processing required'),
(1132,22,0,'2025-01-17 14:40:39',0,0,0,'Run mode: GLPI'),
(1133,22,1132,'2025-01-17 14:40:39',2,0.197853,0,'Action completed, fully processed'),
(1134,17,0,'2025-01-17 14:43:06',0,0,0,'Run mode: GLPI'),
(1135,17,1134,'2025-01-17 14:43:06',2,0.00933814,0,'Action completed, no processing required'),
(1136,31,0,'2025-01-17 14:43:33',0,0,0,'Run mode: GLPI'),
(1137,31,1136,'2025-01-17 14:43:33',2,0.00790906,0,'Action completed, no processing required'),
(1138,5,0,'2025-01-17 14:51:46',0,0,0,'Run mode: GLPI'),
(1139,5,1138,'2025-01-17 14:51:46',2,0.0114779,0,'Action completed, no processing required'),
(1140,6,0,'2025-01-17 14:54:33',0,0,0,'Run mode: GLPI'),
(1141,6,1140,'2025-01-17 14:54:33',2,0.00987816,0,'Action completed, no processing required'),
(1142,12,0,'2025-01-17 15:15:28',0,0,0,'Run mode: GLPI'),
(1143,12,1142,'2025-01-17 15:15:28',1,0.784733,28021,'Limpar 28021 arquivos de sessão criados a mais de 1440 segundos\n'),
(1144,12,1142,'2025-01-17 15:15:28',2,0.791238,28021,'Action completed, fully processed'),
(1145,18,0,'2025-01-17 15:24:21',0,0,0,'Run mode: GLPI'),
(1146,18,1145,'2025-01-17 15:24:21',2,0.0175681,0,'Action completed, no processing required'),
(1147,19,0,'2025-01-17 17:20:28',0,0,0,'Run mode: GLPI'),
(1148,19,1147,'2025-01-17 17:20:28',2,0.00934482,0,'Action completed, fully processed'),
(1149,15,0,'2025-01-17 17:57:44',0,0,0,'Run mode: GLPI'),
(1150,15,1149,'2025-01-17 17:57:44',2,0.0141029,0,'Action completed, no processing required'),
(1151,21,0,'2025-01-17 17:58:51',0,0,0,'Run mode: GLPI'),
(1152,21,1151,'2025-01-17 17:58:51',2,0.062737,0,'Action completed, no processing required'),
(1153,16,0,'2025-01-17 17:59:20',0,0,0,'Run mode: GLPI'),
(1154,16,1153,'2025-01-17 17:59:20',2,0.00831819,0,'Action completed, no processing required'),
(1155,32,0,'2025-01-17 18:47:59',0,0,0,'Run mode: GLPI'),
(1156,32,1155,'2025-01-17 18:47:59',2,0.00799394,0,'Action completed, no processing required'),
(1157,9,0,'2025-01-17 19:31:03',0,0,0,'Run mode: GLPI'),
(1158,9,1157,'2025-01-17 19:31:03',2,0.0125029,0,'Action completed, no processing required'),
(1159,24,0,'2025-01-17 19:39:32',0,0,0,'Run mode: GLPI'),
(1160,24,1159,'2025-01-17 19:39:32',1,0.00586891,1,'Limpar 1 arquivo temporário criado a mais de 3600 segundos\n'),
(1161,24,1159,'2025-01-17 19:39:32',2,0.013155,1,'Action completed, fully processed'),
(1162,20,0,'2025-01-18 01:57:31',0,0,0,'Run mode: GLPI'),
(1163,20,1162,'2025-01-18 01:57:31',2,0.0296922,0,'Action completed, no processing required'),
(1164,13,0,'2025-01-18 02:43:00',0,0,0,'Run mode: GLPI'),
(1165,13,1164,'2025-01-18 02:43:00',2,0.0113881,0,'Action completed, no processing required'),
(1166,22,0,'2025-01-18 03:01:36',0,0,0,'Run mode: GLPI'),
(1167,22,1166,'2025-01-18 03:01:36',2,0.447004,0,'Action completed, fully processed'),
(1168,17,0,'2025-01-18 03:38:37',0,0,0,'Run mode: GLPI'),
(1169,17,1168,'2025-01-18 03:38:37',2,0.0111749,0,'Action completed, no processing required'),
(1170,14,0,'2025-01-18 03:43:30',0,0,0,'Run mode: GLPI'),
(1171,14,1170,'2025-01-18 03:43:30',2,0.00753617,0,'Action completed, no processing required'),
(1172,21,0,'2025-01-18 03:43:37',0,0,0,'Run mode: GLPI'),
(1173,21,1172,'2025-01-18 03:43:37',2,0.02194,0,'Action completed, no processing required'),
(1174,32,0,'2025-01-18 03:43:38',0,0,0,'Run mode: GLPI'),
(1175,32,1174,'2025-01-18 03:43:38',2,0.0140369,0,'Action completed, no processing required'),
(1176,9,0,'2025-01-18 03:43:39',0,0,0,'Run mode: GLPI'),
(1177,9,1176,'2025-01-18 03:43:39',2,0.0117831,0,'Action completed, no processing required'),
(1178,24,0,'2025-01-18 03:44:25',0,0,0,'Run mode: GLPI'),
(1179,24,1178,'2025-01-18 03:44:25',2,0.00849414,0,'Action completed, no processing required'),
(1180,20,0,'2025-01-18 03:44:27',0,0,0,'Run mode: GLPI'),
(1181,20,1180,'2025-01-18 03:44:27',2,0.00935793,0,'Action completed, no processing required'),
(1182,22,0,'2025-01-18 03:44:42',0,0,0,'Run mode: GLPI'),
(1183,22,1182,'2025-01-18 03:44:42',2,0.241505,0,'Action completed, fully processed'),
(1184,13,0,'2025-01-18 03:44:55',0,0,0,'Run mode: GLPI'),
(1185,13,1184,'2025-01-18 03:44:55',2,0.0111148,0,'Action completed, no processing required'),
(1186,17,0,'2025-01-18 03:49:21',0,0,0,'Run mode: GLPI'),
(1187,17,1186,'2025-01-18 03:49:21',2,0.00848913,0,'Action completed, no processing required'),
(1188,22,0,'2025-01-18 04:45:05',0,0,0,'Run mode: GLPI'),
(1189,22,1188,'2025-01-18 04:45:05',2,0.373112,0,'Action completed, fully processed'),
(1190,21,0,'2025-01-18 04:45:27',0,0,0,'Run mode: GLPI'),
(1191,21,1190,'2025-01-18 04:45:27',2,0.00951481,0,'Action completed, no processing required'),
(1192,32,0,'2025-01-18 04:45:32',0,0,0,'Run mode: GLPI'),
(1193,32,1192,'2025-01-18 04:45:32',2,0.0126851,0,'Action completed, no processing required'),
(1194,9,0,'2025-01-18 04:48:01',0,0,0,'Run mode: GLPI'),
(1195,9,1194,'2025-01-18 04:48:01',2,0.0417399,0,'Action completed, no processing required'),
(1196,17,0,'2025-01-18 04:48:05',0,0,0,'Run mode: GLPI'),
(1197,17,1196,'2025-01-18 04:48:05',2,0.0130141,0,'Action completed, no processing required'),
(1198,14,0,'2025-01-18 04:48:57',0,0,0,'Run mode: GLPI'),
(1199,14,1198,'2025-01-18 04:48:57',2,0.00879884,0,'Action completed, no processing required'),
(1200,13,0,'2025-01-18 06:19:05',0,0,0,'Run mode: GLPI'),
(1201,13,1200,'2025-01-18 06:19:05',2,0.018048,0,'Action completed, no processing required'),
(1202,20,0,'2025-01-18 06:19:12',0,0,0,'Run mode: GLPI'),
(1203,20,1202,'2025-01-18 06:19:12',2,0.018811,0,'Action completed, no processing required'),
(1204,24,0,'2025-01-18 23:15:18',0,0,0,'Run mode: GLPI'),
(1205,24,1204,'2025-01-18 23:15:18',2,0.0815532,0,'Action completed, no processing required'),
(1206,22,0,'2025-01-19 01:13:10',0,0,0,'Run mode: GLPI'),
(1207,22,1206,'2025-01-19 01:13:10',2,0.401283,0,'Action completed, fully processed'),
(1208,21,0,'2025-01-19 04:48:15',0,0,0,'Run mode: GLPI'),
(1209,21,1208,'2025-01-19 04:48:15',2,0.0982449,0,'Action completed, no processing required'),
(1210,32,0,'2025-01-19 04:54:41',0,0,0,'Run mode: GLPI'),
(1211,32,1210,'2025-01-19 04:54:41',2,0.00714302,0,'Action completed, no processing required'),
(1212,17,0,'2025-01-19 04:59:12',0,0,0,'Run mode: GLPI'),
(1213,17,1212,'2025-01-19 04:59:12',2,0.0115178,0,'Action completed, no processing required'),
(1214,9,0,'2025-01-19 05:00:57',0,0,0,'Run mode: GLPI'),
(1215,9,1214,'2025-01-19 05:00:57',2,0.00748301,0,'Action completed, no processing required'),
(1216,14,0,'2025-01-19 05:04:13',0,0,0,'Run mode: GLPI'),
(1217,14,1216,'2025-01-19 05:04:13',2,0.010299,0,'Action completed, no processing required'),
(1218,15,0,'2025-01-19 05:04:43',0,0,0,'Run mode: GLPI'),
(1219,15,1218,'2025-01-19 05:04:43',2,0.00829005,0,'Action completed, no processing required'),
(1220,16,0,'2025-01-19 05:09:17',0,0,0,'Run mode: GLPI'),
(1221,16,1220,'2025-01-19 05:09:17',2,0.00874496,0,'Action completed, no processing required'),
(1222,13,0,'2025-01-19 05:14:59',0,0,0,'Run mode: GLPI'),
(1223,13,1222,'2025-01-19 05:14:59',2,0.00778389,0,'Action completed, no processing required'),
(1224,20,0,'2025-01-19 05:17:42',0,0,0,'Run mode: GLPI'),
(1225,20,1224,'2025-01-19 05:17:42',2,0.0111029,0,'Action completed, no processing required'),
(1226,23,0,'2025-01-19 05:20:39',0,0,0,'Run mode: GLPI'),
(1227,23,1226,'2025-01-19 05:20:39',2,0.0250051,0,'Action completed, no processing required'),
(1228,25,0,'2025-01-19 05:25:42',0,0,0,'Run mode: GLPI'),
(1229,25,1228,'2025-01-19 05:25:42',2,0.00613093,0,'Action completed, no processing required'),
(1230,31,0,'2025-01-19 05:26:00',0,0,0,'Run mode: GLPI'),
(1231,31,1230,'2025-01-19 05:26:00',2,0.008811,0,'Action completed, no processing required'),
(1232,5,0,'2025-01-19 05:28:37',0,0,0,'Run mode: GLPI'),
(1233,5,1232,'2025-01-19 05:28:37',2,0.00546789,0,'Action completed, no processing required'),
(1234,6,0,'2025-01-19 05:41:06',0,0,0,'Run mode: GLPI'),
(1235,6,1234,'2025-01-19 05:41:06',2,0.00903201,0,'Action completed, no processing required'),
(1236,12,0,'2025-01-19 05:46:50',0,0,0,'Run mode: GLPI'),
(1237,12,1236,'2025-01-19 05:46:50',1,0.882612,23749,'Limpar 23749 arquivos de sessão criados a mais de 1440 segundos\n'),
(1238,12,1236,'2025-01-19 05:46:50',2,0.88874,23749,'Action completed, fully processed'),
(1239,18,0,'2025-01-19 05:51:59',0,0,0,'Run mode: GLPI'),
(1240,18,1239,'2025-01-19 05:51:59',2,0.0090239,0,'Action completed, no processing required'),
(1241,19,0,'2025-01-19 05:56:12',0,0,0,'Run mode: GLPI'),
(1242,19,1241,'2025-01-19 05:56:12',2,0.0143771,0,'Action completed, fully processed'),
(1243,24,0,'2025-01-20 11:05:58',0,0,0,'Run mode: GLPI'),
(1244,24,1243,'2025-01-20 11:05:58',2,0.093184,0,'Action completed, no processing required'),
(1245,22,0,'2025-01-20 11:14:23',0,0,0,'Run mode: GLPI'),
(1246,22,1245,'2025-01-20 11:14:23',2,0.180445,0,'Action completed, fully processed'),
(1247,21,0,'2025-01-20 11:18:20',0,0,0,'Run mode: GLPI'),
(1248,21,1247,'2025-01-20 11:18:20',2,0.0134459,0,'Action completed, no processing required'),
(1249,32,0,'2025-01-20 11:22:07',0,0,0,'Run mode: GLPI'),
(1250,32,1249,'2025-01-20 11:22:07',2,0.009233,0,'Action completed, no processing required'),
(1251,17,0,'2025-01-20 11:45:20',0,0,0,'Run mode: GLPI'),
(1252,17,1251,'2025-01-20 11:45:20',2,0.0116911,0,'Action completed, no processing required'),
(1253,9,0,'2025-01-20 11:58:23',0,0,0,'Run mode: GLPI'),
(1254,9,1253,'2025-01-20 11:58:23',2,0.0123241,0,'Action completed, no processing required'),
(1255,14,0,'2025-01-20 13:26:04',0,0,0,'Run mode: GLPI'),
(1256,14,1255,'2025-01-20 13:26:04',2,0.0109248,0,'Action completed, no processing required'),
(1257,13,0,'2025-01-20 13:26:31',0,0,0,'Run mode: GLPI'),
(1258,13,1257,'2025-01-20 13:26:31',2,0.00583196,0,'Action completed, no processing required'),
(1259,20,0,'2025-01-20 13:27:14',0,0,0,'Run mode: GLPI'),
(1260,20,1259,'2025-01-20 13:27:14',2,0.010077,0,'Action completed, no processing required'),
(1261,15,0,'2025-01-20 13:27:24',0,0,0,'Run mode: GLPI'),
(1262,15,1261,'2025-01-20 13:27:24',2,0.00703096,0,'Action completed, no processing required'),
(1263,16,0,'2025-01-20 13:28:31',0,0,0,'Run mode: GLPI'),
(1264,16,1263,'2025-01-20 13:28:31',2,0.00579095,0,'Action completed, no processing required'),
(1265,23,0,'2025-01-20 13:30:05',0,0,0,'Run mode: GLPI'),
(1266,23,1265,'2025-01-20 13:30:05',2,0.0163121,0,'Action completed, no processing required'),
(1267,25,0,'2025-01-20 13:32:29',0,0,0,'Run mode: GLPI'),
(1268,25,1267,'2025-01-20 13:32:29',2,0.0114651,0,'Action completed, no processing required'),
(1269,31,0,'2025-01-20 13:35:41',0,0,0,'Run mode: GLPI'),
(1270,31,1269,'2025-01-20 13:35:41',2,0.0104899,0,'Action completed, no processing required'),
(1271,5,0,'2025-01-20 13:37:36',0,0,0,'Run mode: GLPI'),
(1272,5,1271,'2025-01-20 13:37:36',2,0.0110211,0,'Action completed, no processing required'),
(1273,6,0,'2025-01-20 14:02:54',0,0,0,'Run mode: GLPI'),
(1274,6,1273,'2025-01-20 14:02:54',2,0.0139232,0,'Action completed, no processing required'),
(1275,12,0,'2025-01-20 14:08:24',0,0,0,'Run mode: GLPI'),
(1276,12,1275,'2025-01-20 14:08:24',1,0.704522,23356,'Limpar 23356 arquivos de sessão criados a mais de 1440 segundos\n'),
(1277,12,1275,'2025-01-20 14:08:24',2,0.710593,23356,'Action completed, fully processed'),
(1278,18,0,'2025-01-20 14:20:08',0,0,0,'Run mode: GLPI'),
(1279,18,1278,'2025-01-20 14:20:08',2,0.00821304,0,'Action completed, no processing required'),
(1280,19,0,'2025-01-20 14:32:41',0,0,0,'Run mode: GLPI'),
(1281,19,1280,'2025-01-20 14:32:41',2,0.00757408,0,'Action completed, fully processed'),
(1282,22,0,'2025-01-20 15:06:13',0,0,0,'Run mode: GLPI'),
(1283,22,1282,'2025-01-20 15:06:13',2,0.374456,0,'Action completed, fully processed'),
(1284,21,0,'2025-01-20 15:11:16',0,0,0,'Run mode: GLPI'),
(1285,21,1284,'2025-01-20 15:11:16',2,0.014854,0,'Action completed, no processing required'),
(1286,32,0,'2025-01-20 21:36:39',0,0,0,'Run mode: GLPI'),
(1287,32,1286,'2025-01-20 21:36:39',2,0.0467188,0,'Action completed, no processing required'),
(1288,17,0,'2025-01-20 23:16:05',0,0,0,'Run mode: GLPI'),
(1289,17,1288,'2025-01-20 23:16:05',2,0.015599,0,'Action completed, no processing required'),
(1290,24,0,'2025-01-21 00:12:29',0,0,0,'Run mode: GLPI'),
(1291,24,1290,'2025-01-21 00:12:29',1,0.00977302,2,'Limpar 2 arquivos temporários criados a mais de 3600 segundos\n'),
(1292,24,1290,'2025-01-21 00:12:29',2,0.019731,2,'Action completed, fully processed'),
(1293,9,0,'2025-01-21 00:15:55',0,0,0,'Run mode: GLPI'),
(1294,9,1293,'2025-01-21 00:15:55',2,0.011584,0,'Action completed, no processing required'),
(1295,13,0,'2025-01-21 00:21:23',0,0,0,'Run mode: GLPI'),
(1296,13,1295,'2025-01-21 00:21:23',2,0.00632191,0,'Action completed, no processing required'),
(1297,14,0,'2025-01-21 00:21:33',0,0,0,'Run mode: GLPI'),
(1298,14,1297,'2025-01-21 00:21:33',2,0.018538,0,'Action completed, no processing required'),
(1299,20,0,'2025-01-21 00:21:52',0,0,0,'Run mode: GLPI'),
(1300,20,1299,'2025-01-21 00:21:52',2,0.013813,0,'Action completed, no processing required'),
(1301,22,0,'2025-01-21 00:22:11',0,0,0,'Run mode: GLPI'),
(1302,22,1301,'2025-01-21 00:22:11',2,0.340157,0,'Action completed, fully processed'),
(1303,21,0,'2025-01-21 00:31:05',0,0,0,'Run mode: GLPI'),
(1304,21,1303,'2025-01-21 00:31:05',2,0.0168321,0,'Action completed, no processing required'),
(1305,32,0,'2025-01-21 00:33:43',0,0,0,'Run mode: GLPI'),
(1306,32,1305,'2025-01-21 00:33:43',2,0.00650883,0,'Action completed, no processing required'),
(1307,17,0,'2025-01-21 00:52:56',0,0,0,'Run mode: GLPI'),
(1308,17,1307,'2025-01-21 00:52:56',2,0.00928307,0,'Action completed, no processing required'),
(1309,22,0,'2025-01-21 00:56:52',0,0,0,'Run mode: GLPI'),
(1310,22,1309,'2025-01-21 00:56:52',2,0.319651,0,'Action completed, fully processed'),
(1311,9,0,'2025-01-21 11:11:34',0,0,0,'Run mode: GLPI'),
(1312,9,1311,'2025-01-21 11:11:34',2,0.406446,0,'Action completed, no processing required'),
(1313,21,0,'2025-01-21 11:13:08',0,0,0,'Run mode: GLPI'),
(1314,21,1313,'2025-01-21 11:13:08',2,0.0202451,0,'Action completed, no processing required'),
(1315,32,0,'2025-01-21 11:26:05',0,0,0,'Run mode: GLPI'),
(1316,32,1315,'2025-01-21 11:26:05',2,0.011066,0,'Action completed, no processing required'),
(1317,17,0,'2025-01-21 11:27:29',0,0,0,'Run mode: GLPI'),
(1318,17,1317,'2025-01-21 11:27:29',2,0.00840688,0,'Action completed, no processing required'),
(1319,22,0,'2025-01-21 11:57:12',0,0,0,'Run mode: GLPI'),
(1320,22,1319,'2025-01-21 11:57:12',2,0.478332,0,'Action completed, fully processed'),
(1321,24,0,'2025-01-21 12:10:11',0,0,0,'Run mode: GLPI'),
(1322,24,1321,'2025-01-21 12:10:11',1,0.00622296,6,'Limpar 6 arquivos temporários criados a mais de 3600 segundos\n'),
(1323,24,1321,'2025-01-21 12:10:11',2,0.010396,6,'Action completed, fully processed'),
(1324,13,0,'2025-01-21 12:16:56',0,0,0,'Run mode: GLPI'),
(1325,13,1324,'2025-01-21 12:16:56',2,0.0123858,0,'Action completed, no processing required'),
(1326,14,0,'2025-01-21 12:18:17',0,0,0,'Run mode: GLPI'),
(1327,14,1326,'2025-01-21 12:18:17',2,0.01178,0,'Action completed, no processing required'),
(1328,20,0,'2025-01-21 12:31:12',0,0,0,'Run mode: GLPI'),
(1329,20,1328,'2025-01-21 12:31:12',2,0.0121319,0,'Action completed, no processing required'),
(1330,15,0,'2025-01-21 12:54:53',0,0,0,'Run mode: GLPI'),
(1331,15,1330,'2025-01-21 12:54:53',2,0.011786,0,'Action completed, no processing required'),
(1332,16,0,'2025-01-21 13:00:16',0,0,0,'Run mode: GLPI'),
(1333,16,1332,'2025-01-21 13:00:16',2,0.009022,0,'Action completed, no processing required'),
(1334,21,0,'2025-01-21 13:08:50',0,0,0,'Run mode: GLPI'),
(1335,21,1334,'2025-01-21 13:08:50',2,0.0147312,0,'Action completed, no processing required'),
(1336,9,0,'2025-01-21 13:23:40',0,0,0,'Run mode: GLPI'),
(1337,9,1336,'2025-01-21 13:23:40',2,0.00731182,0,'Action completed, no processing required'),
(1338,32,0,'2025-01-21 13:33:53',0,0,0,'Run mode: GLPI'),
(1339,32,1338,'2025-01-21 13:33:53',2,0.00754595,0,'Action completed, no processing required'),
(1340,17,0,'2025-01-21 13:40:54',0,0,0,'Run mode: GLPI'),
(1341,17,1340,'2025-01-21 13:40:54',2,0.0152259,0,'Action completed, no processing required'),
(1342,22,0,'2025-01-21 13:42:24',0,0,0,'Run mode: GLPI'),
(1343,22,1342,'2025-01-21 13:42:24',2,0.324126,0,'Action completed, fully processed'),
(1344,24,0,'2025-01-21 13:46:33',0,0,0,'Run mode: GLPI'),
(1345,24,1344,'2025-01-21 13:46:33',1,0.00591207,2,'Limpar 2 arquivos temporários criados a mais de 3600 segundos\n'),
(1346,24,1344,'2025-01-21 13:46:33',2,0.011637,2,'Action completed, fully processed'),
(1347,21,0,'2025-01-21 13:46:56',0,0,0,'Run mode: GLPI'),
(1348,21,1347,'2025-01-21 13:46:56',2,0.007025,0,'Action completed, no processing required'),
(1349,13,0,'2025-01-21 14:05:55',0,0,0,'Run mode: GLPI'),
(1350,13,1349,'2025-01-21 14:05:55',2,0.0066669,0,'Action completed, no processing required'),
(1351,14,0,'2025-01-21 14:15:54',0,0,0,'Run mode: GLPI'),
(1352,14,1351,'2025-01-21 14:15:54',2,0.0106139,0,'Action completed, no processing required'),
(1353,23,0,'2025-01-21 14:27:01',0,0,0,'Run mode: GLPI'),
(1354,23,1353,'2025-01-21 14:27:01',2,0.0171599,0,'Action completed, no processing required'),
(1355,20,0,'2025-01-21 14:27:56',0,0,0,'Run mode: GLPI'),
(1356,20,1355,'2025-01-21 14:27:56',2,0.00972986,0,'Action completed, no processing required'),
(1357,25,0,'2025-01-21 14:29:33',0,0,0,'Run mode: GLPI'),
(1358,25,1357,'2025-01-21 14:29:33',2,0.0126419,0,'Action completed, no processing required'),
(1359,9,0,'2025-01-21 14:33:24',0,0,0,'Run mode: GLPI'),
(1360,9,1359,'2025-01-21 14:33:24',2,0.00716901,0,'Action completed, no processing required'),
(1361,31,0,'2025-01-21 14:33:36',0,0,0,'Run mode: GLPI'),
(1362,31,1361,'2025-01-21 14:33:36',2,0.00939798,0,'Action completed, no processing required'),
(1363,5,0,'2025-01-21 14:37:08',0,0,0,'Run mode: GLPI'),
(1364,5,1363,'2025-01-21 14:37:08',2,0.0180202,0,'Action completed, no processing required'),
(1365,32,0,'2025-01-21 14:38:37',0,0,0,'Run mode: GLPI'),
(1366,32,1365,'2025-01-21 14:38:37',2,0.00717807,0,'Action completed, no processing required'),
(1367,22,0,'2025-01-21 14:41:39',0,0,0,'Run mode: GLPI'),
(1368,22,1367,'2025-01-21 14:41:39',2,0.457287,0,'Action completed, fully processed'),
(1369,17,0,'2025-01-21 14:44:16',0,0,0,'Run mode: GLPI'),
(1370,17,1369,'2025-01-21 14:44:16',2,0.00647092,0,'Action completed, no processing required'),
(1371,21,0,'2025-01-21 14:45:39',0,0,0,'Run mode: GLPI'),
(1372,21,1371,'2025-01-21 14:45:39',2,0.00677896,0,'Action completed, no processing required'),
(1373,6,0,'2025-01-21 15:01:00',0,0,0,'Run mode: GLPI'),
(1374,6,1373,'2025-01-21 15:01:00',2,0.013442,0,'Action completed, no processing required'),
(1375,12,0,'2025-01-21 15:06:11',0,0,0,'Run mode: GLPI'),
(1376,12,1375,'2025-01-21 15:06:11',1,0.526663,18049,'Limpar 18049 arquivos de sessão criados a mais de 1440 segundos\n'),
(1377,12,1375,'2025-01-21 15:06:11',2,0.532814,18049,'Action completed, fully processed'),
(1378,18,0,'2025-01-21 15:07:12',0,0,0,'Run mode: GLPI'),
(1379,18,1378,'2025-01-21 15:07:12',2,0.00887704,0,'Action completed, no processing required'),
(1380,19,0,'2025-01-21 15:26:27',0,0,0,'Run mode: GLPI'),
(1381,19,1380,'2025-01-21 15:26:27',2,0.00855589,0,'Action completed, fully processed'),
(1382,22,0,'2025-01-21 15:36:36',0,0,0,'Run mode: GLPI'),
(1383,22,1382,'2025-01-21 15:36:36',2,0.322362,0,'Action completed, fully processed'),
(1384,9,0,'2025-01-21 16:04:53',0,0,0,'Run mode: GLPI'),
(1385,9,1384,'2025-01-21 16:04:53',2,0.0113511,0,'Action completed, no processing required'),
(1386,32,0,'2025-01-21 16:20:22',0,0,0,'Run mode: GLPI'),
(1387,32,1386,'2025-01-21 16:20:22',2,0.013068,0,'Action completed, no processing required'),
(1388,24,0,'2025-01-21 16:52:44',0,0,0,'Run mode: GLPI'),
(1389,24,1388,'2025-01-21 16:52:44',1,0.00576401,2,'Limpar 2 arquivos temporários criados a mais de 3600 segundos\n'),
(1390,24,1388,'2025-01-21 16:52:44',2,0.010814,2,'Action completed, fully processed'),
(1391,17,0,'2025-01-21 17:04:19',0,0,0,'Run mode: GLPI'),
(1392,17,1391,'2025-01-21 17:04:19',2,0.00971103,0,'Action completed, no processing required'),
(1393,21,0,'2025-01-21 17:21:30',0,0,0,'Run mode: GLPI'),
(1394,21,1393,'2025-01-21 17:21:30',2,0.00680113,0,'Action completed, no processing required'),
(1395,13,0,'2025-01-21 17:29:15',0,0,0,'Run mode: GLPI'),
(1396,13,1395,'2025-01-21 17:29:15',2,0.00694895,0,'Action completed, no processing required'),
(1397,14,0,'2025-01-21 17:42:42',0,0,0,'Run mode: GLPI'),
(1398,14,1397,'2025-01-21 17:42:42',2,0.016413,0,'Action completed, no processing required'),
(1399,20,0,'2025-01-21 17:55:36',0,0,0,'Run mode: GLPI'),
(1400,20,1399,'2025-01-21 17:55:36',2,0.021374,0,'Action completed, no processing required'),
(1401,22,0,'2025-01-21 18:02:22',0,0,0,'Run mode: GLPI'),
(1402,22,1401,'2025-01-21 18:02:22',2,0.351236,0,'Action completed, fully processed'),
(1403,9,0,'2025-01-21 18:27:53',0,0,0,'Run mode: GLPI'),
(1404,9,1403,'2025-01-21 18:27:53',2,0.00819206,0,'Action completed, no processing required'),
(1405,32,0,'2025-01-21 18:46:08',0,0,0,'Run mode: GLPI'),
(1406,32,1405,'2025-01-21 18:46:08',2,0.0209682,0,'Action completed, no processing required'),
(1407,17,0,'2025-01-21 19:02:05',0,0,0,'Run mode: GLPI'),
(1408,17,1407,'2025-01-21 19:02:05',2,0.0109499,0,'Action completed, no processing required'),
(1409,21,0,'2025-01-21 19:02:27',0,0,0,'Run mode: GLPI'),
(1410,21,1409,'2025-01-21 19:02:27',2,0.0124331,0,'Action completed, no processing required'),
(1411,24,0,'2025-01-21 19:11:25',0,0,0,'Run mode: GLPI'),
(1412,24,1411,'2025-01-21 19:11:25',2,0.009058,0,'Action completed, no processing required'),
(1413,22,0,'2025-01-21 19:20:14',0,0,0,'Run mode: GLPI'),
(1414,22,1413,'2025-01-21 19:20:14',2,0.313761,0,'Action completed, fully processed'),
(1415,13,0,'2025-01-21 19:31:40',0,0,0,'Run mode: GLPI'),
(1416,13,1415,'2025-01-21 19:31:40',2,0.00819206,0,'Action completed, no processing required'),
(1417,9,0,'2025-01-21 19:39:48',0,0,0,'Run mode: GLPI'),
(1418,9,1417,'2025-01-21 19:39:48',2,0.014112,0,'Action completed, no processing required'),
(1419,14,0,'2025-01-21 19:59:03',0,0,0,'Run mode: GLPI'),
(1420,14,1419,'2025-01-21 19:59:03',2,0.01173,0,'Action completed, no processing required'),
(1421,32,0,'2025-01-21 20:04:07',0,0,0,'Run mode: GLPI'),
(1422,32,1421,'2025-01-21 20:04:07',2,0.00679898,0,'Action completed, no processing required'),
(1423,20,0,'2025-01-21 20:18:06',0,0,0,'Run mode: GLPI'),
(1424,20,1423,'2025-01-21 20:18:06',2,0.0128191,0,'Action completed, no processing required'),
(1425,17,0,'2025-01-22 10:57:32',0,0,0,'Run mode: GLPI'),
(1426,17,1425,'2025-01-22 10:57:32',2,0.136014,0,'Action completed, no processing required'),
(1427,21,0,'2025-01-22 11:09:17',0,0,0,'Run mode: GLPI'),
(1428,21,1427,'2025-01-22 11:09:17',2,0.029413,0,'Action completed, no processing required'),
(1429,22,0,'2025-01-22 12:05:42',0,0,0,'Run mode: GLPI'),
(1430,22,1429,'2025-01-22 12:05:42',2,0.514728,0,'Action completed, fully processed'),
(1431,9,0,'2025-01-22 12:13:03',0,0,0,'Run mode: GLPI'),
(1432,9,1431,'2025-01-22 12:13:03',2,0.015497,0,'Action completed, no processing required'),
(1433,32,0,'2025-01-22 12:58:01',0,0,0,'Run mode: GLPI'),
(1434,32,1433,'2025-01-22 12:58:01',2,0.0156698,0,'Action completed, no processing required'),
(1435,24,0,'2025-01-22 13:22:45',0,0,0,'Run mode: GLPI'),
(1436,24,1435,'2025-01-22 13:22:45',1,0.00661397,2,'Limpar 2 arquivos temporários criados a mais de 3600 segundos\n'),
(1437,24,1435,'2025-01-22 13:22:45',2,0.0117428,2,'Action completed, fully processed'),
(1438,13,0,'2025-01-22 14:39:34',0,0,0,'Run mode: GLPI'),
(1439,13,1438,'2025-01-22 14:39:34',2,0.0102201,0,'Action completed, no processing required'),
(1440,14,0,'2025-01-22 16:50:17',0,0,0,'Run mode: GLPI'),
(1441,14,1440,'2025-01-22 16:50:17',2,0.0123348,0,'Action completed, no processing required'),
(1442,20,0,'2025-01-22 16:56:51',0,0,0,'Run mode: GLPI'),
(1443,20,1442,'2025-01-22 16:56:51',2,0.0171058,0,'Action completed, no processing required'),
(1444,15,0,'2025-01-22 19:12:35',0,0,0,'Run mode: GLPI'),
(1445,15,1444,'2025-01-22 19:12:35',2,0.0427351,0,'Action completed, no processing required'),
(1446,16,0,'2025-01-22 19:18:00',0,0,0,'Run mode: GLPI'),
(1447,16,1446,'2025-01-22 19:18:00',2,0.00830197,0,'Action completed, no processing required'),
(1448,17,0,'2025-01-22 20:25:18',0,0,0,'Run mode: GLPI'),
(1449,17,1448,'2025-01-22 20:25:18',2,0.0141819,0,'Action completed, no processing required'),
(1450,21,0,'2025-01-23 11:17:15',0,0,0,'Run mode: GLPI'),
(1451,21,1450,'2025-01-23 11:17:15',2,0.067642,0,'Action completed, no processing required'),
(1452,22,0,'2025-01-23 11:31:49',0,0,0,'Run mode: GLPI'),
(1453,22,1452,'2025-01-23 11:31:49',2,0.558977,0,'Action completed, fully processed'),
(1454,9,0,'2025-01-23 12:49:06',0,0,0,'Run mode: GLPI'),
(1455,9,1454,'2025-01-23 12:49:06',2,0.025156,0,'Action completed, no processing required'),
(1456,32,0,'2025-01-23 12:50:15',0,0,0,'Run mode: GLPI'),
(1457,32,1456,'2025-01-23 12:50:15',2,0.0203359,0,'Action completed, no processing required'),
(1458,24,0,'2025-01-23 12:51:20',0,0,0,'Run mode: GLPI'),
(1459,24,1458,'2025-01-23 12:51:20',2,0.00902295,0,'Action completed, no processing required'),
(1460,23,0,'2025-01-23 12:52:24',0,0,0,'Run mode: GLPI'),
(1461,23,1460,'2025-01-23 12:52:24',2,0.064702,0,'Action completed, no processing required'),
(1462,25,0,'2025-01-23 13:02:04',0,0,0,'Run mode: GLPI'),
(1463,25,1462,'2025-01-23 13:02:04',2,0.00851202,0,'Action completed, no processing required'),
(1464,31,0,'2025-01-23 13:05:41',0,0,0,'Run mode: GLPI'),
(1465,31,1464,'2025-01-23 13:05:41',2,0.00959802,0,'Action completed, no processing required'),
(1466,5,0,'2025-01-23 13:08:18',0,0,0,'Run mode: GLPI'),
(1467,5,1466,'2025-01-23 13:08:18',2,0.00770712,0,'Action completed, no processing required'),
(1468,6,0,'2025-01-23 13:12:53',0,0,0,'Run mode: GLPI'),
(1469,6,1468,'2025-01-23 13:12:53',2,0.00752115,0,'Action completed, no processing required'),
(1470,12,0,'2025-01-23 13:16:12',0,0,0,'Run mode: GLPI'),
(1471,12,1470,'2025-01-23 13:16:12',1,0.973812,33342,'Limpar 33342 arquivos de sessão criados a mais de 1440 segundos\n'),
(1472,12,1470,'2025-01-23 13:16:12',2,1.03353,33342,'Action completed, fully processed'),
(1473,18,0,'2025-01-23 13:20:47',0,0,0,'Run mode: GLPI'),
(1474,18,1473,'2025-01-23 13:20:47',2,0.0111101,0,'Action completed, no processing required'),
(1475,19,0,'2025-01-23 13:39:21',0,0,0,'Run mode: GLPI'),
(1476,19,1475,'2025-01-23 13:39:21',2,0.00724602,0,'Action completed, fully processed'),
(1477,13,0,'2025-01-23 14:59:26',0,0,0,'Run mode: GLPI'),
(1478,13,1477,'2025-01-23 14:59:26',2,0.0407369,0,'Action completed, no processing required'),
(1479,14,0,'2025-01-23 15:03:30',0,0,0,'Run mode: GLPI'),
(1480,14,1479,'2025-01-23 15:03:30',2,0.0130219,0,'Action completed, no processing required'),
(1481,20,0,'2025-01-24 11:35:11',0,0,0,'Run mode: GLPI'),
(1482,20,1481,'2025-01-24 11:35:11',2,0.0649059,0,'Action completed, no processing required'),
(1483,17,0,'2025-01-24 11:42:29',0,0,0,'Run mode: GLPI'),
(1484,17,1483,'2025-01-24 11:42:29',2,0.0279791,0,'Action completed, no processing required'),
(1485,15,0,'2025-01-24 11:58:25',0,0,0,'Run mode: GLPI'),
(1486,15,1485,'2025-01-24 11:58:25',2,0.0156341,0,'Action completed, no processing required'),
(1487,16,0,'2025-01-24 12:07:04',0,0,0,'Run mode: GLPI'),
(1488,16,1487,'2025-01-24 12:07:04',2,0.00635695,0,'Action completed, no processing required'),
(1489,21,0,'2025-01-24 12:17:47',0,0,0,'Run mode: GLPI'),
(1490,21,1489,'2025-01-24 12:17:47',2,0.0174282,0,'Action completed, no processing required'),
(1491,22,0,'2025-01-24 16:36:10',0,0,0,'Run mode: GLPI'),
(1492,22,1491,'2025-01-24 16:36:10',2,1.22004,0,'Action completed, fully processed'),
(1493,32,0,'2025-01-24 16:58:45',0,0,0,'Run mode: GLPI'),
(1494,32,1493,'2025-01-24 16:58:45',2,0.0305388,0,'Action completed, no processing required'),
(1495,9,0,'2025-01-24 19:39:27',0,0,0,'Run mode: GLPI'),
(1496,9,1495,'2025-01-24 19:39:27',2,0.024013,0,'Action completed, no processing required'),
(1497,24,0,'2025-01-27 11:10:40',0,0,0,'Run mode: GLPI'),
(1498,24,1497,'2025-01-27 11:10:40',1,0.082159,3,'Limpar 3 arquivos temporários criados a mais de 3600 segundos\n'),
(1499,24,1497,'2025-01-27 11:10:40',2,0.105492,3,'Action completed, fully processed'),
(1500,13,0,'2025-01-27 11:55:39',0,0,0,'Run mode: GLPI'),
(1501,13,1500,'2025-01-27 11:55:39',2,0.013149,0,'Action completed, no processing required'),
(1502,14,0,'2025-01-27 15:46:28',0,0,0,'Run mode: GLPI'),
(1503,14,1502,'2025-01-27 15:46:28',2,0.0193172,0,'Action completed, no processing required'),
(1504,17,0,'2025-01-27 17:24:01',0,0,0,'Run mode: GLPI'),
(1505,17,1504,'2025-01-27 17:24:01',2,0.0284519,0,'Action completed, no processing required'),
(1506,21,0,'2025-01-27 17:40:57',0,0,0,'Run mode: GLPI'),
(1507,21,1506,'2025-01-27 17:40:57',2,0.029289,0,'Action completed, no processing required'),
(1508,20,0,'2025-01-27 17:54:40',0,0,0,'Run mode: GLPI'),
(1509,20,1508,'2025-01-27 17:54:40',2,0.0206861,0,'Action completed, no processing required'),
(1510,23,0,'2025-01-27 18:28:21',0,0,0,'Run mode: GLPI'),
(1511,23,1510,'2025-01-27 18:28:21',2,0.117627,2,'Action completed, fully processed'),
(1512,25,0,'2025-01-27 18:32:05',0,0,0,'Run mode: GLPI'),
(1513,25,1512,'2025-01-27 18:32:05',2,0.00741887,0,'Action completed, no processing required'),
(1514,31,0,'2025-01-27 18:34:08',0,0,0,'Run mode: GLPI'),
(1515,31,1514,'2025-01-27 18:34:08',2,0.0122561,0,'Action completed, no processing required'),
(1516,5,0,'2025-01-27 18:35:30',0,0,0,'Run mode: GLPI'),
(1517,5,1516,'2025-01-27 18:35:30',2,0.010262,0,'Action completed, no processing required'),
(1518,6,0,'2025-01-27 18:36:00',0,0,0,'Run mode: GLPI'),
(1519,6,1518,'2025-01-27 18:36:00',2,0.0193851,0,'Action completed, no processing required'),
(1520,12,0,'2025-01-27 18:39:24',0,0,0,'Run mode: GLPI'),
(1521,12,1520,'2025-01-27 18:39:24',1,4.98736,73156,'Limpar 73156 arquivos de sessão criados a mais de 1440 segundos\n'),
(1522,12,1520,'2025-01-27 18:39:24',2,4.99822,73156,'Action completed, fully processed'),
(1523,18,0,'2025-01-27 19:32:33',0,0,0,'Run mode: GLPI'),
(1524,18,1523,'2025-01-27 19:32:33',2,0.0149732,0,'Action completed, no processing required'),
(1525,19,0,'2025-01-27 21:30:12',0,0,0,'Run mode: GLPI'),
(1526,19,1525,'2025-01-27 21:30:12',2,0.0129011,0,'Action completed, fully processed'),
(1527,22,0,'2025-01-27 23:36:31',0,0,0,'Run mode: GLPI'),
(1528,22,1527,'2025-01-27 23:36:31',2,0.727206,0,'Action completed, fully processed'),
(1529,32,0,'2025-01-28 11:04:41',0,0,0,'Run mode: GLPI'),
(1530,32,1529,'2025-01-28 11:04:41',2,0.0476682,0,'Action completed, no processing required'),
(1531,9,0,'2025-01-28 11:10:48',0,0,0,'Run mode: GLPI'),
(1532,9,1531,'2025-01-28 11:10:48',2,0.0190151,0,'Action completed, no processing required'),
(1533,15,0,'2025-01-28 11:16:47',0,0,0,'Run mode: GLPI'),
(1534,15,1533,'2025-01-28 11:16:47',2,0.00987601,0,'Action completed, no processing required'),
(1535,16,0,'2025-01-28 11:31:09',0,0,0,'Run mode: GLPI'),
(1536,16,1535,'2025-01-28 11:31:09',2,0.00955701,0,'Action completed, no processing required'),
(1537,24,0,'2025-01-28 11:33:56',0,0,0,'Run mode: GLPI'),
(1538,24,1537,'2025-01-28 11:33:56',2,0.00699782,0,'Action completed, no processing required'),
(1539,13,0,'2025-01-28 11:40:00',0,0,0,'Run mode: GLPI'),
(1540,13,1539,'2025-01-28 11:40:00',2,0.0118718,0,'Action completed, no processing required'),
(1541,14,0,'2025-01-28 11:47:44',0,0,0,'Run mode: GLPI'),
(1542,14,1541,'2025-01-28 11:47:44',2,0.00558805,0,'Action completed, no processing required'),
(1543,17,0,'2025-01-28 11:49:47',0,0,0,'Run mode: GLPI'),
(1544,17,1543,'2025-01-28 11:49:47',2,0.0102239,0,'Action completed, no processing required'),
(1545,21,0,'2025-01-28 11:52:58',0,0,0,'Run mode: GLPI'),
(1546,21,1545,'2025-01-28 11:52:58',2,0.0154469,0,'Action completed, no processing required'),
(1547,20,0,'2025-01-28 11:54:13',0,0,0,'Run mode: GLPI'),
(1548,20,1547,'2025-01-28 11:54:13',2,0.040175,0,'Action completed, no processing required'),
(1549,22,0,'2025-01-28 12:05:06',0,0,0,'Run mode: GLPI'),
(1550,22,1549,'2025-01-28 12:05:06',2,0.450912,0,'Action completed, fully processed'),
(1551,32,0,'2025-01-28 12:18:00',0,0,0,'Run mode: GLPI'),
(1552,32,1551,'2025-01-28 12:18:00',2,0.010793,0,'Action completed, no processing required'),
(1553,9,0,'2025-01-28 12:30:31',0,0,0,'Run mode: GLPI'),
(1554,9,1553,'2025-01-28 12:30:31',2,0.00939703,0,'Action completed, no processing required'),
(1555,17,0,'2025-01-28 12:39:15',0,0,0,'Run mode: GLPI'),
(1556,17,1555,'2025-01-28 12:39:15',2,0.00729895,0,'Action completed, no processing required'),
(1557,21,0,'2025-01-28 12:50:34',0,0,0,'Run mode: GLPI'),
(1558,21,1557,'2025-01-28 12:50:34',2,0.0124102,0,'Action completed, no processing required'),
(1559,22,0,'2025-01-28 13:16:01',0,0,0,'Run mode: GLPI'),
(1560,22,1559,'2025-01-28 13:16:01',2,0.330205,0,'Action completed, fully processed'),
(1561,32,0,'2025-01-28 13:45:15',0,0,0,'Run mode: GLPI'),
(1562,32,1561,'2025-01-28 13:45:15',2,0.00596094,0,'Action completed, no processing required'),
(1563,24,0,'2025-01-28 13:50:42',0,0,0,'Run mode: GLPI'),
(1564,24,1563,'2025-01-28 13:50:42',2,0.00793409,0,'Action completed, no processing required'),
(1565,9,0,'2025-01-28 13:56:44',0,0,0,'Run mode: GLPI'),
(1566,9,1565,'2025-01-28 13:56:44',2,0.00669813,0,'Action completed, no processing required'),
(1567,13,0,'2025-01-28 13:59:05',0,0,0,'Run mode: GLPI'),
(1568,13,1567,'2025-01-28 13:59:05',2,0.0123892,0,'Action completed, no processing required'),
(1569,17,0,'2025-01-28 14:00:34',0,0,0,'Run mode: GLPI'),
(1570,17,1569,'2025-01-28 14:00:34',2,0.00617909,0,'Action completed, no processing required'),
(1571,14,0,'2025-01-28 14:02:02',0,0,0,'Run mode: GLPI'),
(1572,14,1571,'2025-01-28 14:02:02',2,0.00810909,0,'Action completed, no processing required'),
(1573,20,0,'2025-01-28 14:04:56',0,0,0,'Run mode: GLPI'),
(1574,20,1573,'2025-01-28 14:04:56',2,0.00826883,0,'Action completed, no processing required'),
(1575,21,0,'2025-01-28 14:06:52',0,0,0,'Run mode: GLPI'),
(1576,21,1575,'2025-01-28 14:06:52',2,0.00599098,0,'Action completed, no processing required'),
(1577,22,0,'2025-01-28 14:11:40',0,0,0,'Run mode: GLPI'),
(1578,22,1577,'2025-01-28 14:11:40',2,0.309869,0,'Action completed, fully processed'),
(1579,32,0,'2025-01-28 14:16:02',0,0,0,'Run mode: GLPI'),
(1580,32,1579,'2025-01-28 14:16:02',2,0.011049,0,'Action completed, no processing required'),
(1581,17,0,'2025-01-28 14:28:19',0,0,0,'Run mode: GLPI'),
(1582,17,1581,'2025-01-28 14:28:19',2,0.00631189,0,'Action completed, no processing required'),
(1583,9,0,'2025-01-28 14:33:18',0,0,0,'Run mode: GLPI'),
(1584,9,1583,'2025-01-28 14:33:18',2,0.0100071,0,'Action completed, no processing required'),
(1585,21,0,'2025-01-28 14:39:33',0,0,0,'Run mode: GLPI'),
(1586,21,1585,'2025-01-28 14:39:33',2,0.00610995,0,'Action completed, no processing required'),
(1587,22,0,'2025-01-28 14:45:45',0,0,0,'Run mode: GLPI'),
(1588,22,1587,'2025-01-28 14:45:45',2,0.301396,0,'Action completed, fully processed'),
(1589,32,0,'2025-01-28 14:46:05',0,0,0,'Run mode: GLPI'),
(1590,32,1589,'2025-01-28 14:46:05',2,0.00675488,0,'Action completed, no processing required'),
(1591,17,0,'2025-01-28 14:51:04',0,0,0,'Run mode: GLPI'),
(1592,17,1591,'2025-01-28 14:51:04',2,0.00696898,0,'Action completed, no processing required'),
(1593,9,0,'2025-01-28 14:53:00',0,0,0,'Run mode: GLPI'),
(1594,9,1593,'2025-01-28 14:53:00',2,0.013145,0,'Action completed, no processing required'),
(1595,21,0,'2025-01-28 14:55:51',0,0,0,'Run mode: GLPI'),
(1596,21,1595,'2025-01-28 14:55:51',2,0.0169921,0,'Action completed, no processing required'),
(1597,22,0,'2025-01-28 15:00:28',0,0,0,'Run mode: GLPI'),
(1598,22,1597,'2025-01-28 15:00:28',2,0.439169,0,'Action completed, fully processed'),
(1599,24,0,'2025-01-28 15:10:57',0,0,0,'Run mode: GLPI'),
(1600,24,1599,'2025-01-28 15:10:57',2,0.00827408,0,'Action completed, no processing required'),
(1601,32,0,'2025-01-28 15:12:37',0,0,0,'Run mode: GLPI'),
(1602,32,1601,'2025-01-28 15:12:37',2,0.0209548,0,'Action completed, no processing required'),
(1603,17,0,'2025-01-28 15:16:20',0,0,0,'Run mode: GLPI'),
(1604,17,1603,'2025-01-28 15:16:20',2,0.0133989,0,'Action completed, no processing required'),
(1605,13,0,'2025-01-28 15:22:06',0,0,0,'Run mode: GLPI'),
(1606,13,1605,'2025-01-28 15:22:06',2,0.00739479,0,'Action completed, no processing required'),
(1607,21,0,'2025-01-28 15:26:03',0,0,0,'Run mode: GLPI'),
(1608,21,1607,'2025-01-28 15:26:03',2,0.0124261,0,'Action completed, no processing required'),
(1609,22,0,'2025-01-28 15:29:27',0,0,0,'Run mode: GLPI'),
(1610,22,1609,'2025-01-28 15:29:27',2,0.344135,0,'Action completed, fully processed'),
(1611,14,0,'2025-01-28 15:30:23',0,0,0,'Run mode: GLPI'),
(1612,14,1611,'2025-01-28 15:30:23',2,0.0111918,0,'Action completed, no processing required'),
(1613,9,0,'2025-01-28 15:41:28',0,0,0,'Run mode: GLPI'),
(1614,9,1613,'2025-01-28 15:41:28',2,0.00571299,0,'Action completed, no processing required'),
(1615,20,0,'2025-01-28 16:38:25',0,0,0,'Run mode: GLPI'),
(1616,20,1615,'2025-01-28 16:38:25',2,0.014184,0,'Action completed, no processing required'),
(1617,32,0,'2025-01-28 16:39:01',0,0,0,'Run mode: GLPI'),
(1618,32,1617,'2025-01-28 16:39:01',2,0.00773096,0,'Action completed, no processing required'),
(1619,17,0,'2025-01-28 16:39:41',0,0,0,'Run mode: GLPI'),
(1620,17,1619,'2025-01-28 16:39:41',2,0.00566912,0,'Action completed, no processing required'),
(1621,22,0,'2025-01-28 16:45:33',0,0,0,'Run mode: GLPI'),
(1622,22,1621,'2025-01-28 16:45:33',2,0.32534,0,'Action completed, fully processed'),
(1623,21,0,'2025-01-28 16:57:00',0,0,0,'Run mode: GLPI'),
(1624,21,1623,'2025-01-28 16:57:00',2,0.0160229,0,'Action completed, no processing required'),
(1625,9,0,'2025-01-28 17:01:31',0,0,0,'Run mode: GLPI'),
(1626,9,1625,'2025-01-28 17:01:31',2,0.00754213,0,'Action completed, no processing required'),
(1627,24,0,'2025-01-28 17:55:29',0,0,0,'Run mode: GLPI'),
(1628,24,1627,'2025-01-28 17:55:29',2,0.018635,0,'Action completed, no processing required'),
(1629,13,0,'2025-01-28 18:13:14',0,0,0,'Run mode: GLPI'),
(1630,13,1629,'2025-01-28 18:13:14',2,0.00723481,0,'Action completed, no processing required'),
(1631,14,0,'2025-01-28 18:16:37',0,0,0,'Run mode: GLPI'),
(1632,14,1631,'2025-01-28 18:16:37',2,0.00685716,0,'Action completed, no processing required'),
(1633,17,0,'2025-01-28 18:24:18',0,0,0,'Run mode: GLPI'),
(1634,17,1633,'2025-01-28 18:24:18',2,0.00915098,0,'Action completed, no processing required'),
(1635,32,0,'2025-01-28 18:29:02',0,0,0,'Run mode: GLPI'),
(1636,32,1635,'2025-01-28 18:29:02',2,0.00722909,0,'Action completed, no processing required'),
(1637,22,0,'2025-01-28 18:32:33',0,0,0,'Run mode: GLPI'),
(1638,22,1637,'2025-01-28 18:32:33',2,0.384233,0,'Action completed, fully processed'),
(1639,21,0,'2025-01-28 18:38:06',0,0,0,'Run mode: GLPI'),
(1640,21,1639,'2025-01-28 18:38:06',2,0.00639892,0,'Action completed, no processing required'),
(1641,9,0,'2025-01-28 18:45:59',0,0,0,'Run mode: GLPI'),
(1642,9,1641,'2025-01-28 18:45:59',2,0.00791311,0,'Action completed, no processing required'),
(1643,20,0,'2025-01-28 18:53:53',0,0,0,'Run mode: GLPI'),
(1644,20,1643,'2025-01-28 18:53:53',2,0.0175638,0,'Action completed, no processing required'),
(1645,23,0,'2025-01-28 19:26:10',0,0,0,'Run mode: GLPI'),
(1646,23,1645,'2025-01-28 19:26:10',2,0.00857806,0,'Action completed, no processing required'),
(1647,17,0,'2025-01-28 19:26:26',0,0,0,'Run mode: GLPI'),
(1648,17,1647,'2025-01-28 19:26:26',2,0.00881982,0,'Action completed, no processing required'),
(1649,25,0,'2025-01-28 19:52:29',0,0,0,'Run mode: GLPI'),
(1650,25,1649,'2025-01-28 19:52:29',2,0.020093,0,'Action completed, no processing required'),
(1651,22,0,'2025-01-28 19:57:31',0,0,0,'Run mode: GLPI'),
(1652,22,1651,'2025-01-28 19:57:31',2,0.301484,0,'Action completed, fully processed'),
(1653,31,0,'2025-01-28 20:04:09',0,0,0,'Run mode: GLPI'),
(1654,31,1653,'2025-01-28 20:04:09',2,0.00635195,0,'Action completed, no processing required'),
(1655,32,0,'2025-01-28 20:17:23',0,0,0,'Run mode: GLPI'),
(1656,32,1655,'2025-01-28 20:17:23',2,0.00807619,0,'Action completed, no processing required'),
(1657,5,0,'2025-01-28 20:24:17',0,0,0,'Run mode: GLPI'),
(1658,5,1657,'2025-01-28 20:24:17',2,0.00869989,0,'Action completed, no processing required'),
(1659,6,0,'2025-01-28 21:15:41',0,0,0,'Run mode: GLPI'),
(1660,6,1659,'2025-01-28 21:15:41',2,0.0287521,0,'Action completed, no processing required'),
(1661,12,0,'2025-01-29 01:27:44',0,0,0,'Run mode: GLPI'),
(1662,12,1661,'2025-01-29 01:27:44',1,0.811385,22279,'Limpar 22279 arquivos de sessão criados a mais de 1440 segundos\n'),
(1663,12,1661,'2025-01-29 01:27:44',2,0.819532,22279,'Action completed, fully processed'),
(1664,21,0,'2025-01-29 02:48:46',0,0,0,'Run mode: GLPI'),
(1665,21,1664,'2025-01-29 02:48:46',2,0.036299,0,'Action completed, no processing required'),
(1666,9,0,'2025-01-29 02:54:17',0,0,0,'Run mode: GLPI'),
(1667,9,1666,'2025-01-29 02:54:17',2,0.0161052,0,'Action completed, no processing required'),
(1668,24,0,'2025-01-29 02:55:39',0,0,0,'Run mode: GLPI'),
(1669,24,1668,'2025-01-29 02:55:39',2,0.0118182,0,'Action completed, no processing required'),
(1670,13,0,'2025-01-29 02:55:42',0,0,0,'Run mode: GLPI'),
(1671,13,1670,'2025-01-29 02:55:42',2,0.0172079,0,'Action completed, no processing required'),
(1672,14,0,'2025-01-29 02:56:29',0,0,0,'Run mode: GLPI'),
(1673,14,1672,'2025-01-29 02:56:29',2,0.00820994,0,'Action completed, no processing required'),
(1674,17,0,'2025-01-29 02:56:47',0,0,0,'Run mode: GLPI'),
(1675,17,1674,'2025-01-29 02:56:47',2,0.016763,0,'Action completed, no processing required'),
(1676,18,0,'2025-01-29 02:59:40',0,0,0,'Run mode: GLPI'),
(1677,18,1676,'2025-01-29 02:59:40',2,0.00962806,0,'Action completed, no processing required'),
(1678,20,0,'2025-01-29 03:01:46',0,0,0,'Run mode: GLPI'),
(1679,20,1678,'2025-01-29 03:01:46',2,0.0133731,0,'Action completed, no processing required'),
(1680,22,0,'2025-01-29 03:02:22',0,0,0,'Run mode: GLPI'),
(1681,22,1680,'2025-01-29 03:02:22',2,0.462335,0,'Action completed, fully processed'),
(1682,32,0,'2025-01-29 03:04:52',0,0,0,'Run mode: GLPI'),
(1683,32,1682,'2025-01-29 03:04:52',2,0.0126269,0,'Action completed, no processing required'),
(1684,19,0,'2025-01-29 03:05:25',0,0,0,'Run mode: GLPI'),
(1685,19,1684,'2025-01-29 03:05:25',2,0.0121679,0,'Action completed, fully processed'),
(1686,15,0,'2025-01-29 03:07:25',0,0,0,'Run mode: GLPI'),
(1687,15,1686,'2025-01-29 03:07:25',2,0.010922,0,'Action completed, no processing required'),
(1688,16,0,'2025-01-29 03:08:23',0,0,0,'Run mode: GLPI'),
(1689,16,1688,'2025-01-29 03:08:23',2,0.00792003,0,'Action completed, no processing required'),
(1690,21,0,'2025-01-29 03:10:22',0,0,0,'Run mode: GLPI'),
(1691,21,1690,'2025-01-29 03:10:22',2,0.0109689,0,'Action completed, no processing required'),
(1692,17,0,'2025-01-29 03:10:52',0,0,0,'Run mode: GLPI'),
(1693,17,1692,'2025-01-29 03:10:52',2,0.00644994,0,'Action completed, no processing required'),
(1694,22,0,'2025-01-29 03:12:27',0,0,0,'Run mode: GLPI'),
(1695,22,1694,'2025-01-29 03:12:27',2,0.325202,0,'Action completed, fully processed'),
(1696,9,0,'2025-01-29 03:16:02',0,0,0,'Run mode: GLPI'),
(1697,9,1696,'2025-01-29 03:16:02',2,0.0055809,0,'Action completed, no processing required'),
(1698,32,0,'2025-01-29 03:17:20',0,0,0,'Run mode: GLPI'),
(1699,32,1698,'2025-01-29 03:17:20',2,0.00749278,0,'Action completed, no processing required'),
(1700,22,0,'2025-01-29 03:21:08',0,0,0,'Run mode: GLPI'),
(1701,22,1700,'2025-01-29 03:21:08',2,0.319837,0,'Action completed, fully processed'),
(1702,17,0,'2025-01-29 03:29:09',0,0,0,'Run mode: GLPI'),
(1703,17,1702,'2025-01-29 03:29:09',2,0.00802112,0,'Action completed, no processing required'),
(1704,21,0,'2025-01-29 11:28:19',0,0,0,'Run mode: GLPI'),
(1705,21,1704,'2025-01-29 11:28:19',2,0.0469239,0,'Action completed, no processing required'),
(1706,22,0,'2025-01-29 11:43:06',0,0,0,'Run mode: GLPI'),
(1707,22,1706,'2025-01-29 11:43:06',2,0.771848,0,'Action completed, fully processed'),
(1708,32,0,'2025-01-29 11:50:04',0,0,0,'Run mode: GLPI'),
(1709,32,1708,'2025-01-29 11:50:04',2,0.0242751,0,'Action completed, no processing required'),
(1710,9,0,'2025-01-29 11:53:14',0,0,0,'Run mode: GLPI'),
(1711,9,1710,'2025-01-29 11:53:14',2,0.016058,0,'Action completed, no processing required'),
(1712,17,0,'2025-01-29 11:56:48',0,0,0,'Run mode: GLPI'),
(1713,17,1712,'2025-01-29 11:56:48',2,0.019309,0,'Action completed, no processing required'),
(1714,13,0,'2025-01-29 12:01:10',0,0,0,'Run mode: GLPI'),
(1715,13,1714,'2025-01-29 12:01:10',2,0.0129049,0,'Action completed, no processing required'),
(1716,24,0,'2025-01-29 12:06:21',0,0,0,'Run mode: GLPI'),
(1717,24,1716,'2025-01-29 12:06:21',2,0.010931,0,'Action completed, no processing required'),
(1718,14,0,'2025-01-29 12:07:46',0,0,0,'Run mode: GLPI'),
(1719,14,1718,'2025-01-29 12:07:46',2,0.0236301,0,'Action completed, no processing required'),
(1720,20,0,'2025-01-29 12:26:53',0,0,0,'Run mode: GLPI'),
(1721,20,1720,'2025-01-29 12:26:53',2,0.0150201,0,'Action completed, no processing required'),
(1722,21,0,'2025-01-29 12:49:16',0,0,0,'Run mode: GLPI'),
(1723,21,1722,'2025-01-29 12:49:16',2,0.00686312,0,'Action completed, no processing required'),
(1724,22,0,'2025-01-29 14:46:22',0,0,0,'Run mode: GLPI'),
(1725,22,1724,'2025-01-29 14:46:22',2,1.08144,0,'Action completed, fully processed'),
(1726,32,0,'2025-01-29 17:34:30',0,0,0,'Run mode: GLPI'),
(1727,32,1726,'2025-01-29 17:34:30',2,0.042994,0,'Action completed, no processing required'),
(1728,17,0,'2025-01-29 19:23:05',0,0,0,'Run mode: GLPI'),
(1729,17,1728,'2025-01-29 19:23:05',2,0.034276,0,'Action completed, no processing required'),
(1730,9,0,'2025-01-30 00:52:02',0,0,0,'Run mode: GLPI'),
(1731,9,1730,'2025-01-30 00:52:02',2,0.07269,0,'Action completed, no processing required'),
(1732,21,0,'2025-01-30 11:20:42',0,0,0,'Run mode: GLPI'),
(1733,21,1732,'2025-01-30 11:20:42',2,0.0341411,0,'Action completed, no processing required'),
(1734,13,0,'2025-01-30 11:23:50',0,0,0,'Run mode: GLPI'),
(1735,13,1734,'2025-01-30 11:23:50',2,0.0113571,0,'Action completed, no processing required'),
(1736,24,0,'2025-01-30 11:40:06',0,0,0,'Run mode: GLPI'),
(1737,24,1736,'2025-01-30 11:40:06',2,0.009758,0,'Action completed, no processing required'),
(1738,14,0,'2025-01-30 11:46:00',0,0,0,'Run mode: GLPI'),
(1739,14,1738,'2025-01-30 11:46:00',2,0.00717592,0,'Action completed, no processing required'),
(1740,20,0,'2025-01-30 11:51:02',0,0,0,'Run mode: GLPI'),
(1741,20,1740,'2025-01-30 11:51:02',2,0.0144689,0,'Action completed, no processing required'),
(1742,22,0,'2025-01-30 12:02:57',0,0,0,'Run mode: GLPI'),
(1743,22,1742,'2025-01-30 12:02:57',2,0.498718,0,'Action completed, fully processed'),
(1744,15,0,'2025-01-30 12:13:18',0,0,0,'Run mode: GLPI'),
(1745,15,1744,'2025-01-30 12:13:18',2,0.011302,0,'Action completed, no processing required'),
(1746,16,0,'2025-01-30 12:33:03',0,0,0,'Run mode: GLPI'),
(1747,16,1746,'2025-01-30 12:33:03',2,0.0148818,0,'Action completed, no processing required'),
(1748,32,0,'2025-01-30 12:50:53',0,0,0,'Run mode: GLPI'),
(1749,32,1748,'2025-01-30 12:50:53',2,0.0123589,0,'Action completed, no processing required'),
(1750,23,0,'2025-01-30 13:41:19',0,0,0,'Run mode: GLPI'),
(1751,23,1750,'2025-01-30 13:41:19',2,0.0388079,0,'Action completed, no processing required'),
(1752,17,0,'2025-01-30 15:27:31',0,0,0,'Run mode: GLPI'),
(1753,17,1752,'2025-01-30 15:27:31',2,0.0353339,0,'Action completed, no processing required'),
(1754,25,0,'2025-01-30 15:35:06',0,0,0,'Run mode: GLPI'),
(1755,25,1754,'2025-01-30 15:35:06',2,0.00798702,0,'Action completed, no processing required'),
(1756,31,0,'2025-01-30 15:41:35',0,0,0,'Run mode: GLPI'),
(1757,31,1756,'2025-01-30 15:41:35',2,0.00778794,0,'Action completed, no processing required'),
(1758,5,0,'2025-01-30 15:48:46',0,0,0,'Run mode: GLPI'),
(1759,5,1758,'2025-01-30 15:48:46',2,0.011106,0,'Action completed, no processing required'),
(1760,6,0,'2025-01-30 15:49:44',0,0,0,'Run mode: GLPI'),
(1761,6,1760,'2025-01-30 15:49:44',2,0.013716,0,'Action completed, no processing required'),
(1762,9,0,'2025-01-30 15:53:48',0,0,0,'Run mode: GLPI'),
(1763,9,1762,'2025-01-30 15:53:48',2,0.008816,0,'Action completed, no processing required'),
(1764,12,0,'2025-01-30 16:13:50',0,0,0,'Run mode: GLPI'),
(1765,12,1764,'2025-01-30 16:13:50',1,1.05978,28013,'Limpar 28013 arquivos de sessão criados a mais de 1440 segundos\n'),
(1766,12,1764,'2025-01-30 16:13:50',2,1.11835,28013,'Action completed, fully processed'),
(1767,18,0,'2025-01-30 16:45:52',0,0,0,'Run mode: GLPI'),
(1768,18,1767,'2025-01-30 16:45:52',2,0.0114059,0,'Action completed, no processing required'),
(1769,19,0,'2025-01-30 17:33:21',0,0,0,'Run mode: GLPI'),
(1770,19,1769,'2025-01-30 17:33:21',2,0.011405,0,'Action completed, fully processed'),
(1771,21,0,'2025-01-30 17:52:20',0,0,0,'Run mode: GLPI'),
(1772,21,1771,'2025-01-30 17:52:20',2,0.0216048,0,'Action completed, no processing required'),
(1773,22,0,'2025-01-30 17:55:50',0,0,0,'Run mode: GLPI'),
(1774,22,1773,'2025-01-30 17:55:50',2,0.566354,0,'Action completed, fully processed'),
(1775,13,0,'2025-01-30 18:05:37',0,0,0,'Run mode: GLPI'),
(1776,13,1775,'2025-01-30 18:05:37',2,0.0101862,0,'Action completed, no processing required'),
(1777,24,0,'2025-01-30 18:37:25',0,0,0,'Run mode: GLPI'),
(1778,24,1777,'2025-01-30 18:37:25',1,0.00703502,3,'Limpar 3 arquivos temporários criados a mais de 3600 segundos\n'),
(1779,24,1777,'2025-01-30 18:37:25',2,0.012759,3,'Action completed, fully processed'),
(1780,14,0,'2025-01-30 18:48:31',0,0,0,'Run mode: GLPI'),
(1781,14,1780,'2025-01-30 18:48:31',2,0.00839281,0,'Action completed, no processing required'),
(1782,20,0,'2025-01-30 18:48:52',0,0,0,'Run mode: GLPI'),
(1783,20,1782,'2025-01-30 18:48:52',2,0.0138931,0,'Action completed, no processing required'),
(1784,32,0,'2025-01-30 18:49:03',0,0,0,'Run mode: GLPI'),
(1785,32,1784,'2025-01-30 18:49:03',2,0.00890493,0,'Action completed, no processing required'),
(1786,17,0,'2025-01-30 18:51:08',0,0,0,'Run mode: GLPI'),
(1787,17,1786,'2025-01-30 18:51:08',2,0.00974894,0,'Action completed, no processing required'),
(1788,9,0,'2025-01-30 18:58:10',0,0,0,'Run mode: GLPI'),
(1789,9,1788,'2025-01-30 18:58:10',2,0.00875306,0,'Action completed, no processing required'),
(1790,22,0,'2025-01-30 19:11:59',0,0,0,'Run mode: GLPI'),
(1791,22,1790,'2025-01-30 19:11:59',2,0.307716,0,'Action completed, fully processed'),
(1792,21,0,'2025-01-30 19:17:00',0,0,0,'Run mode: GLPI'),
(1793,21,1792,'2025-01-30 19:17:00',2,0.00787711,0,'Action completed, no processing required'),
(1794,32,0,'2025-01-30 19:23:55',0,0,0,'Run mode: GLPI'),
(1795,32,1794,'2025-01-30 19:23:55',2,0.00976181,0,'Action completed, no processing required'),
(1796,17,0,'2025-01-30 19:28:24',0,0,0,'Run mode: GLPI'),
(1797,17,1796,'2025-01-30 19:28:24',2,0.00651598,0,'Action completed, no processing required'),
(1798,13,0,'2025-01-30 20:02:12',0,0,0,'Run mode: GLPI'),
(1799,13,1798,'2025-01-30 20:02:12',2,0.012743,0,'Action completed, no processing required'),
(1800,9,0,'2025-01-30 20:47:21',0,0,0,'Run mode: GLPI'),
(1801,9,1800,'2025-01-30 20:47:21',2,0.00635386,0,'Action completed, no processing required'),
(1802,22,0,'2025-01-31 11:35:01',0,0,0,'Run mode: GLPI'),
(1803,22,1802,'2025-01-31 11:35:01',2,1.1039,0,'Action completed, fully processed'),
(1804,21,0,'2025-01-31 12:50:59',0,0,0,'Run mode: GLPI'),
(1805,21,1804,'2025-01-31 12:50:59',2,0.031311,0,'Action completed, no processing required'),
(1806,32,0,'2025-01-31 13:32:38',0,0,0,'Run mode: GLPI'),
(1807,32,1806,'2025-01-31 13:32:38',2,0.0169222,0,'Action completed, no processing required'),
(1808,17,0,'2025-01-31 14:19:31',0,0,0,'Run mode: GLPI'),
(1809,17,1808,'2025-01-31 14:19:31',2,0.025171,0,'Action completed, no processing required'),
(1810,24,0,'2025-01-31 14:30:20',0,0,0,'Run mode: GLPI'),
(1811,24,1810,'2025-01-31 14:30:20',2,0.00743604,0,'Action completed, no processing required'),
(1812,14,0,'2025-01-31 15:26:33',0,0,0,'Run mode: GLPI'),
(1813,14,1812,'2025-01-31 15:26:33',2,0.0123811,0,'Action completed, no processing required'),
(1814,20,0,'2025-01-31 18:35:12',0,0,0,'Run mode: GLPI'),
(1815,20,1814,'2025-01-31 18:35:12',2,0.030591,0,'Action completed, no processing required'),
(1816,9,0,'2025-01-31 18:52:36',0,0,0,'Run mode: GLPI'),
(1817,9,1816,'2025-01-31 18:52:36',2,0.020602,0,'Action completed, no processing required'),
(1818,13,0,'2025-01-31 19:09:29',0,0,0,'Run mode: GLPI'),
(1819,13,1818,'2025-01-31 19:09:29',2,0.0188489,0,'Action completed, no processing required'),
(1820,15,0,'2025-02-01 05:18:20',0,0,0,'Run mode: GLPI'),
(1821,15,1820,'2025-02-01 05:18:20',2,0.0741601,0,'Action completed, no processing required'),
(1822,16,0,'2025-02-01 05:35:26',0,0,0,'Run mode: GLPI'),
(1823,16,1822,'2025-02-01 05:35:26',2,0.00616002,0,'Action completed, no processing required'),
(1824,22,0,'2025-02-01 13:26:51',0,0,0,'Run mode: GLPI'),
(1825,22,1824,'2025-02-01 13:26:51',2,1.45669,0,'Action completed, fully processed'),
(1826,21,0,'2025-02-03 10:53:44',0,0,0,'Run mode: GLPI'),
(1827,21,1826,'2025-02-03 10:53:44',2,0.08198,0,'Action completed, no processing required'),
(1828,32,0,'2025-02-03 11:03:17',0,0,0,'Run mode: GLPI'),
(1829,32,1828,'2025-02-03 11:03:17',2,0.0200861,0,'Action completed, no processing required'),
(1830,23,0,'2025-02-03 11:17:06',0,0,0,'Run mode: GLPI'),
(1831,23,1830,'2025-02-03 11:17:06',2,0.594441,0,'Action completed, no processing required'),
(1832,17,0,'2025-02-03 11:18:03',0,0,0,'Run mode: GLPI'),
(1833,17,1832,'2025-02-03 11:18:03',2,0.0344272,0,'Action completed, no processing required'),
(1834,24,0,'2025-02-03 11:18:17',0,0,0,'Run mode: GLPI'),
(1835,24,1834,'2025-02-03 11:18:17',2,0.0102401,0,'Action completed, no processing required'),
(1836,25,0,'2025-02-03 11:26:49',0,0,0,'Run mode: GLPI'),
(1837,25,1836,'2025-02-03 11:26:49',2,0.033673,0,'Action completed, no processing required'),
(1838,31,0,'2025-02-03 11:28:10',0,0,0,'Run mode: GLPI'),
(1839,31,1838,'2025-02-03 11:28:10',2,0.022882,0,'Action completed, no processing required'),
(1840,5,0,'2025-02-03 12:01:34',0,0,0,'Run mode: GLPI'),
(1841,5,1840,'2025-02-03 12:01:34',2,0.0147309,0,'Action completed, no processing required'),
(1842,6,0,'2025-02-03 12:31:01',0,0,0,'Run mode: GLPI'),
(1843,6,1842,'2025-02-03 12:31:01',2,0.011579,0,'Action completed, no processing required'),
(1844,12,0,'2025-02-03 13:01:42',0,0,0,'Run mode: GLPI'),
(1845,12,1844,'2025-02-03 13:01:42',1,4.4292,66996,'Limpar 66996 arquivos de sessão criados a mais de 1440 segundos\n'),
(1846,12,1844,'2025-02-03 13:01:42',2,4.43752,66996,'Action completed, fully processed'),
(1847,14,0,'2025-02-03 13:15:57',0,0,0,'Run mode: GLPI'),
(1848,14,1847,'2025-02-03 13:15:57',2,0.012852,0,'Action completed, no processing required'),
(1849,18,0,'2025-02-03 13:21:26',0,0,0,'Run mode: GLPI'),
(1850,18,1849,'2025-02-03 13:21:26',2,0.00953794,0,'Action completed, no processing required'),
(1851,19,0,'2025-02-03 13:28:44',0,0,0,'Run mode: GLPI'),
(1852,19,1851,'2025-02-03 13:28:44',2,0.00891781,0,'Action completed, fully processed'),
(1853,9,0,'2025-02-03 13:49:49',0,0,0,'Run mode: GLPI'),
(1854,9,1853,'2025-02-03 13:49:49',2,0.0129991,0,'Action completed, no processing required'),
(1855,20,0,'2025-02-03 13:51:06',0,0,0,'Run mode: GLPI'),
(1856,20,1855,'2025-02-03 13:51:06',2,0.020251,0,'Action completed, no processing required'),
(1857,13,0,'2025-02-03 15:08:16',0,0,0,'Run mode: GLPI'),
(1858,13,1857,'2025-02-03 15:08:16',2,0.014164,0,'Action completed, no processing required'),
(1859,22,0,'2025-02-03 16:46:20',0,0,0,'Run mode: GLPI'),
(1860,22,1859,'2025-02-03 16:46:20',2,0.645114,0,'Action completed, fully processed'),
(1861,15,0,'2025-02-03 16:53:57',0,0,0,'Run mode: GLPI'),
(1862,15,1861,'2025-02-03 16:53:57',2,0.00850916,0,'Action completed, no processing required'),
(1863,16,0,'2025-02-03 17:07:03',0,0,0,'Run mode: GLPI'),
(1864,16,1863,'2025-02-03 17:07:03',2,0.006881,0,'Action completed, no processing required'),
(1865,21,0,'2025-02-03 17:19:04',0,0,0,'Run mode: GLPI'),
(1866,21,1865,'2025-02-03 17:19:04',2,0.0155201,0,'Action completed, no processing required'),
(1867,32,0,'2025-02-03 17:20:46',0,0,0,'Run mode: GLPI'),
(1868,32,1867,'2025-02-03 17:20:46',2,0.0221739,0,'Action completed, no processing required'),
(1869,17,0,'2025-02-03 17:29:35',0,0,0,'Run mode: GLPI'),
(1870,17,1869,'2025-02-03 17:29:35',2,0.013979,0,'Action completed, no processing required'),
(1871,24,0,'2025-02-03 17:39:37',0,0,0,'Run mode: GLPI'),
(1872,24,1871,'2025-02-03 17:39:37',2,0.00728798,0,'Action completed, no processing required'),
(1873,9,0,'2025-02-03 17:40:54',0,0,0,'Run mode: GLPI'),
(1874,9,1873,'2025-02-03 17:40:54',2,0.00870299,0,'Action completed, no processing required'),
(1875,14,0,'2025-02-03 18:02:01',0,0,0,'Run mode: GLPI'),
(1876,14,1875,'2025-02-03 18:02:01',2,0.00725198,0,'Action completed, no processing required'),
(1877,20,0,'2025-02-03 18:50:26',0,0,0,'Run mode: GLPI'),
(1878,20,1877,'2025-02-03 18:50:26',2,0.00953412,0,'Action completed, no processing required'),
(1879,13,0,'2025-02-03 19:23:08',0,0,0,'Run mode: GLPI'),
(1880,13,1879,'2025-02-03 19:23:08',2,0.0179579,0,'Action completed, no processing required'),
(1881,22,0,'2025-02-03 19:48:03',0,0,0,'Run mode: GLPI'),
(1882,22,1881,'2025-02-03 19:48:03',2,0.395681,0,'Action completed, fully processed'),
(1883,21,0,'2025-02-03 19:53:14',0,0,0,'Run mode: GLPI'),
(1884,21,1883,'2025-02-03 19:53:14',2,0.00989008,0,'Action completed, no processing required'),
(1885,32,0,'2025-02-03 20:26:05',0,0,0,'Run mode: GLPI'),
(1886,32,1885,'2025-02-03 20:26:05',2,0.00892496,0,'Action completed, no processing required'),
(1887,17,0,'2025-02-03 20:45:58',0,0,0,'Run mode: GLPI'),
(1888,17,1887,'2025-02-03 20:45:58',2,0.00627708,0,'Action completed, no processing required'),
(1889,9,0,'2025-02-03 21:00:39',0,0,0,'Run mode: GLPI'),
(1890,9,1889,'2025-02-03 21:00:39',2,0.00736403,0,'Action completed, no processing required'),
(1891,24,0,'2025-02-03 23:32:28',0,0,0,'Run mode: GLPI'),
(1892,24,1891,'2025-02-03 23:32:28',2,0.0540321,0,'Action completed, no processing required'),
(1893,14,0,'2025-02-04 11:21:41',0,0,0,'Run mode: GLPI'),
(1894,14,1893,'2025-02-04 11:21:41',2,0.0335371,0,'Action completed, no processing required'),
(1895,22,0,'2025-02-04 11:36:42',0,0,0,'Run mode: GLPI'),
(1896,22,1895,'2025-02-04 11:36:42',2,0.542875,0,'Action completed, fully processed'),
(1897,20,0,'2025-02-04 11:49:43',0,0,0,'Run mode: GLPI'),
(1898,20,1897,'2025-02-04 11:49:43',2,0.010699,0,'Action completed, no processing required'),
(1899,21,0,'2025-02-04 11:49:56',0,0,0,'Run mode: GLPI'),
(1900,21,1899,'2025-02-04 11:49:56',2,0.0172541,0,'Action completed, no processing required'),
(1901,13,0,'2025-02-04 13:32:28',0,0,0,'Run mode: GLPI'),
(1902,13,1901,'2025-02-04 13:32:28',2,0.0086391,0,'Action completed, no processing required'),
(1903,32,0,'2025-02-04 14:26:52',0,0,0,'Run mode: GLPI'),
(1904,32,1903,'2025-02-04 14:26:52',2,0.0113029,0,'Action completed, no processing required'),
(1905,17,0,'2025-02-04 16:37:37',0,0,0,'Run mode: GLPI'),
(1906,17,1905,'2025-02-04 16:37:37',2,0.0205021,0,'Action completed, no processing required'),
(1907,9,0,'2025-02-04 18:35:34',0,0,0,'Run mode: GLPI'),
(1908,9,1907,'2025-02-04 18:35:34',2,0.0190332,0,'Action completed, no processing required'),
(1909,24,0,'2025-02-04 18:36:00',0,0,0,'Run mode: GLPI'),
(1910,24,1909,'2025-02-04 18:36:00',2,0.00781989,0,'Action completed, no processing required'),
(1911,15,0,'2025-02-04 18:40:34',0,0,0,'Run mode: GLPI'),
(1912,15,1911,'2025-02-04 18:40:34',2,0.0207911,0,'Action completed, no processing required'),
(1913,16,0,'2025-02-04 18:41:05',0,0,0,'Run mode: GLPI'),
(1914,16,1913,'2025-02-04 18:41:05',2,0.0107791,0,'Action completed, no processing required'),
(1915,23,0,'2025-02-04 19:15:52',0,0,0,'Run mode: GLPI'),
(1916,23,1915,'2025-02-04 19:15:52',2,0.214525,0,'Action completed, no processing required'),
(1917,25,0,'2025-02-05 11:59:46',0,0,0,'Run mode: GLPI'),
(1918,25,1917,'2025-02-05 11:59:46',2,0.0691142,0,'Action completed, no processing required'),
(1919,31,0,'2025-02-05 12:34:50',0,0,0,'Run mode: GLPI'),
(1920,31,1919,'2025-02-05 12:34:50',2,0.01474,0,'Action completed, no processing required'),
(1921,22,0,'2025-02-05 12:48:08',0,0,0,'Run mode: GLPI'),
(1922,22,1921,'2025-02-05 12:48:08',2,0.959089,0,'Action completed, fully processed'),
(1923,21,0,'2025-02-05 12:54:44',0,0,0,'Run mode: GLPI'),
(1924,21,1923,'2025-02-05 12:54:44',2,0.0180001,0,'Action completed, no processing required'),
(1925,5,0,'2025-02-05 20:13:03',0,0,0,'Run mode: GLPI'),
(1926,5,1925,'2025-02-05 20:13:03',2,0.0656519,0,'Action completed, no processing required'),
(1927,14,0,'2025-02-05 20:34:25',0,0,0,'Run mode: GLPI'),
(1928,14,1927,'2025-02-05 20:34:25',2,0.0113521,0,'Action completed, no processing required'),
(1929,6,0,'2025-02-06 11:50:22',0,0,0,'Run mode: GLPI'),
(1930,6,1929,'2025-02-06 11:50:22',2,0.0473099,0,'Action completed, no processing required'),
(1931,20,0,'2025-02-06 16:39:20',0,0,0,'Run mode: GLPI'),
(1932,20,1931,'2025-02-06 16:39:20',2,0.0295739,0,'Action completed, no processing required'),
(1933,12,0,'2025-02-06 17:50:39',0,0,0,'Run mode: GLPI'),
(1934,12,1933,'2025-02-06 17:50:39',1,3.01167,55465,'Limpar 55465 arquivos de sessão criados a mais de 1440 segundos\n'),
(1935,12,1933,'2025-02-06 17:50:39',2,3.16133,55465,'Action completed, fully processed'),
(1936,18,0,'2025-02-06 19:15:41',0,0,0,'Run mode: GLPI'),
(1937,18,1936,'2025-02-06 19:15:41',2,0.0118921,0,'Action completed, no processing required'),
(1938,19,0,'2025-02-06 21:02:50',0,0,0,'Run mode: GLPI'),
(1939,19,1938,'2025-02-06 21:02:50',2,0.0234461,0,'Action completed, fully processed'),
(1940,32,0,'2025-02-07 14:12:55',0,0,0,'Run mode: GLPI'),
(1941,32,1940,'2025-02-07 14:12:55',2,0.0239182,0,'Action completed, no processing required'),
(1942,13,0,'2025-02-09 00:39:58',0,0,0,'Run mode: GLPI'),
(1943,13,1942,'2025-02-09 00:39:58',2,0.169211,0,'Action completed, no processing required'),
(1944,17,0,'2025-02-09 03:57:45',0,0,0,'Run mode: GLPI'),
(1945,17,1944,'2025-02-09 03:57:45',2,0.0697548,0,'Action completed, no processing required'),
(1946,9,0,'2025-02-09 04:03:33',0,0,0,'Run mode: GLPI'),
(1947,9,1946,'2025-02-09 04:03:33',2,0.0280039,0,'Action completed, no processing required'),
(1948,24,0,'2025-02-09 04:09:35',0,0,0,'Run mode: GLPI'),
(1949,24,1948,'2025-02-09 04:09:35',2,0.050525,0,'Action completed, no processing required'),
(1950,15,0,'2025-02-09 16:02:55',0,0,0,'Run mode: GLPI'),
(1951,15,1950,'2025-02-09 16:02:55',2,0.099268,0,'Action completed, no processing required'),
(1952,16,0,'2025-02-09 17:47:42',0,0,0,'Run mode: GLPI'),
(1953,16,1952,'2025-02-09 17:47:42',2,0.00968313,0,'Action completed, no processing required'),
(1954,22,0,'2025-02-10 11:01:51',0,0,0,'Run mode: GLPI'),
(1955,22,1954,'2025-02-10 11:01:51',2,1.20657,0,'Action completed, fully processed'),
(1956,21,0,'2025-02-10 11:16:42',0,0,0,'Run mode: GLPI'),
(1957,21,1956,'2025-02-10 11:16:42',2,0.0207949,0,'Action completed, no processing required'),
(1958,23,0,'2025-02-10 11:18:41',0,0,0,'Run mode: GLPI'),
(1959,23,1958,'2025-02-10 11:18:41',2,0.0258541,1,'Action completed, fully processed'),
(1960,14,0,'2025-02-10 11:30:13',0,0,0,'Run mode: GLPI'),
(1961,14,1960,'2025-02-10 11:30:13',2,0.00777602,0,'Action completed, no processing required'),
(1962,25,0,'2025-02-10 11:37:08',0,0,0,'Run mode: GLPI'),
(1963,25,1962,'2025-02-10 11:37:08',2,0.01197,0,'Action completed, no processing required'),
(1964,31,0,'2025-02-10 11:40:37',0,0,0,'Run mode: GLPI'),
(1965,31,1964,'2025-02-10 11:40:37',2,0.00791597,0,'Action completed, no processing required'),
(1966,20,0,'2025-02-10 11:46:48',0,0,0,'Run mode: GLPI'),
(1967,20,1966,'2025-02-10 11:46:48',2,0.0137188,0,'Action completed, no processing required'),
(1968,5,0,'2025-02-10 11:54:50',0,0,0,'Run mode: GLPI'),
(1969,5,1968,'2025-02-10 11:54:50',2,0.00946593,0,'Action completed, no processing required'),
(1970,6,0,'2025-02-10 12:04:51',0,0,0,'Run mode: GLPI'),
(1971,6,1970,'2025-02-10 12:04:51',2,0.010958,0,'Action completed, no processing required'),
(1972,32,0,'2025-02-10 12:17:55',0,0,0,'Run mode: GLPI'),
(1973,32,1972,'2025-02-10 12:17:55',2,0.00790119,0,'Action completed, no processing required'),
(1974,12,0,'2025-02-10 13:31:07',0,0,0,'Run mode: GLPI'),
(1975,12,1974,'2025-02-10 13:31:07',1,4.99598,66161,'Limpar 66161 arquivos de sessão criados a mais de 1440 segundos\n'),
(1976,12,1974,'2025-02-10 13:31:07',2,5.18647,66161,'Action completed, fully processed'),
(1977,18,0,'2025-02-10 13:49:41',0,0,0,'Run mode: GLPI'),
(1978,18,1977,'2025-02-10 13:49:41',2,0.012346,0,'Action completed, no processing required'),
(1979,19,0,'2025-02-10 15:46:47',0,0,0,'Run mode: GLPI'),
(1980,19,1979,'2025-02-10 15:46:47',2,0.016906,0,'Action completed, fully processed'),
(1981,13,0,'2025-02-10 19:38:12',0,0,0,'Run mode: GLPI'),
(1982,13,1981,'2025-02-10 19:38:12',2,0.00920606,0,'Action completed, no processing required'),
(1983,17,0,'2025-02-11 09:09:30',0,0,0,'Run mode: GLPI'),
(1984,17,1983,'2025-02-11 09:09:30',2,0.322418,0,'Action completed, no processing required'),
(1985,9,0,'2025-02-11 11:32:36',0,0,0,'Run mode: GLPI'),
(1986,9,1985,'2025-02-11 11:32:36',2,0.062326,0,'Action completed, no processing required'),
(1987,24,0,'2025-02-11 11:33:17',0,0,0,'Run mode: GLPI'),
(1988,24,1987,'2025-02-11 11:33:17',2,0.00660586,0,'Action completed, no processing required'),
(1989,15,0,'2025-02-11 12:00:28',0,0,0,'Run mode: GLPI'),
(1990,15,1989,'2025-02-11 12:00:28',2,0.0153601,0,'Action completed, no processing required'),
(1991,16,0,'2025-02-11 12:05:19',0,0,0,'Run mode: GLPI'),
(1992,16,1991,'2025-02-11 12:05:19',2,0.00730395,0,'Action completed, no processing required'),
(1993,22,0,'2025-02-11 12:21:06',0,0,0,'Run mode: GLPI'),
(1994,22,1993,'2025-02-11 12:21:06',2,0.413251,0,'Action completed, fully processed'),
(1995,21,0,'2025-02-11 12:38:12',0,0,0,'Run mode: GLPI'),
(1996,21,1995,'2025-02-11 12:38:12',2,0.012639,0,'Action completed, no processing required'),
(1997,32,0,'2025-02-11 13:03:47',0,0,0,'Run mode: GLPI'),
(1998,32,1997,'2025-02-11 13:03:47',2,0.00830102,0,'Action completed, no processing required'),
(1999,14,0,'2025-02-11 13:06:02',0,0,0,'Run mode: GLPI'),
(2000,14,1999,'2025-02-11 13:06:02',2,0.00906205,0,'Action completed, no processing required'),
(2001,20,0,'2025-02-11 13:13:37',0,0,0,'Run mode: GLPI'),
(2002,20,2001,'2025-02-11 13:13:37',2,0.010112,0,'Action completed, no processing required'),
(2003,13,0,'2025-02-11 15:04:10',0,0,0,'Run mode: GLPI'),
(2004,13,2003,'2025-02-11 15:04:10',2,0.0090661,0,'Action completed, no processing required'),
(2005,17,0,'2025-02-11 15:07:11',0,0,0,'Run mode: GLPI'),
(2006,17,2005,'2025-02-11 15:07:11',2,0.00672889,0,'Action completed, no processing required'),
(2007,23,0,'2025-02-11 15:07:35',0,0,0,'Run mode: GLPI'),
(2008,23,2007,'2025-02-11 15:07:35',2,0.0182898,0,'Action completed, no processing required'),
(2009,25,0,'2025-02-11 22:06:24',0,0,0,'Run mode: GLPI'),
(2010,25,2009,'2025-02-11 22:06:24',2,0.0245981,0,'Action completed, no processing required'),
(2011,31,0,'2025-02-11 22:07:25',0,0,0,'Run mode: GLPI'),
(2012,31,2011,'2025-02-11 22:07:25',2,0.012342,0,'Action completed, no processing required'),
(2013,9,0,'2025-02-11 22:12:08',0,0,0,'Run mode: GLPI'),
(2014,9,2013,'2025-02-11 22:12:08',2,0.0123382,0,'Action completed, no processing required'),
(2015,5,0,'2025-02-12 11:53:15',0,0,0,'Run mode: GLPI'),
(2016,5,2015,'2025-02-12 11:53:15',2,0.270897,0,'Action completed, no processing required'),
(2017,6,0,'2025-02-12 11:53:45',0,0,0,'Run mode: GLPI'),
(2018,6,2017,'2025-02-12 11:53:45',2,0.00847197,0,'Action completed, no processing required'),
(2019,22,0,'2025-02-12 12:06:33',0,0,0,'Run mode: GLPI'),
(2020,22,2019,'2025-02-12 12:06:33',2,0.425066,0,'Action completed, fully processed'),
(2021,24,0,'2025-02-12 12:33:09',0,0,0,'Run mode: GLPI'),
(2022,24,2021,'2025-02-12 12:33:09',1,0.016082,1,'Limpar 1 arquivo temporário criado a mais de 3600 segundos\n'),
(2023,24,2021,'2025-02-12 12:33:09',2,0.0227032,1,'Action completed, fully processed'),
(2024,21,0,'2025-02-12 17:32:12',0,0,0,'Run mode: GLPI'),
(2025,21,2024,'2025-02-12 17:32:12',2,0.036159,0,'Action completed, no processing required'),
(2026,32,0,'2025-02-12 17:41:54',0,0,0,'Run mode: GLPI'),
(2027,32,2026,'2025-02-12 17:41:54',2,0.0135729,0,'Action completed, no processing required'),
(2028,12,0,'2025-02-12 17:50:56',0,0,0,'Run mode: GLPI'),
(2029,12,2028,'2025-02-12 17:50:56',1,1.17994,37819,'Limpar 37819 arquivos de sessão criados a mais de 1440 segundos\n'),
(2030,12,2028,'2025-02-12 17:50:56',2,1.18933,37819,'Action completed, fully processed'),
(2031,18,0,'2025-02-13 11:18:43',0,0,0,'Run mode: GLPI'),
(2032,18,2031,'2025-02-13 11:18:43',2,0.055233,0,'Action completed, no processing required'),
(2033,14,0,'2025-02-13 11:35:14',0,0,0,'Run mode: GLPI'),
(2034,14,2033,'2025-02-13 11:35:14',2,0.0160689,0,'Action completed, no processing required'),
(2035,20,0,'2025-02-13 11:45:01',0,0,0,'Run mode: GLPI'),
(2036,20,2035,'2025-02-13 11:45:01',2,0.0134289,0,'Action completed, no processing required'),
(2037,17,0,'2025-02-13 12:20:20',0,0,0,'Run mode: GLPI'),
(2038,17,2037,'2025-02-13 12:20:20',2,0.00901794,0,'Action completed, no processing required'),
(2039,19,0,'2025-02-13 13:17:05',0,0,0,'Run mode: GLPI'),
(2040,19,2039,'2025-02-13 13:17:05',2,0.0116501,0,'Action completed, fully processed'),
(2041,13,0,'2025-02-13 14:01:05',0,0,0,'Run mode: GLPI'),
(2042,13,2041,'2025-02-13 14:01:05',2,0.00896382,0,'Action completed, no processing required'),
(2043,9,0,'2025-02-13 16:56:27',0,0,0,'Run mode: GLPI'),
(2044,9,2043,'2025-02-13 16:56:27',2,0.02599,0,'Action completed, no processing required'),
(2045,15,0,'2025-02-14 03:20:27',0,0,0,'Run mode: GLPI'),
(2046,15,2045,'2025-02-14 03:20:27',2,0.0741372,0,'Action completed, no processing required'),
(2047,16,0,'2025-02-14 12:14:52',0,0,0,'Run mode: GLPI'),
(2048,16,2047,'2025-02-14 12:14:52',2,0.0312161,0,'Action completed, no processing required'),
(2049,22,0,'2025-02-14 14:35:12',0,0,0,'Run mode: GLPI'),
(2050,22,2049,'2025-02-14 14:35:12',2,0.54498,0,'Action completed, fully processed'),
(2051,24,0,'2025-02-14 14:52:09',0,0,0,'Run mode: GLPI'),
(2052,24,2051,'2025-02-14 14:52:09',2,0.0113389,0,'Action completed, no processing required'),
(2053,23,0,'2025-02-14 16:24:45',0,0,0,'Run mode: GLPI'),
(2054,23,2053,'2025-02-14 16:24:45',2,0.0671492,23,'Action completed, fully processed'),
(2055,21,0,'2025-02-14 16:59:14',0,0,0,'Run mode: GLPI'),
(2056,21,2055,'2025-02-14 16:59:14',2,0.0244741,0,'Action completed, no processing required'),
(2057,32,0,'2025-02-14 17:10:09',0,0,0,'Run mode: GLPI'),
(2058,32,2057,'2025-02-14 17:10:09',2,0.0104849,0,'Action completed, no processing required'),
(2059,25,0,'2025-02-14 18:27:28',0,0,0,'Run mode: GLPI'),
(2060,25,2059,'2025-02-14 18:27:28',2,0.00729609,0,'Action completed, no processing required'),
(2061,31,0,'2025-02-14 18:27:38',0,0,0,'Run mode: GLPI'),
(2062,31,2061,'2025-02-14 18:27:38',2,0.00934196,0,'Action completed, no processing required'),
(2063,5,0,'2025-02-14 18:27:52',0,0,0,'Run mode: GLPI'),
(2064,5,2063,'2025-02-14 18:27:52',2,0.021668,0,'Action completed, no processing required'),
(2065,6,0,'2025-02-14 18:28:09',0,0,0,'Run mode: GLPI'),
(2066,6,2065,'2025-02-14 18:28:09',2,0.0105639,0,'Action completed, no processing required'),
(2067,17,0,'2025-02-14 21:20:47',0,0,0,'Run mode: GLPI'),
(2068,17,2067,'2025-02-14 21:20:47',2,0.019268,0,'Action completed, no processing required'),
(2069,14,0,'2025-02-17 02:57:36',0,0,0,'Run mode: GLPI'),
(2070,14,2069,'2025-02-17 02:57:36',2,0.081811,0,'Action completed, no processing required'),
(2071,20,0,'2025-02-17 11:33:21',0,0,0,'Run mode: GLPI'),
(2072,20,2071,'2025-02-17 11:33:21',2,0.08113,0,'Action completed, no processing required'),
(2073,13,0,'2025-02-17 12:31:52',0,0,0,'Run mode: GLPI'),
(2074,13,2073,'2025-02-17 12:31:52',2,0.00760698,0,'Action completed, no processing required'),
(2075,9,0,'2025-02-17 12:33:45',0,0,0,'Run mode: GLPI'),
(2076,9,2075,'2025-02-17 12:33:45',2,0.020515,0,'Action completed, no processing required'),
(2077,12,0,'2025-02-17 12:40:14',0,0,0,'Run mode: GLPI'),
(2078,12,2077,'2025-02-17 12:40:14',1,9.70826,82884,'Limpar 82884 arquivos de sessão criados a mais de 1440 segundos\n'),
(2079,12,2077,'2025-02-17 12:40:14',2,9.72304,82884,'Action completed, fully processed'),
(2080,18,0,'2025-02-17 13:22:21',0,0,0,'Run mode: GLPI'),
(2081,18,2080,'2025-02-17 13:22:21',2,0.0174711,0,'Action completed, no processing required'),
(2082,19,0,'2025-02-17 13:23:53',0,0,0,'Run mode: GLPI'),
(2083,19,2082,'2025-02-17 13:23:53',2,0.00774789,0,'Action completed, fully processed'),
(2084,22,0,'2025-02-17 13:24:16',0,0,0,'Run mode: GLPI'),
(2085,22,2084,'2025-02-17 13:24:16',2,0.522555,0,'Action completed, fully processed'),
(2086,15,0,'2025-02-17 13:24:28',0,0,0,'Run mode: GLPI'),
(2087,15,2086,'2025-02-17 13:24:28',2,0.011075,0,'Action completed, no processing required'),
(2088,24,0,'2025-02-17 13:52:35',0,0,0,'Run mode: GLPI'),
(2089,24,2088,'2025-02-17 13:52:35',2,0.00868011,0,'Action completed, no processing required'),
(2090,21,0,'2025-02-17 17:43:20',0,0,0,'Run mode: GLPI'),
(2091,21,2090,'2025-02-17 17:43:20',2,0.0252531,0,'Action completed, no processing required'),
(2092,32,0,'2025-02-17 19:18:58',0,0,0,'Run mode: GLPI'),
(2093,32,2092,'2025-02-17 19:18:58',2,0.0181718,0,'Action completed, no processing required'),
(2094,17,0,'2025-02-17 20:31:31',0,0,0,'Run mode: GLPI'),
(2095,17,2094,'2025-02-17 20:31:31',2,0.0132909,0,'Action completed, no processing required'),
(2096,16,0,'2025-02-18 02:16:01',0,0,0,'Run mode: GLPI'),
(2097,16,2096,'2025-02-18 02:16:01',2,0.073391,0,'Action completed, no processing required'),
(2098,23,0,'2025-02-18 10:23:32',0,0,0,'Run mode: GLPI'),
(2099,23,2098,'2025-02-18 10:23:32',2,0.263535,109,'Action completed, fully processed'),
(2100,5,0,'2025-02-18 11:58:32',0,0,0,'Run mode: GLPI'),
(2101,5,2100,'2025-02-18 11:58:32',2,0.0843999,0,'Action completed, no processing required'),
(2102,25,0,'2025-02-18 16:30:51',0,0,0,'Run mode: GLPI'),
(2103,25,2102,'2025-02-18 16:30:51',2,0.0705771,0,'Action completed, no processing required'),
(2104,31,0,'2025-02-18 17:17:24',0,0,0,'Run mode: GLPI'),
(2105,31,2104,'2025-02-18 17:17:24',2,0.0269759,0,'Action completed, no processing required'),
(2106,6,0,'2025-02-18 17:48:03',0,0,0,'Run mode: GLPI'),
(2107,6,2106,'2025-02-18 17:48:03',2,0.015203,0,'Action completed, no processing required'),
(2108,14,0,'2025-02-18 17:48:45',0,0,0,'Run mode: GLPI'),
(2109,14,2108,'2025-02-18 17:48:45',2,0.00737882,0,'Action completed, no processing required'),
(2110,20,0,'2025-02-18 17:56:04',0,0,0,'Run mode: GLPI'),
(2111,20,2110,'2025-02-18 17:56:04',2,0.0196061,0,'Action completed, no processing required'),
(2112,9,0,'2025-02-18 18:10:30',0,0,0,'Run mode: GLPI'),
(2113,9,2112,'2025-02-18 18:10:30',2,0.009938,0,'Action completed, no processing required'),
(2114,22,0,'2025-02-18 18:10:34',0,0,0,'Run mode: GLPI'),
(2115,22,2114,'2025-02-18 18:10:34',2,0.404043,0,'Action completed, fully processed'),
(2116,13,0,'2025-02-18 18:14:36',0,0,0,'Run mode: GLPI'),
(2117,13,2116,'2025-02-18 18:14:36',2,0.010196,0,'Action completed, no processing required'),
(2118,24,0,'2025-02-18 18:16:17',0,0,0,'Run mode: GLPI'),
(2119,24,2118,'2025-02-18 18:16:17',2,0.00965881,0,'Action completed, no processing required'),
(2120,21,0,'2025-02-18 18:16:48',0,0,0,'Run mode: GLPI'),
(2121,21,2120,'2025-02-18 18:16:48',2,0.00900793,0,'Action completed, no processing required'),
(2122,32,0,'2025-02-18 18:22:18',0,0,0,'Run mode: GLPI'),
(2123,32,2122,'2025-02-18 18:22:18',2,0.0131669,0,'Action completed, no processing required'),
(2124,17,0,'2025-02-18 18:28:54',0,0,0,'Run mode: GLPI'),
(2125,17,2124,'2025-02-18 18:28:54',2,0.0152559,0,'Action completed, no processing required'),
(2126,15,0,'2025-02-18 18:30:47',0,0,0,'Run mode: GLPI'),
(2127,15,2126,'2025-02-18 18:30:47',2,0.00778008,0,'Action completed, no processing required'),
(2128,12,0,'2025-02-18 18:31:20',0,0,0,'Run mode: GLPI'),
(2129,12,2128,'2025-02-18 18:31:20',1,0.810483,21559,'Limpar 21559 arquivos de sessão criados a mais de 1440 segundos\n'),
(2130,12,2128,'2025-02-18 18:31:20',2,0.815794,21559,'Action completed, fully processed'),
(2131,18,0,'2025-02-18 18:36:23',0,0,0,'Run mode: GLPI'),
(2132,18,2131,'2025-02-18 18:36:23',2,0.0175531,0,'Action completed, no processing required'),
(2133,19,0,'2025-02-18 18:37:33',0,0,0,'Run mode: GLPI'),
(2134,19,2133,'2025-02-18 18:37:33',2,0.00694609,0,'Action completed, fully processed'),
(2135,16,0,'2025-02-18 18:46:03',0,0,0,'Run mode: GLPI'),
(2136,16,2135,'2025-02-18 18:46:03',2,0.00592494,0,'Action completed, no processing required'),
(2137,22,0,'2025-02-18 18:48:01',0,0,0,'Run mode: GLPI'),
(2138,22,2137,'2025-02-18 18:48:01',2,0.360943,0,'Action completed, fully processed'),
(2139,9,0,'2025-02-18 18:48:25',0,0,0,'Run mode: GLPI'),
(2140,9,2139,'2025-02-18 18:48:25',2,0.00695491,0,'Action completed, no processing required'),
(2141,21,0,'2025-02-18 18:53:06',0,0,0,'Run mode: GLPI'),
(2142,21,2141,'2025-02-18 18:53:06',2,0.0157309,0,'Action completed, no processing required'),
(2143,32,0,'2025-02-18 18:56:56',0,0,0,'Run mode: GLPI'),
(2144,32,2143,'2025-02-18 18:56:56',2,0.00691605,0,'Action completed, no processing required');
/*!40000 ALTER TABLE `glpi_crontasklogs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_crontasks`
--

DROP TABLE IF EXISTS `glpi_crontasks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_crontasks` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `itemtype` varchar(100) NOT NULL,
  `name` varchar(150) NOT NULL COMMENT 'task name',
  `frequency` int(11) NOT NULL COMMENT 'second between launch',
  `param` int(11) DEFAULT NULL COMMENT 'task specify parameter',
  `state` int(11) NOT NULL DEFAULT 1 COMMENT '0:disabled, 1:waiting, 2:running',
  `mode` int(11) NOT NULL DEFAULT 1 COMMENT '1:internal, 2:external',
  `allowmode` int(11) NOT NULL DEFAULT 3 COMMENT '1:internal, 2:external, 3:both',
  `hourmin` int(11) NOT NULL DEFAULT 0,
  `hourmax` int(11) NOT NULL DEFAULT 24,
  `logs_lifetime` int(11) NOT NULL DEFAULT 30 COMMENT 'number of days',
  `lastrun` timestamp NULL DEFAULT NULL COMMENT 'last run date',
  `lastcode` int(11) DEFAULT NULL COMMENT 'last run return code',
  `comment` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`itemtype`,`name`),
  KEY `name` (`name`),
  KEY `mode` (`mode`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB AUTO_INCREMENT=45 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC COMMENT='Task run by internal / external cron.';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_crontasks`
--

LOCK TABLES `glpi_crontasks` WRITE;
/*!40000 ALTER TABLE `glpi_crontasks` DISABLE KEYS */;
INSERT INTO `glpi_crontasks` VALUES
(2,'CartridgeItem','cartridge',86400,10,0,1,3,0,24,30,NULL,NULL,NULL,NULL,NULL),
(3,'ConsumableItem','consumable',86400,10,0,1,3,0,24,30,NULL,NULL,NULL,NULL,NULL),
(4,'SoftwareLicense','software',86400,NULL,0,1,3,0,24,30,NULL,NULL,NULL,NULL,NULL),
(5,'Contract','contract',86400,NULL,1,1,3,0,24,30,'2025-02-18 11:58:00',NULL,NULL,NULL,NULL),
(6,'Infocom','infocom',86400,NULL,1,1,3,0,24,30,'2025-02-18 17:48:00',NULL,NULL,NULL,NULL),
(7,'CronTask','logs',86400,30,0,1,3,0,24,30,NULL,NULL,NULL,NULL,NULL),
(9,'MailCollector','mailgate',600,10,1,1,3,0,24,30,'2025-02-18 18:48:00',NULL,NULL,NULL,NULL),
(10,'DBconnection','checkdbreplicate',300,NULL,0,1,3,0,24,30,NULL,NULL,NULL,NULL,NULL),
(11,'CronTask','checkupdate',604800,NULL,0,1,3,0,24,30,NULL,NULL,NULL,NULL,NULL),
(12,'CronTask','session',86400,NULL,1,1,3,0,24,30,'2025-02-18 18:31:00',NULL,NULL,NULL,NULL),
(13,'CronTask','graph',3600,NULL,1,1,3,0,24,30,'2025-02-18 18:14:00',NULL,NULL,NULL,NULL),
(14,'ReservationItem','reservation',3600,NULL,1,1,3,0,24,30,'2025-02-18 17:48:00',NULL,NULL,NULL,NULL),
(15,'Ticket','closeticket',43200,NULL,1,1,3,0,24,30,'2025-02-18 18:30:00',NULL,NULL,NULL,NULL),
(16,'Ticket','alertnotclosed',43200,NULL,1,1,3,0,24,30,'2025-02-18 18:46:00',NULL,NULL,NULL,NULL),
(17,'SlaLevel_Ticket','slaticket',300,NULL,1,1,3,0,24,30,'2025-02-18 18:28:00',NULL,NULL,NULL,NULL),
(18,'Ticket','createinquest',86400,NULL,1,1,3,0,24,30,'2025-02-18 18:36:00',NULL,NULL,NULL,NULL),
(19,'CronTask','watcher',86400,NULL,1,1,3,0,24,30,'2025-02-18 18:37:00',NULL,NULL,NULL,NULL),
(20,'CommonITILRecurrentCron','RecurrentItems',3600,NULL,1,1,3,0,24,30,'2025-02-18 17:56:00',NULL,NULL,NULL,NULL),
(21,'PlanningRecall','planningrecall',300,NULL,1,1,3,0,24,30,'2025-02-18 18:53:00',NULL,NULL,NULL,NULL),
(22,'QueuedNotification','queuednotification',60,50,1,1,3,0,24,30,'2025-02-18 18:48:00',NULL,NULL,NULL,NULL),
(23,'QueuedNotification','queuednotificationclean',86400,30,1,1,3,0,24,30,'2025-02-18 10:23:00',NULL,NULL,NULL,NULL),
(24,'CronTask','temp',3600,NULL,1,1,3,0,24,30,'2025-02-18 18:16:00',NULL,NULL,NULL,NULL),
(25,'MailCollector','mailgateerror',86400,NULL,1,1,3,0,24,30,'2025-02-18 16:30:00',NULL,NULL,NULL,NULL),
(26,'CronTask','circularlogs',86400,4,0,1,3,0,24,30,NULL,NULL,NULL,NULL,NULL),
(27,'ObjectLock','unlockobject',86400,4,0,1,3,0,24,30,NULL,NULL,NULL,NULL,NULL),
(28,'SavedSearch','countAll',604800,NULL,0,1,3,0,24,30,NULL,NULL,NULL,NULL,NULL),
(29,'SavedSearch_Alert','savedsearchesalerts',86400,NULL,0,1,3,0,24,30,NULL,NULL,NULL,NULL,NULL),
(30,'Telemetry','telemetry',2592000,NULL,0,1,3,0,24,30,NULL,NULL,NULL,NULL,NULL),
(31,'Certificate','certificate',86400,NULL,1,1,3,0,24,30,'2025-02-18 17:17:00',NULL,NULL,NULL,NULL),
(32,'OlaLevel_Ticket','olaticket',300,NULL,1,1,3,0,24,30,'2025-02-18 18:56:00',NULL,NULL,NULL,NULL),
(33,'PurgeLogs','PurgeLogs',604800,24,1,2,3,0,24,30,NULL,NULL,NULL,NULL,NULL),
(34,'Ticket','purgeticket',604800,NULL,0,2,3,0,24,30,NULL,NULL,NULL,NULL,NULL),
(35,'Document','cleanorphans',604800,NULL,0,2,3,0,24,30,NULL,NULL,NULL,NULL,NULL),
(36,'User','passwordexpiration',86400,100,0,2,3,0,24,30,NULL,NULL,NULL,NULL,NULL),
(37,'Glpi\\Marketplace\\Controller','checkAllUpdates',86400,NULL,1,2,3,0,24,30,NULL,NULL,NULL,NULL,NULL),
(38,'CleanSoftwareCron','cleansoftware',2592000,1000,0,2,3,0,24,300,NULL,NULL,NULL,NULL,NULL),
(39,'Domain','DomainsAlert',86400,NULL,1,2,3,0,24,30,NULL,NULL,NULL,NULL,NULL),
(40,'Glpi\\Inventory\\Inventory','cleantemp',86400,NULL,0,2,3,0,24,30,NULL,NULL,NULL,NULL,NULL),
(41,'Glpi\\Inventory\\Inventory','cleanorphans',604800,NULL,1,2,3,0,24,30,NULL,NULL,NULL,NULL,NULL),
(42,'PendingReasonCron','pendingreason_autobump_autosolve',1800,NULL,1,2,3,0,24,60,NULL,NULL,NULL,NULL,NULL),
(43,'Agent','Cleanoldagents',86400,NULL,1,2,3,0,24,30,NULL,NULL,NULL,NULL,NULL),
(44,'PluginFormcreatorIssue','SyncIssues',3600,NULL,0,2,3,0,24,30,NULL,NULL,'Formcreator - Sincronizar problemas do catálogo de serviços','2025-01-10 21:20:07','2025-01-10 21:20:07');
/*!40000 ALTER TABLE `glpi_crontasks` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_dashboards_dashboards`
--

DROP TABLE IF EXISTS `glpi_dashboards_dashboards`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_dashboards_dashboards` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `key` varchar(100) NOT NULL,
  `name` varchar(100) NOT NULL,
  `context` varchar(100) NOT NULL DEFAULT 'core',
  `users_id` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  UNIQUE KEY `key` (`key`),
  KEY `name` (`name`),
  KEY `users_id` (`users_id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_dashboards_dashboards`
--

LOCK TABLES `glpi_dashboards_dashboards` WRITE;
/*!40000 ALTER TABLE `glpi_dashboards_dashboards` DISABLE KEYS */;
INSERT INTO `glpi_dashboards_dashboards` VALUES
(1,'central','Central','core',0),
(2,'assets','Ativos','core',0),
(3,'assistance','Assistência','core',0),
(4,'mini_tickets','Painel de pequenos chamados','mini_core',0),
(5,'plugin_formcreator_issue_counters','Assistance requests counts','mini_core',0);
/*!40000 ALTER TABLE `glpi_dashboards_dashboards` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_dashboards_filters`
--

DROP TABLE IF EXISTS `glpi_dashboards_filters`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_dashboards_filters` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `dashboards_dashboards_id` int(10) unsigned NOT NULL DEFAULT 0,
  `users_id` int(10) unsigned NOT NULL DEFAULT 0,
  `filter` longtext DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `dashboards_dashboards_id` (`dashboards_dashboards_id`),
  KEY `users_id` (`users_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_dashboards_filters`
--

LOCK TABLES `glpi_dashboards_filters` WRITE;
/*!40000 ALTER TABLE `glpi_dashboards_filters` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_dashboards_filters` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_dashboards_items`
--

DROP TABLE IF EXISTS `glpi_dashboards_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_dashboards_items` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `dashboards_dashboards_id` int(10) unsigned NOT NULL,
  `gridstack_id` varchar(255) NOT NULL,
  `card_id` varchar(255) NOT NULL,
  `x` int(11) DEFAULT NULL,
  `y` int(11) DEFAULT NULL,
  `width` int(11) DEFAULT NULL,
  `height` int(11) DEFAULT NULL,
  `card_options` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `dashboards_dashboards_id` (`dashboards_dashboards_id`)
) ENGINE=InnoDB AUTO_INCREMENT=88 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_dashboards_items`
--

LOCK TABLES `glpi_dashboards_items` WRITE;
/*!40000 ALTER TABLE `glpi_dashboards_items` DISABLE KEYS */;
INSERT INTO `glpi_dashboards_items` VALUES
(1,1,'bn_count_Computer_4a315743-151c-40cb-a20b-762250668dac','bn_count_Computer',3,0,3,2,'{\"color\":\"#e69393\",\"widgettype\":\"bigNumber\",\"use_gradient\":\"0\",\"limit\":\"7\"}'),
(2,1,'bn_count_Software_0690f524-e826-47a9-b50a-906451196b83','bn_count_Software',0,0,3,2,'{\"color\":\"#aaddac\",\"widgettype\":\"bigNumber\",\"use_gradient\":\"0\",\"limit\":\"7\"}'),
(3,1,'bn_count_Rack_c6502e0a-5991-46b4-a771-7f355137306b','bn_count_Rack',6,2,3,2,'{\"color\":\"#0e87a0\",\"widgettype\":\"bigNumber\",\"use_gradient\":\"0\",\"limit\":\"7\"}'),
(4,1,'bn_count_SoftwareLicense_e755fd06-283e-4479-ba35-2d548f8f8a90','bn_count_SoftwareLicense',0,2,3,2,'{\"color\":\"#27ab3c\",\"widgettype\":\"bigNumber\",\"use_gradient\":\"0\",\"limit\":\"7\"}'),
(5,1,'bn_count_Monitor_7059b94c-583c-4ba7-b100-d40461165318','bn_count_Monitor',3,2,3,2,'{\"color\":\"#b52d30\",\"widgettype\":\"bigNumber\",\"use_gradient\":\"0\",\"limit\":\"7\"}'),
(6,1,'bn_count_Ticket_a74c0903-3387-4a07-9111-b0938af8f1e7','bn_count_Ticket',14,7,3,2,'{\"color\":\"#ffdc64\",\"widgettype\":\"bigNumber\",\"use_gradient\":\"0\",\"limit\":\"7\"}'),
(7,1,'bn_count_Problem_c1cf5cfb-f626-472e-82a1-49c3e200e746','bn_count_Problem',20,7,3,2,'{\"color\":\"#f08d7b\",\"widgettype\":\"bigNumber\",\"use_gradient\":\"0\",\"limit\":\"7\"}'),
(8,1,'count_Computer_Manufacturer_6129c451-42b5-489d-b693-c362adf32d49','count_Computer_Manufacturer',0,4,5,4,'{\"color\":\"#f8faf9\",\"widgettype\":\"donut\",\"use_gradient\":\"1\",\"limit\":\"5\"}'),
(9,1,'top_ticket_user_requester_c74f52a8-046a-4077-b1a6-c9f840d34b82','top_ticket_user_requester',14,9,6,5,'{\"color\":\"#f9fafb\",\"widgettype\":\"hbar\",\"use_gradient\":\"1\",\"limit\":\"5\"}'),
(10,1,'bn_count_tickets_late_04c47208-d7e5-4aca-9566-d46e68c45c67','bn_count_tickets_late',17,7,3,2,'{\"color\":\"#f8911f\",\"widgettype\":\"bigNumber\",\"use_gradient\":\"0\",\"limit\":\"7\"}'),
(11,1,'ticket_status_2e4e968b-d4e6-4e33-9ce9-a1aaff53dfde','ticket_status',14,0,12,7,'{\"color\":\"#fafafa\",\"widgettype\":\"stackedbars\",\"use_gradient\":\"0\",\"limit\":\"12\"}'),
(12,1,'top_ticket_ITILCategory_37736ba9-d429-4cb3-9058-ef4d111d9269','top_ticket_ITILCategory',20,9,6,5,'{\"color\":\"#fbf9f9\",\"widgettype\":\"hbar\",\"use_gradient\":\"1\",\"limit\":\"5\"}'),
(13,1,'bn_count_Printer_517684b0-b064-49dd-943e-fcb6f915e453','bn_count_Printer',9,2,3,2,'{\"color\":\"#365a8f\",\"widgettype\":\"bigNumber\",\"use_gradient\":\"0\",\"limit\":\"7\"}'),
(14,1,'bn_count_Phone_f70c489f-02c1-46e5-978b-94a95b5038ee','bn_count_Phone',9,0,3,2,'{\"color\":\"#d5e1ec\",\"widgettype\":\"bigNumber\",\"use_gradient\":\"0\",\"limit\":\"7\"}'),
(15,1,'bn_count_Change_ab950dbd-cd25-466d-8dff-7dcaca386564','bn_count_Change',23,7,3,2,'{\"color\":\"#cae3c4\",\"widgettype\":\"bigNumber\",\"use_gradient\":\"0\",\"limit\":\"7\"}'),
(16,1,'bn_count_Group_b84a93f2-a26c-49d7-82a4-5446697cc5b0','bn_count_Group',4,8,4,2,'{\"color\":\"#e0e0e0\",\"widgettype\":\"bigNumber\",\"use_gradient\":\"0\",\"limit\":\"7\"}'),
(17,1,'bn_count_Profile_770b35e8-68e9-4b4f-9e09-5a11058f069f','bn_count_Profile',4,10,4,2,'{\"color\":\"#e0e0e0\",\"widgettype\":\"bigNumber\",\"use_gradient\":\"0\",\"limit\":\"7\"}'),
(18,1,'bn_count_Supplier_36ff9011-e4cf-4d89-b9ab-346b9857d734','bn_count_Supplier',8,8,3,2,'{\"color\":\"#c9c9c9\",\"widgettype\":\"bigNumber\",\"use_gradient\":\"0\",\"limit\":\"7\"}'),
(19,1,'bn_count_KnowbaseItem_a3785a56-bed4-4a30-8387-f251f5365b3b','bn_count_KnowbaseItem',8,10,3,2,'{\"color\":\"#c9c9c9\",\"widgettype\":\"bigNumber\",\"use_gradient\":\"0\",\"limit\":\"7\"}'),
(20,1,'bn_count_Entity_9b82951a-ba52-45cc-a2d3-1d238ec37adf','bn_count_Entity',0,10,4,2,'{\"color\":\"#f9f9f9\",\"widgettype\":\"bigNumber\",\"use_gradient\":\"0\",\"limit\":\"7\"}'),
(21,1,'bn_count_Document_7dc7f4b8-61ff-4147-b994-5541bddd7b66','bn_count_Document',11,8,3,2,'{\"color\":\"#b4b4b4\",\"widgettype\":\"bigNumber\",\"use_gradient\":\"0\",\"limit\":\"7\"}'),
(22,1,'bn_count_Project_4d412ee2-8b79-469b-995f-4c0a05ab849d','bn_count_Project',11,10,3,2,'{\"color\":\"#b3b3b3\",\"widgettype\":\"bigNumber\",\"use_gradient\":\"0\",\"limit\":\"7\"}'),
(23,1,'bn_count_NetworkEquipment_c537e334-d584-43bc-b6de-b4a939143e89','bn_count_NetworkEquipment',6,0,3,2,'{\"color\":\"#bfe7ea\",\"widgettype\":\"bigNumber\",\"use_gradient\":\"0\",\"limit\":\"7\"}'),
(24,1,'bn_count_User_ac0cbe52-3593-43c1-8ecc-0eb115de494d','bn_count_User',0,8,4,2,'{\"color\":\"#fafafa\",\"widgettype\":\"bigNumber\",\"use_gradient\":\"0\",\"limit\":\"7\"}'),
(25,1,'count_Monitor_MonitorModel_5a476ff9-116e-4270-858b-c003c20841a9','count_Monitor_MonitorModel',5,4,5,4,'{\"color\":\"#f5fafa\",\"widgettype\":\"donut\",\"use_gradient\":\"1\",\"limit\":\"5\"}'),
(26,1,'count_NetworkEquipment_State_81f2ae35-b366-4065-ac26-02ea4e3704a6','count_NetworkEquipment_State',10,4,4,4,'{\"color\":\"#f5f3ef\",\"widgettype\":\"donut\",\"use_gradient\":\"1\",\"limit\":\"5\"}'),
(27,2,'bn_count_Computer_34cfbaf9-a471-4852-b48c-0dadea7644de','bn_count_Computer',0,0,4,3,'{\"color\":\"#f3d0d0\",\"widgettype\":\"bigNumber\"}'),
(28,2,'bn_count_Software_60091467-2137-49f4-8834-f6602a482079','bn_count_Software',4,0,4,3,'{\"color\":\"#d1f1a8\",\"widgettype\":\"bigNumber\"}'),
(29,2,'bn_count_Printer_c9a385d4-76a3-4971-ad0e-1470efeafacc','bn_count_Printer',8,3,4,3,'{\"color\":\"#5da8d6\",\"widgettype\":\"bigNumber\"}'),
(30,2,'bn_count_PDU_60053eb6-8dda-4416-9a4b-afd51889bd09','bn_count_PDU',12,3,4,3,'{\"color\":\"#ffb62f\",\"widgettype\":\"bigNumber\"}'),
(31,2,'bn_count_Rack_0fdc196f-20d2-4f63-9ddb-b75c165cc664','bn_count_Rack',12,0,4,3,'{\"color\":\"#f7d79a\",\"widgettype\":\"bigNumber\"}'),
(32,2,'bn_count_Phone_c31fde2d-510a-4482-b17d-2f65b61eae08','bn_count_Phone',16,3,4,3,'{\"color\":\"#a0cec2\",\"widgettype\":\"bigNumber\"}'),
(33,2,'bn_count_Enclosure_c21ce30a-58c3-456a-81ec-3c5f01527a8f','bn_count_Enclosure',16,0,4,3,'{\"color\":\"#d7e8e4\",\"widgettype\":\"bigNumber\"}'),
(34,2,'bn_count_NetworkEquipment_76f1e239-777b-4552-b053-ae5c64190347','bn_count_NetworkEquipment',8,0,4,3,'{\"color\":\"#c8dae4\",\"widgettype\":\"bigNumber\"}'),
(35,2,'bn_count_SoftwareLicense_576e58fe-a386-480f-b405-1c2315b8ab47','bn_count_SoftwareLicense',4,3,4,3,'{\"color\":\"#9bc06b\",\"widgettype\":\"bigNumber\",\"use_gradient\":\"0\",\"limit\":\"7\"}'),
(36,2,'bn_count_Monitor_890e16d3-b121-48c6-9713-d9c239d9a970','bn_count_Monitor',0,3,4,3,'{\"color\":\"#dc6f6f\",\"widgettype\":\"bigNumber\",\"use_gradient\":\"0\",\"limit\":\"7\"}'),
(37,2,'count_Computer_Manufacturer_986e92e8-32e8-4a6f-806f-6f5383acbb3f','count_Computer_Manufacturer',4,6,4,4,'{\"color\":\"#f3f5f1\",\"widgettype\":\"hbar\",\"use_gradient\":\"1\",\"limit\":\"5\"}'),
(38,2,'count_Computer_State_290c5920-9eab-4db8-8753-46108e60f1d8','count_Computer_State',0,6,4,4,'{\"color\":\"#fbf7f7\",\"widgettype\":\"donut\",\"use_gradient\":\"1\",\"limit\":\"5\"}'),
(39,2,'count_Computer_ComputerType_c58f9c7e-22d5-478b-8226-d2a752bcbb09','count_Computer_ComputerType',8,6,4,4,'{\"color\":\"#f5f9fa\",\"widgettype\":\"donut\",\"use_gradient\":\"1\",\"limit\":\"5\"}'),
(40,2,'count_NetworkEquipment_Manufacturer_8132b21c-6f7f-4dc1-af54-bea794cb96e9','count_NetworkEquipment_Manufacturer',12,6,4,4,'{\"color\":\"#fcf8ed\",\"widgettype\":\"hbar\",\"use_gradient\":\"0\",\"limit\":\"5\"}'),
(41,2,'count_Monitor_Manufacturer_43b0c16b-af82-418e-aac1-f32b39705c0d','count_Monitor_Manufacturer',16,6,4,4,'{\"color\":\"#f9fbfb\",\"widgettype\":\"donut\",\"use_gradient\":\"1\",\"limit\":\"5\"}'),
(42,3,'bn_count_Ticket_344e761b-f7e8-4617-8c90-154b266b4d67','bn_count_Ticket',0,0,3,2,'{\"color\":\"#ffdc64\",\"widgettype\":\"bigNumber\",\"use_gradient\":\"0\",\"limit\":\"7\"}'),
(43,3,'bn_count_Problem_bdb4002b-a674-4493-820f-af85bed44d2a','bn_count_Problem',0,4,3,2,'{\"color\":\"#f0967b\",\"widgettype\":\"bigNumber\",\"use_gradient\":\"0\",\"limit\":\"7\"}'),
(44,3,'bn_count_Change_b9b87513-4f40-41e6-8621-f51f9a30fb19','bn_count_Change',0,6,3,2,'{\"color\":\"#cae3c4\",\"widgettype\":\"bigNumber\",\"use_gradient\":\"0\",\"limit\":\"7\"}'),
(45,3,'bn_count_tickets_late_1e9ae481-21b4-4463-a830-dec1b68ec5e7','bn_count_tickets_late',0,2,3,2,'{\"color\":\"#f8911f\",\"widgettype\":\"bigNumber\",\"use_gradient\":\"0\",\"limit\":\"7\"}'),
(46,3,'bn_count_tickets_incoming_336a36d9-67fe-4475-880e-447bd766b8fe','bn_count_tickets_incoming',3,6,3,2,'{\"color\":\"#a0e19d\",\"widgettype\":\"bigNumber\",\"use_gradient\":\"0\",\"limit\":\"7\"}'),
(47,3,'bn_count_tickets_closed_e004bab5-f2b6-4060-a401-a2a8b9885245','bn_count_tickets_closed',9,8,3,2,'{\"color\":\"#515151\",\"widgettype\":\"bigNumber\",\"use_gradient\":\"0\",\"limit\":\"7\"}'),
(48,3,'bn_count_tickets_assigned_7455c855-6df8-4514-a3d9-8b0fce52bd63','bn_count_tickets_assigned',6,6,3,2,'{\"color\":\"#eaf5f7\",\"widgettype\":\"bigNumber\",\"use_gradient\":\"0\",\"limit\":\"7\"}'),
(49,3,'bn_count_tickets_solved_5e9759b3-ee7e-4a14-b68f-1ac024ef55ee','bn_count_tickets_solved',9,6,3,2,'{\"color\":\"#d8d8d8\",\"widgettype\":\"bigNumber\",\"use_gradient\":\"0\",\"limit\":\"7\"}'),
(50,3,'bn_count_tickets_waiting_102b2c2a-6ac6-4d73-ba47-8b09382fe00e','bn_count_tickets_waiting',3,8,3,2,'{\"color\":\"#ffcb7d\",\"widgettype\":\"bigNumber\",\"use_gradient\":\"0\",\"limit\":\"7\"}'),
(51,3,'bn_count_TicketRecurrent_13f79539-61f6-45f7-8dde-045706e652f2','bn_count_TicketRecurrent',0,8,3,2,'{\"color\":\"#fafafa\",\"widgettype\":\"bigNumber\",\"use_gradient\":\"0\",\"limit\":\"7\"}'),
(52,3,'bn_count_tickets_planned_267bf627-9d5e-4b6c-b53d-b8623d793ccf','bn_count_tickets_planned',6,8,3,2,'{\"color\":\"#6298d5\",\"widgettype\":\"bigNumber\",\"use_gradient\":\"0\",\"limit\":\"7\"}'),
(53,3,'top_ticket_ITILCategory_0cba0c84-6c62-4cd8-8564-18614498d8e4','top_ticket_ITILCategory',12,6,4,4,'{\"color\":\"#f1f5ef\",\"widgettype\":\"donut\",\"use_gradient\":\"1\",\"limit\":\"7\"}'),
(54,3,'top_ticket_RequestType_b9e43f34-8e94-4a6e-9023-c5d1e2ce7859','top_ticket_RequestType',16,6,4,4,'{\"color\":\"#f9fafb\",\"widgettype\":\"hbar\",\"use_gradient\":\"1\",\"limit\":\"4\"}'),
(55,3,'top_ticket_Entity_a8e65812-519c-488e-9892-9adbe22fbd5c','top_ticket_Entity',20,6,4,4,'{\"color\":\"#f7f1f0\",\"widgettype\":\"donut\",\"use_gradient\":\"1\",\"limit\":\"7\"}'),
(56,3,'ticket_evolution_76fd4926-ee5e-48db-b6d6-e2947c190c5e','ticket_evolution',3,0,12,6,'{\"color\":\"#f3f7f8\",\"widgettype\":\"areas\",\"use_gradient\":\"0\",\"limit\":\"12\"}'),
(57,3,'ticket_status_5b256a35-b36b-4db5-ba11-ea7c125f126e','ticket_status',15,0,11,6,'{\"color\":\"#f7f3f2\",\"widgettype\":\"stackedbars\",\"use_gradient\":\"0\",\"limit\":\"12\"}'),
(58,4,'bn_count_tickets_closed_ccf7246b-645a-40d2-8206-fa33c769e3f5','bn_count_tickets_closed',24,0,4,2,'{\"color\":\"#fafafa\",\"widgettype\":\"bigNumber\",\"use_gradient\":\"0\",\"limit\":\"7\"}'),
(59,4,'bn_count_Ticket_d5bf3576-5033-40fb-bbdb-292294a7698e','bn_count_Ticket',0,0,4,2,'{\"color\":\"#ffd957\",\"widgettype\":\"bigNumber\",\"use_gradient\":\"0\",\"limit\":\"7\"}'),
(60,4,'bn_count_tickets_incoming_055e813c-b0ce-4687-91ef-559249e8ddd8','bn_count_tickets_incoming',4,0,4,2,'{\"color\":\"#6fd169\",\"widgettype\":\"bigNumber\",\"use_gradient\":\"0\",\"limit\":\"7\"}'),
(61,4,'bn_count_tickets_waiting_793c665b-b620-4b3a-a5a8-cf502defc008','bn_count_tickets_waiting',8,0,4,2,'{\"color\":\"#ffcb7d\",\"widgettype\":\"bigNumber\",\"use_gradient\":\"0\",\"limit\":\"7\"}'),
(62,4,'bn_count_tickets_assigned_d3d2f697-52b4-435e-9030-a760dd649085','bn_count_tickets_assigned',12,0,4,2,'{\"color\":\"#eaf4f7\",\"widgettype\":\"bigNumber\",\"use_gradient\":\"0\",\"limit\":\"7\"}'),
(63,4,'bn_count_tickets_planned_0c7f3569-c23b-4ee3-8e85-279229b23e70','bn_count_tickets_planned',16,0,4,2,'{\"color\":\"#6298d5\",\"widgettype\":\"bigNumber\",\"use_gradient\":\"0\",\"limit\":\"7\"}'),
(64,4,'bn_count_tickets_solved_ae2406cf-e8e8-410b-b355-46e3f5705ee8','bn_count_tickets_solved',20,0,4,2,'{\"color\":\"#d7d7d7\",\"widgettype\":\"bigNumber\",\"use_gradient\":\"0\",\"limit\":\"7\"}'),
(65,5,'plugin_formcreator_all_issues_5f5efad9-f068-48db-bbdc-42f207206f19','plugin_formcreator_all_issues',0,0,4,1,'{\"widgettype\":\"bigNumber\",\"use_gradient\":\"0\",\"point_labels\":\"0\",\"color\":\"#ffd957\"}'),
(66,5,'plugin_formcreator_incoming_issues_e94faa24-85f1-439d-86a3-8e7491b345e6','plugin_formcreator_incoming_issues',4,0,4,1,'{\"widgettype\":\"bigNumber\",\"use_gradient\":\"0\",\"point_labels\":\"0\",\"color\":\"#6fd169\"}'),
(67,5,'plugin_formcreator_assigned_issues_31c0e67c-29de-4f93-bccf-cdf84e3ac969','plugin_formcreator_assigned_issues',8,0,4,1,'{\"widgettype\":\"bigNumber\",\"use_gradient\":\"0\",\"point_labels\":\"0\",\"color\":\"#eaf4f7\"}'),
(68,5,'plugin_formcreator_waiting_issues_94bfd92a-7b4e-4db7-96af-beaa8338f793','plugin_formcreator_waiting_issues',12,0,4,1,'{\"widgettype\":\"bigNumber\",\"use_gradient\":\"0\",\"point_labels\":\"0\",\"color\":\"#ffcb7d\"}'),
(69,5,'plugin_formcreator_validate_issues_391e05c7-611f-4e1b-9b3a-4bc440576898','plugin_formcreator_validate_issues',16,0,4,1,'{\"widgettype\":\"bigNumber\",\"use_gradient\":\"0\",\"point_labels\":\"0\",\"color\":\"#6298d5\"}'),
(70,5,'plugin_formcreator_solved_issues_1a8a2eb7-5113-4609-b805-56198742b6da','plugin_formcreator_solved_issues',20,0,4,1,'{\"widgettype\":\"bigNumber\",\"use_gradient\":\"0\",\"point_labels\":\"0\",\"color\":\"#d7d7d7\"}'),
(71,5,'plugin_formcreator_closed_issues_2c5e0477-87a0-4387-85b0-4de6ff2e2040','plugin_formcreator_closed_issues',24,0,4,1,'{\"widgettype\":\"bigNumber\",\"use_gradient\":\"0\",\"point_labels\":\"0\",\"color\":\"#515151\"}');
/*!40000 ALTER TABLE `glpi_dashboards_items` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_dashboards_rights`
--

DROP TABLE IF EXISTS `glpi_dashboards_rights`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_dashboards_rights` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `dashboards_dashboards_id` int(10) unsigned NOT NULL,
  `itemtype` varchar(100) NOT NULL,
  `items_id` int(10) unsigned NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`dashboards_dashboards_id`,`itemtype`,`items_id`),
  KEY `item` (`itemtype`,`items_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_dashboards_rights`
--

LOCK TABLES `glpi_dashboards_rights` WRITE;
/*!40000 ALTER TABLE `glpi_dashboards_rights` DISABLE KEYS */;
INSERT INTO `glpi_dashboards_rights` VALUES
(1,5,'Profile',1);
/*!40000 ALTER TABLE `glpi_dashboards_rights` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_databaseinstancecategories`
--

DROP TABLE IF EXISTS `glpi_databaseinstancecategories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_databaseinstancecategories` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_databaseinstancecategories`
--

LOCK TABLES `glpi_databaseinstancecategories` WRITE;
/*!40000 ALTER TABLE `glpi_databaseinstancecategories` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_databaseinstancecategories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_databaseinstances`
--

DROP TABLE IF EXISTS `glpi_databaseinstances`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_databaseinstances` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `name` varchar(255) NOT NULL DEFAULT '',
  `version` varchar(255) NOT NULL DEFAULT '',
  `port` varchar(10) NOT NULL DEFAULT '',
  `path` varchar(255) NOT NULL DEFAULT '',
  `size` int(11) NOT NULL DEFAULT 0,
  `databaseinstancetypes_id` int(10) unsigned NOT NULL DEFAULT 0,
  `databaseinstancecategories_id` int(10) unsigned NOT NULL DEFAULT 0,
  `locations_id` int(10) unsigned NOT NULL DEFAULT 0,
  `manufacturers_id` int(10) unsigned NOT NULL DEFAULT 0,
  `users_id_tech` int(10) unsigned NOT NULL DEFAULT 0,
  `groups_id_tech` int(10) unsigned NOT NULL DEFAULT 0,
  `states_id` int(10) unsigned NOT NULL DEFAULT 0,
  `itemtype` varchar(100) NOT NULL DEFAULT '',
  `items_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_onbackup` tinyint(4) NOT NULL DEFAULT 0,
  `is_active` tinyint(4) NOT NULL DEFAULT 0,
  `is_deleted` tinyint(4) NOT NULL DEFAULT 0,
  `is_helpdesk_visible` tinyint(4) NOT NULL DEFAULT 1,
  `is_dynamic` tinyint(4) NOT NULL DEFAULT 0,
  `autoupdatesystems_id` int(10) unsigned NOT NULL DEFAULT 0,
  `date_creation` timestamp NULL DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_lastboot` timestamp NULL DEFAULT NULL,
  `date_lastbackup` timestamp NULL DEFAULT NULL,
  `comment` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `name` (`name`),
  KEY `databaseinstancetypes_id` (`databaseinstancetypes_id`),
  KEY `databaseinstancecategories_id` (`databaseinstancecategories_id`),
  KEY `locations_id` (`locations_id`),
  KEY `manufacturers_id` (`manufacturers_id`),
  KEY `users_id_tech` (`users_id_tech`),
  KEY `groups_id_tech` (`groups_id_tech`),
  KEY `states_id` (`states_id`),
  KEY `item` (`itemtype`,`items_id`),
  KEY `is_active` (`is_active`),
  KEY `is_deleted` (`is_deleted`),
  KEY `date_creation` (`date_creation`),
  KEY `date_mod` (`date_mod`),
  KEY `is_helpdesk_visible` (`is_helpdesk_visible`),
  KEY `is_dynamic` (`is_dynamic`),
  KEY `autoupdatesystems_id` (`autoupdatesystems_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_databaseinstances`
--

LOCK TABLES `glpi_databaseinstances` WRITE;
/*!40000 ALTER TABLE `glpi_databaseinstances` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_databaseinstances` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_databaseinstancetypes`
--

DROP TABLE IF EXISTS `glpi_databaseinstancetypes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_databaseinstancetypes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_databaseinstancetypes`
--

LOCK TABLES `glpi_databaseinstancetypes` WRITE;
/*!40000 ALTER TABLE `glpi_databaseinstancetypes` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_databaseinstancetypes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_databases`
--

DROP TABLE IF EXISTS `glpi_databases`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_databases` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `name` varchar(255) NOT NULL DEFAULT '',
  `size` int(11) NOT NULL DEFAULT 0,
  `databaseinstances_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_onbackup` tinyint(4) NOT NULL DEFAULT 0,
  `is_active` tinyint(4) NOT NULL DEFAULT 0,
  `is_deleted` tinyint(4) NOT NULL DEFAULT 0,
  `is_dynamic` tinyint(4) NOT NULL DEFAULT 0,
  `date_creation` timestamp NULL DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_update` timestamp NULL DEFAULT NULL,
  `date_lastbackup` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `name` (`name`),
  KEY `is_active` (`is_active`),
  KEY `is_deleted` (`is_deleted`),
  KEY `is_dynamic` (`is_dynamic`),
  KEY `date_creation` (`date_creation`),
  KEY `date_mod` (`date_mod`),
  KEY `databaseinstances_id` (`databaseinstances_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_databases`
--

LOCK TABLES `glpi_databases` WRITE;
/*!40000 ALTER TABLE `glpi_databases` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_databases` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_datacenters`
--

DROP TABLE IF EXISTS `glpi_datacenters`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_datacenters` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `locations_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_deleted` tinyint(4) NOT NULL DEFAULT 0,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  `pictures` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `locations_id` (`locations_id`),
  KEY `is_deleted` (`is_deleted`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_datacenters`
--

LOCK TABLES `glpi_datacenters` WRITE;
/*!40000 ALTER TABLE `glpi_datacenters` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_datacenters` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_dcrooms`
--

DROP TABLE IF EXISTS `glpi_dcrooms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_dcrooms` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `locations_id` int(10) unsigned NOT NULL DEFAULT 0,
  `vis_cols` int(11) DEFAULT NULL,
  `vis_rows` int(11) DEFAULT NULL,
  `blueprint` text DEFAULT NULL,
  `datacenters_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_deleted` tinyint(4) NOT NULL DEFAULT 0,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `locations_id` (`locations_id`),
  KEY `datacenters_id` (`datacenters_id`),
  KEY `is_deleted` (`is_deleted`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_dcrooms`
--

LOCK TABLES `glpi_dcrooms` WRITE;
/*!40000 ALTER TABLE `glpi_dcrooms` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_dcrooms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_devicebatteries`
--

DROP TABLE IF EXISTS `glpi_devicebatteries`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_devicebatteries` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `designation` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `manufacturers_id` int(10) unsigned NOT NULL DEFAULT 0,
  `voltage` int(11) DEFAULT NULL,
  `capacity` int(11) DEFAULT NULL,
  `devicebatterytypes_id` int(10) unsigned NOT NULL DEFAULT 0,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `devicebatterymodels_id` int(10) unsigned DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `designation` (`designation`),
  KEY `manufacturers_id` (`manufacturers_id`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`),
  KEY `devicebatterymodels_id` (`devicebatterymodels_id`),
  KEY `devicebatterytypes_id` (`devicebatterytypes_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_devicebatteries`
--

LOCK TABLES `glpi_devicebatteries` WRITE;
/*!40000 ALTER TABLE `glpi_devicebatteries` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_devicebatteries` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_devicebatterymodels`
--

DROP TABLE IF EXISTS `glpi_devicebatterymodels`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_devicebatterymodels` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `product_number` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `product_number` (`product_number`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_devicebatterymodels`
--

LOCK TABLES `glpi_devicebatterymodels` WRITE;
/*!40000 ALTER TABLE `glpi_devicebatterymodels` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_devicebatterymodels` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_devicebatterytypes`
--

DROP TABLE IF EXISTS `glpi_devicebatterytypes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_devicebatterytypes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_devicebatterytypes`
--

LOCK TABLES `glpi_devicebatterytypes` WRITE;
/*!40000 ALTER TABLE `glpi_devicebatterytypes` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_devicebatterytypes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_devicecameramodels`
--

DROP TABLE IF EXISTS `glpi_devicecameramodels`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_devicecameramodels` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `product_number` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `product_number` (`product_number`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_devicecameramodels`
--

LOCK TABLES `glpi_devicecameramodels` WRITE;
/*!40000 ALTER TABLE `glpi_devicecameramodels` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_devicecameramodels` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_devicecameras`
--

DROP TABLE IF EXISTS `glpi_devicecameras`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_devicecameras` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `designation` varchar(255) DEFAULT NULL,
  `flashunit` tinyint(4) NOT NULL DEFAULT 0,
  `lensfacing` varchar(255) DEFAULT NULL,
  `orientation` varchar(255) DEFAULT NULL,
  `focallength` varchar(255) DEFAULT NULL,
  `sensorsize` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `manufacturers_id` int(10) unsigned NOT NULL DEFAULT 0,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `devicecameramodels_id` int(10) unsigned DEFAULT NULL,
  `support` varchar(255) DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `designation` (`designation`),
  KEY `manufacturers_id` (`manufacturers_id`),
  KEY `devicecameramodels_id` (`devicecameramodels_id`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_devicecameras`
--

LOCK TABLES `glpi_devicecameras` WRITE;
/*!40000 ALTER TABLE `glpi_devicecameras` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_devicecameras` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_devicecasemodels`
--

DROP TABLE IF EXISTS `glpi_devicecasemodels`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_devicecasemodels` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `product_number` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `product_number` (`product_number`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_devicecasemodels`
--

LOCK TABLES `glpi_devicecasemodels` WRITE;
/*!40000 ALTER TABLE `glpi_devicecasemodels` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_devicecasemodels` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_devicecases`
--

DROP TABLE IF EXISTS `glpi_devicecases`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_devicecases` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `designation` varchar(255) DEFAULT NULL,
  `devicecasetypes_id` int(10) unsigned NOT NULL DEFAULT 0,
  `comment` text DEFAULT NULL,
  `manufacturers_id` int(10) unsigned NOT NULL DEFAULT 0,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `devicecasemodels_id` int(10) unsigned DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `designation` (`designation`),
  KEY `manufacturers_id` (`manufacturers_id`),
  KEY `devicecasetypes_id` (`devicecasetypes_id`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`),
  KEY `devicecasemodels_id` (`devicecasemodels_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_devicecases`
--

LOCK TABLES `glpi_devicecases` WRITE;
/*!40000 ALTER TABLE `glpi_devicecases` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_devicecases` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_devicecasetypes`
--

DROP TABLE IF EXISTS `glpi_devicecasetypes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_devicecasetypes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_devicecasetypes`
--

LOCK TABLES `glpi_devicecasetypes` WRITE;
/*!40000 ALTER TABLE `glpi_devicecasetypes` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_devicecasetypes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_devicecontrolmodels`
--

DROP TABLE IF EXISTS `glpi_devicecontrolmodels`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_devicecontrolmodels` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `product_number` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `product_number` (`product_number`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_devicecontrolmodels`
--

LOCK TABLES `glpi_devicecontrolmodels` WRITE;
/*!40000 ALTER TABLE `glpi_devicecontrolmodels` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_devicecontrolmodels` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_devicecontrols`
--

DROP TABLE IF EXISTS `glpi_devicecontrols`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_devicecontrols` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `designation` varchar(255) DEFAULT NULL,
  `is_raid` tinyint(4) NOT NULL DEFAULT 0,
  `comment` text DEFAULT NULL,
  `manufacturers_id` int(10) unsigned NOT NULL DEFAULT 0,
  `interfacetypes_id` int(10) unsigned NOT NULL DEFAULT 0,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `devicecontrolmodels_id` int(10) unsigned DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `designation` (`designation`),
  KEY `manufacturers_id` (`manufacturers_id`),
  KEY `interfacetypes_id` (`interfacetypes_id`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`),
  KEY `devicecontrolmodels_id` (`devicecontrolmodels_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_devicecontrols`
--

LOCK TABLES `glpi_devicecontrols` WRITE;
/*!40000 ALTER TABLE `glpi_devicecontrols` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_devicecontrols` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_devicedrivemodels`
--

DROP TABLE IF EXISTS `glpi_devicedrivemodels`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_devicedrivemodels` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `product_number` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `product_number` (`product_number`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_devicedrivemodels`
--

LOCK TABLES `glpi_devicedrivemodels` WRITE;
/*!40000 ALTER TABLE `glpi_devicedrivemodels` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_devicedrivemodels` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_devicedrives`
--

DROP TABLE IF EXISTS `glpi_devicedrives`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_devicedrives` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `designation` varchar(255) DEFAULT NULL,
  `is_writer` tinyint(4) NOT NULL DEFAULT 1,
  `speed` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `manufacturers_id` int(10) unsigned NOT NULL DEFAULT 0,
  `interfacetypes_id` int(10) unsigned NOT NULL DEFAULT 0,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `devicedrivemodels_id` int(10) unsigned DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `designation` (`designation`),
  KEY `manufacturers_id` (`manufacturers_id`),
  KEY `interfacetypes_id` (`interfacetypes_id`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`),
  KEY `devicedrivemodels_id` (`devicedrivemodels_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_devicedrives`
--

LOCK TABLES `glpi_devicedrives` WRITE;
/*!40000 ALTER TABLE `glpi_devicedrives` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_devicedrives` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_devicefirmwaremodels`
--

DROP TABLE IF EXISTS `glpi_devicefirmwaremodels`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_devicefirmwaremodels` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `product_number` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `product_number` (`product_number`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_devicefirmwaremodels`
--

LOCK TABLES `glpi_devicefirmwaremodels` WRITE;
/*!40000 ALTER TABLE `glpi_devicefirmwaremodels` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_devicefirmwaremodels` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_devicefirmwares`
--

DROP TABLE IF EXISTS `glpi_devicefirmwares`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_devicefirmwares` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `designation` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `manufacturers_id` int(10) unsigned NOT NULL DEFAULT 0,
  `date` date DEFAULT NULL,
  `version` varchar(255) DEFAULT NULL,
  `devicefirmwaretypes_id` int(10) unsigned NOT NULL DEFAULT 0,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `devicefirmwaremodels_id` int(10) unsigned DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `designation` (`designation`),
  KEY `manufacturers_id` (`manufacturers_id`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`),
  KEY `devicefirmwaremodels_id` (`devicefirmwaremodels_id`),
  KEY `devicefirmwaretypes_id` (`devicefirmwaretypes_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_devicefirmwares`
--

LOCK TABLES `glpi_devicefirmwares` WRITE;
/*!40000 ALTER TABLE `glpi_devicefirmwares` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_devicefirmwares` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_devicefirmwaretypes`
--

DROP TABLE IF EXISTS `glpi_devicefirmwaretypes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_devicefirmwaretypes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_devicefirmwaretypes`
--

LOCK TABLES `glpi_devicefirmwaretypes` WRITE;
/*!40000 ALTER TABLE `glpi_devicefirmwaretypes` DISABLE KEYS */;
INSERT INTO `glpi_devicefirmwaretypes` VALUES
(1,'BIOS',NULL,NULL,NULL),
(2,'UEFI',NULL,NULL,NULL),
(3,'Firmware',NULL,NULL,NULL);
/*!40000 ALTER TABLE `glpi_devicefirmwaretypes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_devicegenericmodels`
--

DROP TABLE IF EXISTS `glpi_devicegenericmodels`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_devicegenericmodels` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `product_number` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `product_number` (`product_number`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_devicegenericmodels`
--

LOCK TABLES `glpi_devicegenericmodels` WRITE;
/*!40000 ALTER TABLE `glpi_devicegenericmodels` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_devicegenericmodels` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_devicegenerics`
--

DROP TABLE IF EXISTS `glpi_devicegenerics`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_devicegenerics` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `designation` varchar(255) DEFAULT NULL,
  `devicegenerictypes_id` int(10) unsigned NOT NULL DEFAULT 0,
  `comment` text DEFAULT NULL,
  `manufacturers_id` int(10) unsigned NOT NULL DEFAULT 0,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `locations_id` int(10) unsigned NOT NULL DEFAULT 0,
  `states_id` int(10) unsigned NOT NULL DEFAULT 0,
  `devicegenericmodels_id` int(10) unsigned DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `designation` (`designation`),
  KEY `manufacturers_id` (`manufacturers_id`),
  KEY `devicegenerictypes_id` (`devicegenerictypes_id`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `locations_id` (`locations_id`),
  KEY `states_id` (`states_id`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`),
  KEY `devicegenericmodels_id` (`devicegenericmodels_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_devicegenerics`
--

LOCK TABLES `glpi_devicegenerics` WRITE;
/*!40000 ALTER TABLE `glpi_devicegenerics` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_devicegenerics` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_devicegenerictypes`
--

DROP TABLE IF EXISTS `glpi_devicegenerictypes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_devicegenerictypes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_devicegenerictypes`
--

LOCK TABLES `glpi_devicegenerictypes` WRITE;
/*!40000 ALTER TABLE `glpi_devicegenerictypes` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_devicegenerictypes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_devicegraphiccardmodels`
--

DROP TABLE IF EXISTS `glpi_devicegraphiccardmodels`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_devicegraphiccardmodels` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `product_number` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `product_number` (`product_number`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_devicegraphiccardmodels`
--

LOCK TABLES `glpi_devicegraphiccardmodels` WRITE;
/*!40000 ALTER TABLE `glpi_devicegraphiccardmodels` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_devicegraphiccardmodels` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_devicegraphiccards`
--

DROP TABLE IF EXISTS `glpi_devicegraphiccards`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_devicegraphiccards` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `designation` varchar(255) DEFAULT NULL,
  `interfacetypes_id` int(10) unsigned NOT NULL DEFAULT 0,
  `comment` text DEFAULT NULL,
  `manufacturers_id` int(10) unsigned NOT NULL DEFAULT 0,
  `memory_default` int(11) NOT NULL DEFAULT 0,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `devicegraphiccardmodels_id` int(10) unsigned DEFAULT NULL,
  `chipset` varchar(255) DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `designation` (`designation`),
  KEY `manufacturers_id` (`manufacturers_id`),
  KEY `interfacetypes_id` (`interfacetypes_id`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `chipset` (`chipset`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`),
  KEY `devicegraphiccardmodels_id` (`devicegraphiccardmodels_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_devicegraphiccards`
--

LOCK TABLES `glpi_devicegraphiccards` WRITE;
/*!40000 ALTER TABLE `glpi_devicegraphiccards` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_devicegraphiccards` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_deviceharddrivemodels`
--

DROP TABLE IF EXISTS `glpi_deviceharddrivemodels`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_deviceharddrivemodels` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `product_number` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `product_number` (`product_number`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_deviceharddrivemodels`
--

LOCK TABLES `glpi_deviceharddrivemodels` WRITE;
/*!40000 ALTER TABLE `glpi_deviceharddrivemodels` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_deviceharddrivemodels` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_deviceharddrives`
--

DROP TABLE IF EXISTS `glpi_deviceharddrives`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_deviceharddrives` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `designation` varchar(255) DEFAULT NULL,
  `rpm` varchar(255) DEFAULT NULL,
  `interfacetypes_id` int(10) unsigned NOT NULL DEFAULT 0,
  `cache` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `manufacturers_id` int(10) unsigned NOT NULL DEFAULT 0,
  `capacity_default` int(11) NOT NULL DEFAULT 0,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `deviceharddrivemodels_id` int(10) unsigned DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `designation` (`designation`),
  KEY `manufacturers_id` (`manufacturers_id`),
  KEY `interfacetypes_id` (`interfacetypes_id`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`),
  KEY `deviceharddrivemodels_id` (`deviceharddrivemodels_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_deviceharddrives`
--

LOCK TABLES `glpi_deviceharddrives` WRITE;
/*!40000 ALTER TABLE `glpi_deviceharddrives` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_deviceharddrives` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_devicememories`
--

DROP TABLE IF EXISTS `glpi_devicememories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_devicememories` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `designation` varchar(255) DEFAULT NULL,
  `frequence` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `manufacturers_id` int(10) unsigned NOT NULL DEFAULT 0,
  `size_default` int(11) NOT NULL DEFAULT 0,
  `devicememorytypes_id` int(10) unsigned NOT NULL DEFAULT 0,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `devicememorymodels_id` int(10) unsigned DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `designation` (`designation`),
  KEY `manufacturers_id` (`manufacturers_id`),
  KEY `devicememorytypes_id` (`devicememorytypes_id`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`),
  KEY `devicememorymodels_id` (`devicememorymodels_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_devicememories`
--

LOCK TABLES `glpi_devicememories` WRITE;
/*!40000 ALTER TABLE `glpi_devicememories` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_devicememories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_devicememorymodels`
--

DROP TABLE IF EXISTS `glpi_devicememorymodels`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_devicememorymodels` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `product_number` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `product_number` (`product_number`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_devicememorymodels`
--

LOCK TABLES `glpi_devicememorymodels` WRITE;
/*!40000 ALTER TABLE `glpi_devicememorymodels` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_devicememorymodels` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_devicememorytypes`
--

DROP TABLE IF EXISTS `glpi_devicememorytypes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_devicememorytypes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_devicememorytypes`
--

LOCK TABLES `glpi_devicememorytypes` WRITE;
/*!40000 ALTER TABLE `glpi_devicememorytypes` DISABLE KEYS */;
INSERT INTO `glpi_devicememorytypes` VALUES
(1,'EDO',NULL,NULL,NULL),
(2,'DDR',NULL,NULL,NULL),
(3,'SDRAM',NULL,NULL,NULL),
(4,'SDRAM-2',NULL,NULL,NULL);
/*!40000 ALTER TABLE `glpi_devicememorytypes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_devicemotherboardmodels`
--

DROP TABLE IF EXISTS `glpi_devicemotherboardmodels`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_devicemotherboardmodels` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `product_number` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `product_number` (`product_number`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_devicemotherboardmodels`
--

LOCK TABLES `glpi_devicemotherboardmodels` WRITE;
/*!40000 ALTER TABLE `glpi_devicemotherboardmodels` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_devicemotherboardmodels` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_devicemotherboards`
--

DROP TABLE IF EXISTS `glpi_devicemotherboards`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_devicemotherboards` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `designation` varchar(255) DEFAULT NULL,
  `chipset` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `manufacturers_id` int(10) unsigned NOT NULL DEFAULT 0,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `devicemotherboardmodels_id` int(10) unsigned DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `designation` (`designation`),
  KEY `manufacturers_id` (`manufacturers_id`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`),
  KEY `devicemotherboardmodels_id` (`devicemotherboardmodels_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_devicemotherboards`
--

LOCK TABLES `glpi_devicemotherboards` WRITE;
/*!40000 ALTER TABLE `glpi_devicemotherboards` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_devicemotherboards` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_devicenetworkcardmodels`
--

DROP TABLE IF EXISTS `glpi_devicenetworkcardmodels`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_devicenetworkcardmodels` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `product_number` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `product_number` (`product_number`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_devicenetworkcardmodels`
--

LOCK TABLES `glpi_devicenetworkcardmodels` WRITE;
/*!40000 ALTER TABLE `glpi_devicenetworkcardmodels` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_devicenetworkcardmodels` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_devicenetworkcards`
--

DROP TABLE IF EXISTS `glpi_devicenetworkcards`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_devicenetworkcards` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `designation` varchar(255) DEFAULT NULL,
  `bandwidth` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `manufacturers_id` int(10) unsigned NOT NULL DEFAULT 0,
  `mac_default` varchar(255) DEFAULT NULL,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `devicenetworkcardmodels_id` int(10) unsigned DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `designation` (`designation`),
  KEY `manufacturers_id` (`manufacturers_id`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`),
  KEY `devicenetworkcardmodels_id` (`devicenetworkcardmodels_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_devicenetworkcards`
--

LOCK TABLES `glpi_devicenetworkcards` WRITE;
/*!40000 ALTER TABLE `glpi_devicenetworkcards` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_devicenetworkcards` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_devicepcimodels`
--

DROP TABLE IF EXISTS `glpi_devicepcimodels`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_devicepcimodels` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `product_number` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `product_number` (`product_number`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_devicepcimodels`
--

LOCK TABLES `glpi_devicepcimodels` WRITE;
/*!40000 ALTER TABLE `glpi_devicepcimodels` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_devicepcimodels` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_devicepcis`
--

DROP TABLE IF EXISTS `glpi_devicepcis`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_devicepcis` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `designation` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `manufacturers_id` int(10) unsigned NOT NULL DEFAULT 0,
  `devicenetworkcardmodels_id` int(10) unsigned NOT NULL DEFAULT 0,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `devicepcimodels_id` int(10) unsigned DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `designation` (`designation`),
  KEY `manufacturers_id` (`manufacturers_id`),
  KEY `devicenetworkcardmodels_id` (`devicenetworkcardmodels_id`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`),
  KEY `devicepcimodels_id` (`devicepcimodels_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_devicepcis`
--

LOCK TABLES `glpi_devicepcis` WRITE;
/*!40000 ALTER TABLE `glpi_devicepcis` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_devicepcis` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_devicepowersupplies`
--

DROP TABLE IF EXISTS `glpi_devicepowersupplies`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_devicepowersupplies` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `designation` varchar(255) DEFAULT NULL,
  `power` varchar(255) DEFAULT NULL,
  `is_atx` tinyint(4) NOT NULL DEFAULT 1,
  `comment` text DEFAULT NULL,
  `manufacturers_id` int(10) unsigned NOT NULL DEFAULT 0,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `devicepowersupplymodels_id` int(10) unsigned DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `designation` (`designation`),
  KEY `manufacturers_id` (`manufacturers_id`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`),
  KEY `devicepowersupplymodels_id` (`devicepowersupplymodels_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_devicepowersupplies`
--

LOCK TABLES `glpi_devicepowersupplies` WRITE;
/*!40000 ALTER TABLE `glpi_devicepowersupplies` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_devicepowersupplies` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_devicepowersupplymodels`
--

DROP TABLE IF EXISTS `glpi_devicepowersupplymodels`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_devicepowersupplymodels` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `product_number` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `product_number` (`product_number`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_devicepowersupplymodels`
--

LOCK TABLES `glpi_devicepowersupplymodels` WRITE;
/*!40000 ALTER TABLE `glpi_devicepowersupplymodels` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_devicepowersupplymodels` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_deviceprocessormodels`
--

DROP TABLE IF EXISTS `glpi_deviceprocessormodels`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_deviceprocessormodels` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `product_number` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `product_number` (`product_number`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_deviceprocessormodels`
--

LOCK TABLES `glpi_deviceprocessormodels` WRITE;
/*!40000 ALTER TABLE `glpi_deviceprocessormodels` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_deviceprocessormodels` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_deviceprocessors`
--

DROP TABLE IF EXISTS `glpi_deviceprocessors`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_deviceprocessors` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `designation` varchar(255) DEFAULT NULL,
  `frequence` int(11) NOT NULL DEFAULT 0,
  `comment` text DEFAULT NULL,
  `manufacturers_id` int(10) unsigned NOT NULL DEFAULT 0,
  `frequency_default` int(11) NOT NULL DEFAULT 0,
  `nbcores_default` int(11) DEFAULT NULL,
  `nbthreads_default` int(11) DEFAULT NULL,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `deviceprocessormodels_id` int(10) unsigned DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `designation` (`designation`),
  KEY `manufacturers_id` (`manufacturers_id`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`),
  KEY `deviceprocessormodels_id` (`deviceprocessormodels_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_deviceprocessors`
--

LOCK TABLES `glpi_deviceprocessors` WRITE;
/*!40000 ALTER TABLE `glpi_deviceprocessors` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_deviceprocessors` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_devicesensormodels`
--

DROP TABLE IF EXISTS `glpi_devicesensormodels`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_devicesensormodels` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `product_number` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `product_number` (`product_number`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_devicesensormodels`
--

LOCK TABLES `glpi_devicesensormodels` WRITE;
/*!40000 ALTER TABLE `glpi_devicesensormodels` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_devicesensormodels` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_devicesensors`
--

DROP TABLE IF EXISTS `glpi_devicesensors`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_devicesensors` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `designation` varchar(255) DEFAULT NULL,
  `devicesensortypes_id` int(10) unsigned NOT NULL DEFAULT 0,
  `devicesensormodels_id` int(10) unsigned NOT NULL DEFAULT 0,
  `comment` text DEFAULT NULL,
  `manufacturers_id` int(10) unsigned NOT NULL DEFAULT 0,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `locations_id` int(10) unsigned NOT NULL DEFAULT 0,
  `states_id` int(10) unsigned NOT NULL DEFAULT 0,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `designation` (`designation`),
  KEY `manufacturers_id` (`manufacturers_id`),
  KEY `devicesensortypes_id` (`devicesensortypes_id`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `locations_id` (`locations_id`),
  KEY `states_id` (`states_id`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`),
  KEY `devicesensormodels_id` (`devicesensormodels_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_devicesensors`
--

LOCK TABLES `glpi_devicesensors` WRITE;
/*!40000 ALTER TABLE `glpi_devicesensors` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_devicesensors` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_devicesensortypes`
--

DROP TABLE IF EXISTS `glpi_devicesensortypes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_devicesensortypes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_devicesensortypes`
--

LOCK TABLES `glpi_devicesensortypes` WRITE;
/*!40000 ALTER TABLE `glpi_devicesensortypes` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_devicesensortypes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_devicesimcards`
--

DROP TABLE IF EXISTS `glpi_devicesimcards`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_devicesimcards` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `designation` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `manufacturers_id` int(10) unsigned NOT NULL DEFAULT 0,
  `voltage` int(11) DEFAULT NULL,
  `devicesimcardtypes_id` int(10) unsigned NOT NULL DEFAULT 0,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  `allow_voip` tinyint(4) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `designation` (`designation`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `devicesimcardtypes_id` (`devicesimcardtypes_id`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`),
  KEY `manufacturers_id` (`manufacturers_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_devicesimcards`
--

LOCK TABLES `glpi_devicesimcards` WRITE;
/*!40000 ALTER TABLE `glpi_devicesimcards` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_devicesimcards` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_devicesimcardtypes`
--

DROP TABLE IF EXISTS `glpi_devicesimcardtypes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_devicesimcardtypes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL DEFAULT '',
  `comment` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_devicesimcardtypes`
--

LOCK TABLES `glpi_devicesimcardtypes` WRITE;
/*!40000 ALTER TABLE `glpi_devicesimcardtypes` DISABLE KEYS */;
INSERT INTO `glpi_devicesimcardtypes` VALUES
(1,'Full SIM',NULL,NULL,NULL),
(2,'Mini SIM',NULL,NULL,NULL),
(3,'Micro SIM',NULL,NULL,NULL),
(4,'Nano SIM',NULL,NULL,NULL);
/*!40000 ALTER TABLE `glpi_devicesimcardtypes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_devicesoundcardmodels`
--

DROP TABLE IF EXISTS `glpi_devicesoundcardmodels`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_devicesoundcardmodels` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `product_number` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `product_number` (`product_number`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_devicesoundcardmodels`
--

LOCK TABLES `glpi_devicesoundcardmodels` WRITE;
/*!40000 ALTER TABLE `glpi_devicesoundcardmodels` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_devicesoundcardmodels` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_devicesoundcards`
--

DROP TABLE IF EXISTS `glpi_devicesoundcards`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_devicesoundcards` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `designation` varchar(255) DEFAULT NULL,
  `type` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `manufacturers_id` int(10) unsigned NOT NULL DEFAULT 0,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `devicesoundcardmodels_id` int(10) unsigned DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `designation` (`designation`),
  KEY `manufacturers_id` (`manufacturers_id`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`),
  KEY `devicesoundcardmodels_id` (`devicesoundcardmodels_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_devicesoundcards`
--

LOCK TABLES `glpi_devicesoundcards` WRITE;
/*!40000 ALTER TABLE `glpi_devicesoundcards` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_devicesoundcards` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_displaypreferences`
--

DROP TABLE IF EXISTS `glpi_displaypreferences`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_displaypreferences` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `itemtype` varchar(100) NOT NULL,
  `num` int(11) NOT NULL DEFAULT 0,
  `rank` int(11) NOT NULL DEFAULT 0,
  `users_id` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`users_id`,`itemtype`,`num`),
  KEY `rank` (`rank`),
  KEY `num` (`num`),
  KEY `itemtype` (`itemtype`)
) ENGINE=InnoDB AUTO_INCREMENT=326 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_displaypreferences`
--

LOCK TABLES `glpi_displaypreferences` WRITE;
/*!40000 ALTER TABLE `glpi_displaypreferences` DISABLE KEYS */;
INSERT INTO `glpi_displaypreferences` VALUES
(1,'Computer',4,4,0),
(2,'Computer',45,6,0),
(3,'Computer',40,5,0),
(4,'Computer',5,3,0),
(5,'Computer',23,2,0),
(6,'DocumentType',3,1,0),
(7,'Monitor',31,1,0),
(8,'Monitor',23,2,0),
(9,'Monitor',3,3,0),
(10,'Monitor',4,4,0),
(11,'Printer',31,1,0),
(12,'NetworkEquipment',31,1,0),
(13,'NetworkEquipment',23,2,0),
(14,'Printer',23,2,0),
(15,'Printer',3,3,0),
(16,'Software',4,3,0),
(17,'Software',5,2,0),
(18,'Software',23,1,0),
(19,'CartridgeItem',4,2,0),
(20,'CartridgeItem',34,1,0),
(21,'Peripheral',3,3,0),
(22,'Peripheral',23,2,0),
(23,'Peripheral',31,1,0),
(24,'Computer',31,1,0),
(25,'Computer',3,7,0),
(26,'Computer',19,8,0),
(27,'Computer',17,9,0),
(28,'NetworkEquipment',3,3,0),
(29,'NetworkEquipment',4,4,0),
(30,'NetworkEquipment',11,6,0),
(31,'NetworkEquipment',19,7,0),
(32,'Printer',4,4,0),
(33,'Printer',19,6,0),
(34,'Monitor',19,6,0),
(35,'Monitor',7,7,0),
(36,'Peripheral',4,4,0),
(37,'Peripheral',19,6,0),
(38,'Peripheral',7,7,0),
(39,'Contact',3,1,0),
(40,'Contact',4,2,0),
(41,'Contact',5,3,0),
(42,'Contact',6,4,0),
(43,'Contact',9,5,0),
(44,'Supplier',9,1,0),
(45,'Supplier',3,2,0),
(46,'Supplier',4,3,0),
(47,'Supplier',5,4,0),
(48,'Supplier',10,5,0),
(49,'Supplier',6,6,0),
(50,'Contract',4,1,0),
(51,'Contract',3,2,0),
(52,'Contract',5,3,0),
(53,'Contract',6,4,0),
(54,'Contract',7,5,0),
(55,'Contract',11,6,0),
(56,'CartridgeItem',23,3,0),
(57,'CartridgeItem',3,4,0),
(58,'DocumentType',6,2,0),
(59,'DocumentType',4,3,0),
(60,'DocumentType',5,4,0),
(61,'Document',3,1,0),
(62,'Document',4,2,0),
(63,'Document',7,3,0),
(64,'Document',5,4,0),
(65,'Document',16,5,0),
(66,'User',34,1,0),
(67,'User',5,3,0),
(68,'User',6,4,0),
(69,'User',3,5,0),
(70,'ConsumableItem',34,1,0),
(71,'ConsumableItem',4,2,0),
(72,'ConsumableItem',23,3,0),
(73,'ConsumableItem',3,4,0),
(74,'NetworkEquipment',40,5,0),
(75,'Printer',40,5,0),
(76,'Monitor',40,5,0),
(77,'Peripheral',40,5,0),
(78,'User',8,6,0),
(79,'Phone',31,1,0),
(80,'Phone',23,2,0),
(81,'Phone',3,3,0),
(82,'Phone',4,4,0),
(83,'Phone',40,5,0),
(84,'Phone',19,6,0),
(85,'Phone',7,7,0),
(86,'Group',16,1,0),
(87,'AllAssets',31,1,0),
(88,'ReservationItem',4,1,0),
(89,'ReservationItem',3,2,0),
(90,'Budget',3,2,0),
(91,'Software',72,4,0),
(92,'Software',163,5,0),
(93,'Budget',5,1,0),
(94,'Budget',4,3,0),
(95,'Budget',19,4,0),
(96,'CronTask',8,1,0),
(97,'CronTask',3,2,0),
(98,'CronTask',4,3,0),
(99,'CronTask',7,4,0),
(100,'RequestType',14,1,0),
(101,'RequestType',15,2,0),
(102,'NotificationTemplate',4,1,0),
(103,'NotificationTemplate',16,2,0),
(104,'Notification',5,1,0),
(105,'Notification',6,2,0),
(106,'Notification',2,3,0),
(107,'Notification',4,4,0),
(108,'Notification',80,5,0),
(109,'Notification',86,6,0),
(110,'MailCollector',2,1,0),
(111,'MailCollector',19,2,0),
(112,'AuthLDAP',3,1,0),
(113,'AuthLDAP',19,2,0),
(114,'AuthMail',3,1,0),
(115,'AuthMail',19,2,0),
(116,'IPNetwork',18,1,0),
(117,'WifiNetwork',10,1,0),
(118,'Profile',2,1,0),
(119,'Profile',3,2,0),
(120,'Profile',19,3,0),
(121,'Transfer',19,1,0),
(122,'TicketValidation',3,1,0),
(123,'TicketValidation',2,2,0),
(124,'TicketValidation',8,3,0),
(125,'TicketValidation',4,4,0),
(126,'TicketValidation',9,5,0),
(127,'TicketValidation',7,6,0),
(128,'NotImportedEmail',2,1,0),
(129,'NotImportedEmail',5,2,0),
(130,'NotImportedEmail',4,3,0),
(131,'NotImportedEmail',6,4,0),
(132,'NotImportedEmail',16,5,0),
(133,'NotImportedEmail',19,6,0),
(134,'RuleRightParameter',11,1,0),
(135,'Ticket',12,1,0),
(136,'Ticket',19,2,0),
(137,'Ticket',15,3,0),
(138,'Ticket',3,4,0),
(139,'Ticket',4,5,0),
(140,'Ticket',5,6,0),
(141,'Ticket',7,7,0),
(142,'Calendar',19,1,0),
(143,'Holiday',11,1,0),
(144,'Holiday',12,2,0),
(145,'Holiday',13,3,0),
(146,'SLA',4,1,0),
(147,'Ticket',18,8,0),
(148,'AuthLDAP',30,3,0),
(149,'AuthMail',6,3,0),
(150,'FQDN',11,1,0),
(151,'FieldUnicity',1,1,0),
(152,'FieldUnicity',80,2,0),
(153,'FieldUnicity',4,3,0),
(154,'FieldUnicity',3,4,0),
(155,'FieldUnicity',86,5,0),
(156,'FieldUnicity',30,6,0),
(157,'Problem',21,1,0),
(158,'Problem',12,2,0),
(159,'Problem',19,3,0),
(160,'Problem',15,4,0),
(161,'Problem',3,5,0),
(162,'Problem',7,6,0),
(163,'Problem',18,7,0),
(164,'Vlan',11,1,0),
(165,'TicketRecurrent',11,1,0),
(166,'TicketRecurrent',12,2,0),
(167,'TicketRecurrent',13,3,0),
(168,'TicketRecurrent',15,4,0),
(169,'TicketRecurrent',14,5,0),
(170,'Reminder',2,1,0),
(171,'Reminder',3,2,0),
(172,'Reminder',4,3,0),
(173,'Reminder',5,4,0),
(174,'Reminder',6,5,0),
(175,'Reminder',7,6,0),
(176,'IPNetwork',10,2,0),
(177,'IPNetwork',11,3,0),
(178,'IPNetwork',12,4,0),
(179,'IPNetwork',17,5,0),
(180,'NetworkName',12,1,0),
(181,'NetworkName',13,2,0),
(182,'RSSFeed',2,1,0),
(183,'RSSFeed',4,2,0),
(184,'RSSFeed',5,3,0),
(185,'RSSFeed',19,4,0),
(186,'RSSFeed',6,5,0),
(187,'RSSFeed',7,6,0),
(188,'Blacklist',12,1,0),
(189,'Blacklist',11,2,0),
(190,'ReservationItem',5,3,0),
(191,'QueuedNotification',16,1,0),
(192,'QueuedNotification',7,2,0),
(193,'QueuedNotification',20,3,0),
(194,'QueuedNotification',21,4,0),
(195,'QueuedNotification',22,5,0),
(196,'QueuedNotification',15,6,0),
(197,'Change',12,1,0),
(198,'Change',19,2,0),
(199,'Change',15,3,0),
(200,'Change',7,4,0),
(201,'Change',18,5,0),
(202,'Project',3,1,0),
(203,'Project',4,2,0),
(204,'Project',12,3,0),
(205,'Project',5,4,0),
(206,'Project',15,5,0),
(207,'Project',21,6,0),
(208,'ProjectState',12,1,0),
(209,'ProjectState',11,2,0),
(210,'ProjectTask',2,1,0),
(211,'ProjectTask',12,2,0),
(212,'ProjectTask',14,3,0),
(213,'ProjectTask',5,4,0),
(214,'ProjectTask',7,5,0),
(215,'ProjectTask',8,6,0),
(216,'ProjectTask',13,7,0),
(217,'CartridgeItem',9,5,0),
(218,'ConsumableItem',9,5,0),
(219,'ReservationItem',9,4,0),
(220,'SoftwareLicense',1,1,0),
(221,'SoftwareLicense',3,2,0),
(222,'SoftwareLicense',10,3,0),
(223,'SoftwareLicense',162,4,0),
(224,'SoftwareLicense',5,5,0),
(225,'SavedSearch',8,1,0),
(226,'SavedSearch',9,1,0),
(227,'SavedSearch',3,1,0),
(228,'SavedSearch',10,1,0),
(229,'SavedSearch',11,1,0),
(230,'Plugin',2,1,0),
(231,'Plugin',3,2,0),
(232,'Plugin',4,3,0),
(233,'Plugin',5,4,0),
(234,'Plugin',6,5,0),
(235,'Plugin',7,6,0),
(236,'Plugin',8,7,0),
(237,'Cluster',31,1,0),
(238,'Cluster',19,2,0),
(239,'Domain',3,1,0),
(240,'Domain',4,2,0),
(241,'Domain',2,3,0),
(242,'Domain',6,4,0),
(243,'Domain',7,5,0),
(244,'DomainRecord',2,1,0),
(245,'DomainRecord',3,2,0),
(246,'Appliance',2,1,0),
(247,'Appliance',3,2,0),
(248,'Appliance',4,3,0),
(249,'Appliance',5,4,0),
(250,'Lockedfield',3,1,0),
(251,'Lockedfield',13,2,0),
(252,'Lockedfield',5,3,0),
(253,'Unmanaged',2,1,0),
(254,'Unmanaged',4,2,0),
(255,'Unmanaged',3,3,0),
(256,'Unmanaged',5,4,0),
(257,'Unmanaged',7,5,0),
(258,'Unmanaged',10,6,0),
(259,'Unmanaged',18,7,0),
(260,'Unmanaged',14,8,0),
(261,'Unmanaged',15,9,0),
(262,'Unmanaged',9,10,0),
(263,'NetworkPortType',10,1,0),
(264,'NetworkPortType',11,2,0),
(265,'NetworkPortType',12,3,0),
(266,'NetworkPort',3,1,0),
(267,'NetworkPort',30,2,0),
(268,'NetworkPort',31,3,0),
(269,'NetworkPort',32,4,0),
(270,'NetworkPort',33,5,0),
(271,'NetworkPort',34,6,0),
(272,'NetworkPort',35,7,0),
(273,'NetworkPort',36,8,0),
(274,'NetworkPort',38,9,0),
(275,'NetworkPort',39,10,0),
(276,'NetworkPort',40,11,0),
(277,'NetworkPort',6,12,0),
(278,'USBVendor',10,1,0),
(279,'USBVendor',11,2,0),
(280,'PCIVendor',10,1,0),
(281,'PCIVendor',11,2,0),
(282,'Agent',2,1,0),
(283,'Agent',4,2,0),
(284,'Agent',10,3,0),
(285,'Agent',8,4,0),
(286,'Agent',11,5,0),
(287,'Agent',6,6,0),
(288,'Agent',15,7,0),
(289,'Database',2,1,0),
(290,'Database',3,2,0),
(291,'Database',6,3,0),
(292,'Database',9,4,0),
(293,'Database',10,5,0),
(294,'Glpi\\Socket',5,1,0),
(295,'Glpi\\Socket',6,2,0),
(296,'Glpi\\Socket',9,3,0),
(297,'Glpi\\Socket',8,4,0),
(298,'Glpi\\Socket',7,5,0),
(299,'Cable',4,1,0),
(300,'Cable',31,2,0),
(301,'Cable',6,3,0),
(302,'Cable',15,4,0),
(303,'Cable',24,5,0),
(304,'Cable',8,6,0),
(305,'Cable',10,7,0),
(306,'Cable',13,8,0),
(307,'Cable',14,9,0),
(308,'PluginFormcreatorFormAnswer',2,1,0),
(309,'PluginFormcreatorFormAnswer',3,2,0),
(310,'PluginFormcreatorFormAnswer',4,3,0),
(311,'PluginFormcreatorFormAnswer',5,4,0),
(312,'PluginFormcreatorFormAnswer',6,5,0),
(313,'PluginFormcreatorForm',30,1,0),
(314,'PluginFormcreatorForm',3,2,0),
(315,'PluginFormcreatorForm',10,3,0),
(316,'PluginFormcreatorForm',7,4,0),
(317,'PluginFormcreatorForm',8,5,0),
(318,'PluginFormcreatorForm',9,6,0),
(319,'PluginFormcreatorIssue',1,1,0),
(320,'PluginFormcreatorIssue',2,2,0),
(321,'PluginFormcreatorIssue',4,3,0),
(322,'PluginFormcreatorIssue',5,4,0),
(323,'PluginFormcreatorIssue',6,5,0),
(324,'PluginFormcreatorIssue',7,6,0),
(325,'PluginFormcreatorIssue',8,7,0);
/*!40000 ALTER TABLE `glpi_displaypreferences` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_documentcategories`
--

DROP TABLE IF EXISTS `glpi_documentcategories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_documentcategories` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `documentcategories_id` int(10) unsigned NOT NULL DEFAULT 0,
  `completename` text DEFAULT NULL,
  `level` int(11) NOT NULL DEFAULT 0,
  `ancestors_cache` longtext DEFAULT NULL,
  `sons_cache` longtext DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`documentcategories_id`,`name`),
  KEY `name` (`name`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`),
  KEY `level` (`level`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_documentcategories`
--

LOCK TABLES `glpi_documentcategories` WRITE;
/*!40000 ALTER TABLE `glpi_documentcategories` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_documentcategories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_documents`
--

DROP TABLE IF EXISTS `glpi_documents`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_documents` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `name` varchar(255) DEFAULT NULL,
  `filename` varchar(255) DEFAULT NULL COMMENT 'for display and transfert',
  `filepath` varchar(255) DEFAULT NULL COMMENT 'file storage path',
  `documentcategories_id` int(10) unsigned NOT NULL DEFAULT 0,
  `mime` varchar(255) DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `is_deleted` tinyint(4) NOT NULL DEFAULT 0,
  `link` varchar(255) DEFAULT NULL,
  `users_id` int(10) unsigned NOT NULL DEFAULT 0,
  `tickets_id` int(10) unsigned NOT NULL DEFAULT 0,
  `sha1sum` char(40) DEFAULT NULL,
  `is_blacklisted` tinyint(4) NOT NULL DEFAULT 0,
  `tag` varchar(255) DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `date_mod` (`date_mod`),
  KEY `name` (`name`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `tickets_id` (`tickets_id`),
  KEY `users_id` (`users_id`),
  KEY `documentcategories_id` (`documentcategories_id`),
  KEY `is_deleted` (`is_deleted`),
  KEY `sha1sum` (`sha1sum`),
  KEY `tag` (`tag`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_documents`
--

LOCK TABLES `glpi_documents` WRITE;
/*!40000 ALTER TABLE `glpi_documents` DISABLE KEYS */;
INSERT INTO `glpi_documents` VALUES
(2,0,0,'Captura de tela 2024-10-12 135656.png','Captura de tela 2024-10-12 135656.png','PNG/98/80b6509f1ade45950305ac29dfe21689d0f82a.PNG',0,'image/png','2024-12-27 21:50:35',NULL,0,NULL,9,0,'9880b6509f1ade45950305ac29dfe21689d0f82a',0,'a90d2f74-b2d8e96f-676f212966e4e4.61149696','2024-12-27 21:50:35'),
(3,2,0,'image_paste385457.png','image_paste385457.png','PNG/65/4eb4ca3d8815ba8a26c42442eab13d30377058.PNG',0,'image/png','2025-01-08 12:22:46',NULL,0,NULL,8,0,'654eb4ca3d8815ba8a26c42442eab13d30377058',0,'a90d2f74-b2d8e96f-677e6e1328a539.57982140','2025-01-08 12:22:46'),
(4,2,0,'Documento do Chamado 20','c4beb9d1-fc2a-4c23-9f7d-ec4a685aa186.jpg','JPG/7b/d074fd4b5ae1b61bfb0f7f80b1d8cd3552d6a8.JPG',0,'image/jpeg','2025-01-08 13:21:24',NULL,0,NULL,9,20,'7bd074fd4b5ae1b61bfb0f7f80b1d8cd3552d6a8',0,'a90d2f74-b2d8e96f-677e7ba7547881.32930555','2025-01-08 13:21:24'),
(5,2,0,'image_paste3806864.png','image_paste3806864.png','PNG/6b/a9795f160a3b440c156cd572139a713ca3356d.PNG',0,'image/png','2025-01-08 20:42:42',NULL,0,NULL,8,0,'6ba9795f160a3b440c156cd572139a713ca3356d',0,'a90d2f74-b2d8e96f-677ee33eea06f3.33393595','2025-01-08 20:42:42'),
(6,2,0,'Documento do Chamado 23','Captura de tela 2025-01-09 150116.png','PNG/fa/40d0e14d4369846fe4fdec22396dcf37e9a9e6.PNG',0,'image/png','2025-01-09 18:02:47',NULL,0,NULL,9,23,'fa40d0e14d4369846fe4fdec22396dcf37e9a9e6',0,'796eb77d-b2d8e96f-67800f42ba6863.01754748','2025-01-09 18:02:47'),
(7,2,0,'Documento do Chamado 28','BARRA DE PESQUISA.png','PNG/46/b25fff75cb101fdbcd15e60158bd18d1327165.PNG',0,'image/png','2025-01-13 12:35:41',NULL,0,NULL,9,28,'46b25fff75cb101fdbcd15e60158bd18d1327165',0,'796eb77d-b2d8e96f-67850893880fb6.37189512','2025-01-13 12:35:41'),
(8,2,1,'62bc835aafc688.68301584image_paste1933703.png','image_paste.png','PNG/44/242ad020bd97bc5af24b4de962b5e9f9c82463.PNG',0,'image/png','2025-01-16 00:52:50',NULL,0,NULL,9,0,'44242ad020bd97bc5af24b4de962b5e9f9c82463',0,'796eb77d-b2d8e96f-67885852aec4f6.00664803','2025-01-16 00:52:50'),
(9,2,0,'image_paste1287054.png','image_paste1287054.png','PNG/9d/a677645e2a56605872cad133cbc3add0642e7a.PNG',0,'image/png','2025-01-16 13:14:20',NULL,0,NULL,8,0,'9da677645e2a56605872cad133cbc3add0642e7a',0,'796eb77d-b2d8e96f-67890626156559.26126155','2025-01-16 13:14:20'),
(10,2,1,'62c23c156bed8c.39372227image_paste6345625.png','image_paste.png','PNG/51/3f27413e944a9aecb2cf30115df7b6ff4baa77.PNG',0,'image/png','2025-01-20 14:05:41',NULL,0,NULL,9,0,'513f27413e944a9aecb2cf30115df7b6ff4baa77',0,'ec3ac8cc-b2d8e96f-678e5833761ee6.52395438','2025-01-20 14:05:41'),
(11,2,1,'62c2c5226dfa28.92593855image_paste688105.png','image_paste.png','PNG/96/d5ffa76df605b9f32fd2624653613db5c8bccb.PNG',0,'image/png','2025-01-21 00:18:58',NULL,0,NULL,9,0,'96d5ffa76df605b9f32fd2624653613db5c8bccb',0,'ec3ac8cc-b2d8e96f-678ee7e6eb9177.72480582','2025-01-21 00:18:58'),
(12,2,1,'62c35a052f90fc.14011958image_paste3781659.png','image_paste.png','PNG/ea/4c87076478bba1a45d2e75275bc403c0c43e01.PNG',0,'image/png','2025-01-21 11:27:28',NULL,0,NULL,9,0,'ea4c87076478bba1a45d2e75275bc403c0c43e01',0,'ec3ac8cc-b2d8e96f-678f840b8e9a32.37877242','2025-01-21 11:27:28'),
(13,2,1,'62c36fb07f530c.03703187image_paste1041686.png','image_paste.png','PNG/37/619d9738f0156aae29bb28848aae648739be8a.PNG',0,'image/png','2025-01-21 13:02:41',NULL,0,NULL,9,0,'37619d9738f0156aae29bb28848aae648739be8a',0,'ec3ac8cc-b2d8e96f-678f9ac07b0fe6.57690040','2025-01-21 13:02:41'),
(14,2,1,'62c49675e91ec0.86768743image_paste7866656.png','image_paste.png','PNG/a8/2a53ec8b584d9a338cb58ca92385a32a39c51a.PNG',0,'image/png','2025-01-22 11:00:46',NULL,0,NULL,9,0,'a82a53ec8b584d9a338cb58ca92385a32a39c51a',0,'ec3ac8cc-b2d8e96f-6790cfd5928179.61613302','2025-01-22 11:00:46'),
(15,2,0,'image_paste9316597.png','image_paste9316597.png','PNG/ba/5c43c153e5c991c5d72eeb698a8802be51c5d6.PNG',0,'image/png','2025-01-23 13:20:37',NULL,0,NULL,9,0,'ba5c43c153e5c991c5d72eeb698a8802be51c5d6',0,'ec3ac8cc-b2d8e96f-6792421b98dab2.18335093','2025-01-23 13:20:37'),
(16,2,1,'62cec9b0a6d018.94592529image_paste1600066.png','image_paste.png','PNG/da/c65e19ad6e7adc44b11e8679a86f19dc5125dd.PNG',0,'image/png','2025-01-30 13:44:22',NULL,0,NULL,9,0,'dac65e19ad6e7adc44b11e8679a86f19dc5125dd',0,'ec3ac8cc-b2d8e96f-679b81f077f908.68527211','2025-01-30 13:44:22'),
(17,2,1,'62e6e5a4ad31f4.64728719image_paste4652445.png','image_paste.png','PNG/33/2495afac3af752b94ab2454425ec0518bcae8d.PNG',0,'image/png','2025-02-18 17:56:01',NULL,0,NULL,9,0,'332495afac3af752b94ab2454425ec0518bcae8d',0,'47cb7c5c-b2d8e96f-67b4c9ad2804d1.68109059','2025-02-18 17:56:01');
/*!40000 ALTER TABLE `glpi_documents` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_documents_items`
--

DROP TABLE IF EXISTS `glpi_documents_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_documents_items` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `documents_id` int(10) unsigned NOT NULL DEFAULT 0,
  `items_id` int(10) unsigned NOT NULL DEFAULT 0,
  `itemtype` varchar(100) NOT NULL,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `date_mod` timestamp NULL DEFAULT NULL,
  `users_id` int(10) unsigned DEFAULT 0,
  `timeline_position` tinyint(4) NOT NULL DEFAULT 0,
  `date_creation` timestamp NULL DEFAULT NULL,
  `date` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`documents_id`,`itemtype`,`items_id`,`timeline_position`),
  KEY `item` (`itemtype`,`items_id`,`entities_id`,`is_recursive`),
  KEY `users_id` (`users_id`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `date_creation` (`date_creation`),
  KEY `date_mod` (`date_mod`),
  KEY `date` (`date`),
  KEY `timeline_position` (`timeline_position`)
) ENGINE=InnoDB AUTO_INCREMENT=26 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_documents_items`
--

LOCK TABLES `glpi_documents_items` WRITE;
/*!40000 ALTER TABLE `glpi_documents_items` DISABLE KEYS */;
INSERT INTO `glpi_documents_items` VALUES
(3,3,11,'ITILFollowup',2,0,'2025-01-08 12:22:46',8,-1,'2025-01-08 12:22:46','2025-01-08 12:22:46'),
(4,4,20,'Ticket',2,0,'2025-01-08 13:21:24',9,1,'2025-01-08 13:21:24','2025-01-08 13:21:24'),
(5,5,15,'ITILFollowup',2,0,'2025-01-08 20:42:42',8,-1,'2025-01-08 20:42:42','2025-01-08 20:42:42'),
(6,6,23,'Ticket',2,0,'2025-01-09 18:02:47',9,1,'2025-01-09 18:02:47','2025-01-09 18:02:47'),
(7,7,28,'Ticket',2,0,'2025-01-13 12:35:41',9,1,'2025-01-13 12:35:41','2025-01-13 12:35:41'),
(10,9,43,'ITILFollowup',2,0,'2025-01-16 13:14:20',8,-1,'2025-01-16 13:14:20','2025-01-16 13:14:20'),
(11,10,12,'PluginFormcreatorFormAnswer',2,1,'2025-01-20 14:05:41',9,0,'2025-01-20 14:05:41','2025-01-20 14:05:41'),
(12,10,48,'Ticket',2,1,'2025-01-20 14:05:41',9,-1,'2025-01-20 14:05:41','2025-01-20 14:05:41'),
(13,11,13,'PluginFormcreatorFormAnswer',2,1,'2025-01-21 00:18:58',9,0,'2025-01-21 00:18:58','2025-01-21 00:18:58'),
(15,12,14,'PluginFormcreatorFormAnswer',2,1,'2025-01-21 11:27:28',9,0,'2025-01-21 11:27:28','2025-01-21 11:27:28'),
(16,12,50,'Ticket',2,1,'2025-01-21 11:27:28',9,-1,'2025-01-21 11:27:28','2025-01-21 11:27:28'),
(17,13,15,'PluginFormcreatorFormAnswer',2,1,'2025-01-21 13:02:41',9,0,'2025-01-21 13:02:41','2025-01-21 13:02:41'),
(18,13,51,'Ticket',2,1,'2025-01-21 13:02:41',9,-1,'2025-01-21 13:02:41','2025-01-21 13:02:41'),
(19,14,17,'PluginFormcreatorFormAnswer',2,1,'2025-01-22 11:00:46',9,0,'2025-01-22 11:00:46','2025-01-22 11:00:46'),
(20,14,53,'Ticket',2,1,'2025-01-22 11:00:46',9,-1,'2025-01-22 11:00:46','2025-01-22 11:00:46'),
(21,15,70,'ITILFollowup',2,0,'2025-01-23 13:20:37',9,-1,'2025-01-23 13:20:37','2025-01-23 13:20:37'),
(22,16,37,'PluginFormcreatorFormAnswer',2,1,'2025-01-30 13:44:22',9,0,'2025-01-30 13:44:22','2025-01-30 13:44:22'),
(23,16,73,'Ticket',2,1,'2025-01-30 13:44:22',9,-1,'2025-01-30 13:44:22','2025-01-30 13:44:22'),
(24,17,54,'PluginFormcreatorFormAnswer',2,1,'2025-02-18 17:56:01',9,0,'2025-02-18 17:56:01','2025-02-18 17:56:01'),
(25,17,90,'Ticket',2,1,'2025-02-18 17:56:01',9,-1,'2025-02-18 17:56:01','2025-02-18 17:56:01');
/*!40000 ALTER TABLE `glpi_documents_items` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_documenttypes`
--

DROP TABLE IF EXISTS `glpi_documenttypes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_documenttypes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `ext` varchar(255) DEFAULT NULL,
  `icon` varchar(255) DEFAULT NULL,
  `mime` varchar(255) DEFAULT NULL,
  `is_uploadable` tinyint(4) NOT NULL DEFAULT 1,
  `date_mod` timestamp NULL DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`ext`),
  KEY `name` (`name`),
  KEY `is_uploadable` (`is_uploadable`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB AUTO_INCREMENT=73 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_documenttypes`
--

LOCK TABLES `glpi_documenttypes` WRITE;
/*!40000 ALTER TABLE `glpi_documenttypes` DISABLE KEYS */;
INSERT INTO `glpi_documenttypes` VALUES
(1,'JPEG','jpg','jpg-dist.png',NULL,1,NULL,NULL,NULL),
(2,'PNG','png','png-dist.png',NULL,1,NULL,NULL,NULL),
(3,'GIF','gif','gif-dist.png',NULL,1,NULL,NULL,NULL),
(4,'BMP','bmp','bmp-dist.png',NULL,1,NULL,NULL,NULL),
(5,'Photoshop','psd','psd-dist.png',NULL,1,NULL,NULL,NULL),
(6,'TIFF','tif','tif-dist.png',NULL,1,NULL,NULL,NULL),
(7,'AIFF','aiff','aiff-dist.png',NULL,1,NULL,NULL,NULL),
(8,'Windows Media','asf','asf-dist.png',NULL,1,NULL,NULL,NULL),
(9,'Windows Media','avi','avi-dist.png',NULL,1,NULL,NULL,NULL),
(10,'BZip','bz2','bz2-dist.png',NULL,1,NULL,NULL,NULL),
(11,'Word','doc','doc-dist.png',NULL,1,NULL,NULL,NULL),
(12,'DjVu','djvu','',NULL,1,NULL,NULL,NULL),
(13,'PostScript','eps','ps-dist.png',NULL,1,NULL,NULL,NULL),
(14,'GZ','gz','gz-dist.png',NULL,1,NULL,NULL,NULL),
(15,'HTML','html','html-dist.png',NULL,1,NULL,NULL,NULL),
(16,'Midi','mid','mid-dist.png',NULL,1,NULL,NULL,NULL),
(17,'QuickTime','mov','mov-dist.png',NULL,1,NULL,NULL,NULL),
(18,'MP3','mp3','mp3-dist.png',NULL,1,NULL,NULL,NULL),
(19,'MPEG','mpg','mpg-dist.png',NULL,1,NULL,NULL,NULL),
(20,'Ogg Vorbis','ogg','ogg-dist.png',NULL,1,NULL,NULL,NULL),
(21,'PDF','pdf','pdf-dist.png',NULL,1,NULL,NULL,NULL),
(22,'PowerPoint','ppt','ppt-dist.png',NULL,1,NULL,NULL,NULL),
(23,'PostScript','ps','ps-dist.png',NULL,1,NULL,NULL,NULL),
(24,'QuickTime','qt','qt-dist.png',NULL,1,NULL,NULL,NULL),
(25,'RealAudio','ra','ra-dist.png',NULL,1,NULL,NULL,NULL),
(26,'RealAudio','ram','ram-dist.png',NULL,1,NULL,NULL,NULL),
(27,'RealAudio','rm','rm-dist.png',NULL,1,NULL,NULL,NULL),
(28,'RTF','rtf','rtf-dist.png',NULL,1,NULL,NULL,NULL),
(29,'StarOffice','sdd','sdd-dist.png',NULL,1,NULL,NULL,NULL),
(30,'StarOffice','sdw','sdw-dist.png',NULL,1,NULL,NULL,NULL),
(31,'Stuffit','sit','sit-dist.png',NULL,1,NULL,NULL,NULL),
(32,'OpenOffice Impress','sxi','sxi-dist.png',NULL,1,NULL,NULL,NULL),
(33,'OpenOffice','sxw','sxw-dist.png',NULL,1,NULL,NULL,NULL),
(34,'Flash','swf','swf-dist.png',NULL,1,NULL,NULL,NULL),
(35,'TGZ','tgz','tgz-dist.png',NULL,1,NULL,NULL,NULL),
(36,'texte','txt','txt-dist.png',NULL,1,NULL,NULL,NULL),
(37,'WAV','wav','wav-dist.png',NULL,1,NULL,NULL,NULL),
(38,'Excel','xls','xls-dist.png',NULL,1,NULL,NULL,NULL),
(39,'XML','xml','xml-dist.png',NULL,1,NULL,NULL,NULL),
(40,'Windows Media','wmv','wmv-dist.png',NULL,1,NULL,NULL,NULL),
(41,'Zip','zip','zip-dist.png',NULL,1,NULL,NULL,NULL),
(42,'MNG','mng','',NULL,1,NULL,NULL,NULL),
(43,'Adobe Illustrator','ai','ai-dist.png',NULL,1,NULL,NULL,NULL),
(44,'C source','c','c-dist.png',NULL,1,NULL,NULL,NULL),
(45,'Debian','deb','deb-dist.png',NULL,1,NULL,NULL,NULL),
(46,'DVI','dvi','dvi-dist.png',NULL,1,NULL,NULL,NULL),
(47,'C header','h','h-dist.png',NULL,1,NULL,NULL,NULL),
(48,'Pascal','pas','pas-dist.png',NULL,1,NULL,NULL,NULL),
(49,'RedHat/Mandrake/SuSE','rpm','rpm-dist.png',NULL,1,NULL,NULL,NULL),
(50,'OpenOffice Calc','sxc','sxc-dist.png',NULL,1,NULL,NULL,NULL),
(51,'LaTeX','tex','tex-dist.png',NULL,1,NULL,NULL,NULL),
(52,'GIMP multi-layer','xcf','xcf-dist.png',NULL,1,NULL,NULL,NULL),
(53,'JPEG','jpeg','jpg-dist.png',NULL,1,NULL,NULL,NULL),
(54,'Oasis Open Office Writer','odt','odt-dist.png',NULL,1,NULL,NULL,NULL),
(55,'Oasis Open Office Calc','ods','ods-dist.png',NULL,1,NULL,NULL,NULL),
(56,'Oasis Open Office Impress','odp','odp-dist.png',NULL,1,NULL,NULL,NULL),
(57,'Oasis Open Office Impress Template','otp','odp-dist.png',NULL,1,NULL,NULL,NULL),
(58,'Oasis Open Office Writer Template','ott','odt-dist.png',NULL,1,NULL,NULL,NULL),
(59,'Oasis Open Office Calc Template','ots','ods-dist.png',NULL,1,NULL,NULL,NULL),
(60,'Oasis Open Office Math','odf','odf-dist.png',NULL,1,NULL,NULL,NULL),
(61,'Oasis Open Office Draw','odg','odg-dist.png',NULL,1,NULL,NULL,NULL),
(62,'Oasis Open Office Draw Template','otg','odg-dist.png',NULL,1,NULL,NULL,NULL),
(63,'Oasis Open Office Base','odb','odb-dist.png',NULL,1,NULL,NULL,NULL),
(64,'Oasis Open Office HTML','oth','oth-dist.png',NULL,1,NULL,NULL,NULL),
(65,'Oasis Open Office Writer Master','odm','odm-dist.png',NULL,1,NULL,NULL,NULL),
(66,'Oasis Open Office Chart','odc','',NULL,1,NULL,NULL,NULL),
(67,'Oasis Open Office Image','odi','',NULL,1,NULL,NULL,NULL),
(68,'Word XML','docx','doc-dist.png',NULL,1,NULL,NULL,NULL),
(69,'Excel XML','xlsx','xls-dist.png',NULL,1,NULL,NULL,NULL),
(70,'PowerPoint XML','pptx','ppt-dist.png',NULL,1,NULL,NULL,NULL),
(71,'Comma-Separated Values','csv','csv-dist.png',NULL,1,NULL,NULL,NULL),
(72,'Scalable Vector Graphics','svg','svg-dist.png',NULL,1,NULL,NULL,NULL);
/*!40000 ALTER TABLE `glpi_documenttypes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_domainrecords`
--

DROP TABLE IF EXISTS `glpi_domainrecords`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_domainrecords` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `data` text DEFAULT NULL,
  `data_obj` text DEFAULT NULL,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `domains_id` int(10) unsigned NOT NULL DEFAULT 0,
  `domainrecordtypes_id` int(10) unsigned NOT NULL DEFAULT 0,
  `ttl` int(11) NOT NULL,
  `users_id_tech` int(10) unsigned NOT NULL DEFAULT 0,
  `groups_id_tech` int(10) unsigned NOT NULL DEFAULT 0,
  `is_deleted` tinyint(4) NOT NULL DEFAULT 0,
  `comment` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `domains_id` (`domains_id`),
  KEY `domainrecordtypes_id` (`domainrecordtypes_id`),
  KEY `users_id_tech` (`users_id_tech`),
  KEY `groups_id_tech` (`groups_id_tech`),
  KEY `date_mod` (`date_mod`),
  KEY `is_deleted` (`is_deleted`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_domainrecords`
--

LOCK TABLES `glpi_domainrecords` WRITE;
/*!40000 ALTER TABLE `glpi_domainrecords` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_domainrecords` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_domainrecordtypes`
--

DROP TABLE IF EXISTS `glpi_domainrecordtypes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_domainrecordtypes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `fields` text DEFAULT NULL,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `comment` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`)
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_domainrecordtypes`
--

LOCK TABLES `glpi_domainrecordtypes` WRITE;
/*!40000 ALTER TABLE `glpi_domainrecordtypes` DISABLE KEYS */;
INSERT INTO `glpi_domainrecordtypes` VALUES
(1,'A','[]',0,1,'Host address'),
(2,'AAAA','[]',0,1,'IPv6 host address'),
(3,'ALIAS','[]',0,1,'Auto resolved alias'),
(4,'CNAME','[{\"key\":\"target\",\"label\":\"Target\",\"placeholder\":\"sip.example.com.\",\"is_fqdn\":true}]',0,1,'Canonical name for an alias'),
(5,'MX','[{\"key\":\"priority\",\"label\":\"Priority\",\"placeholder\":\"10\"},{\"key\":\"server\",\"label\":\"Server\",\"placeholder\":\"mail.example.com.\",\"is_fqdn\":true}]',0,1,'Mail eXchange'),
(6,'NS','[]',0,1,'Name Server'),
(7,'PTR','[]',0,1,'Pointer'),
(8,'SOA','[{\"key\":\"primary_name_server\",\"label\":\"Primary name server\",\"placeholder\":\"ns1.example.com.\",\"is_fqdn\":true},{\"key\":\"primary_contact\",\"label\":\"Primary contact\",\"placeholder\":\"admin.example.com.\",\"is_fqdn\":true},{\"key\":\"serial\",\"label\":\"Serial\",\"placeholder\":\"2020010101\"},{\"key\":\"zone_refresh_timer\",\"label\":\"Zone refresh timer\",\"placeholder\":\"86400\"},{\"key\":\"failed_refresh_retry_timer\",\"label\":\"Failed refresh retry timer\",\"placeholder\":\"7200\"},{\"key\":\"zone_expiry_timer\",\"label\":\"Zone expiry timer\",\"placeholder\":\"1209600\"},{\"key\":\"minimum_ttl\",\"label\":\"Minimum TTL\",\"placeholder\":\"300\"}]',0,1,'Start Of Authority'),
(9,'SRV','[{\"key\":\"priority\",\"label\":\"Priority\",\"placeholder\":\"0\"},{\"key\":\"weight\",\"label\":\"Weight\",\"placeholder\":\"10\"},{\"key\":\"port\",\"label\":\"Port\",\"placeholder\":\"5060\"},{\"key\":\"target\",\"label\":\"Target\",\"placeholder\":\"sip.example.com.\",\"is_fqdn\":true}]',0,1,'Location of service'),
(10,'TXT','[{\"key\":\"data\",\"label\":\"TXT record data\",\"placeholder\":\"Your TXT record data\",\"quote_value\":true}]',0,1,'Descriptive text'),
(11,'CAA','[{\"key\":\"flag\",\"label\":\"Flag\",\"placeholder\":\"0\"},{\"key\":\"tag\",\"label\":\"Tag\",\"placeholder\":\"issue\"},{\"key\":\"value\",\"label\":\"Value\",\"placeholder\":\"letsencrypt.org\",\"quote_value\":true}]',0,1,'Certification Authority Authorization');
/*!40000 ALTER TABLE `glpi_domainrecordtypes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_domainrelations`
--

DROP TABLE IF EXISTS `glpi_domainrelations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_domainrelations` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `comment` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_domainrelations`
--

LOCK TABLES `glpi_domainrelations` WRITE;
/*!40000 ALTER TABLE `glpi_domainrelations` DISABLE KEYS */;
INSERT INTO `glpi_domainrelations` VALUES
(1,'Belongs',0,1,'Item belongs to domain'),
(2,'Manage',0,1,'Item manages domain');
/*!40000 ALTER TABLE `glpi_domainrelations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_domains`
--

DROP TABLE IF EXISTS `glpi_domains`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_domains` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `domaintypes_id` int(10) unsigned NOT NULL DEFAULT 0,
  `date_expiration` timestamp NULL DEFAULT NULL,
  `date_domaincreation` timestamp NULL DEFAULT NULL,
  `users_id_tech` int(10) unsigned NOT NULL DEFAULT 0,
  `groups_id_tech` int(10) unsigned NOT NULL DEFAULT 0,
  `is_deleted` tinyint(4) NOT NULL DEFAULT 0,
  `comment` text DEFAULT NULL,
  `is_template` tinyint(4) NOT NULL DEFAULT 0,
  `template_name` varchar(255) DEFAULT NULL,
  `is_active` tinyint(4) NOT NULL DEFAULT 0,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `domaintypes_id` (`domaintypes_id`),
  KEY `users_id_tech` (`users_id_tech`),
  KEY `groups_id_tech` (`groups_id_tech`),
  KEY `date_mod` (`date_mod`),
  KEY `is_deleted` (`is_deleted`),
  KEY `is_template` (`is_template`),
  KEY `is_active` (`is_active`),
  KEY `date_expiration` (`date_expiration`),
  KEY `date_domaincreation` (`date_domaincreation`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_domains`
--

LOCK TABLES `glpi_domains` WRITE;
/*!40000 ALTER TABLE `glpi_domains` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_domains` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_domains_items`
--

DROP TABLE IF EXISTS `glpi_domains_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_domains_items` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `domains_id` int(10) unsigned NOT NULL DEFAULT 0,
  `items_id` int(10) unsigned NOT NULL DEFAULT 0,
  `itemtype` varchar(100) NOT NULL,
  `domainrelations_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_dynamic` tinyint(4) NOT NULL DEFAULT 0,
  `is_deleted` tinyint(4) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`domains_id`,`itemtype`,`items_id`),
  KEY `domainrelations_id` (`domainrelations_id`),
  KEY `item` (`itemtype`,`items_id`),
  KEY `is_dynamic` (`is_dynamic`),
  KEY `is_deleted` (`is_deleted`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_domains_items`
--

LOCK TABLES `glpi_domains_items` WRITE;
/*!40000 ALTER TABLE `glpi_domains_items` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_domains_items` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_domaintypes`
--

DROP TABLE IF EXISTS `glpi_domaintypes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_domaintypes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `comment` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_domaintypes`
--

LOCK TABLES `glpi_domaintypes` WRITE;
/*!40000 ALTER TABLE `glpi_domaintypes` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_domaintypes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_dropdowntranslations`
--

DROP TABLE IF EXISTS `glpi_dropdowntranslations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_dropdowntranslations` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `items_id` int(10) unsigned NOT NULL DEFAULT 0,
  `itemtype` varchar(100) DEFAULT NULL,
  `language` varchar(10) DEFAULT NULL,
  `field` varchar(100) DEFAULT NULL,
  `value` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`itemtype`,`items_id`,`language`,`field`),
  KEY `language` (`language`),
  KEY `field` (`field`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_dropdowntranslations`
--

LOCK TABLES `glpi_dropdowntranslations` WRITE;
/*!40000 ALTER TABLE `glpi_dropdowntranslations` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_dropdowntranslations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_enclosuremodels`
--

DROP TABLE IF EXISTS `glpi_enclosuremodels`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_enclosuremodels` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `product_number` varchar(255) DEFAULT NULL,
  `weight` int(11) NOT NULL DEFAULT 0,
  `required_units` int(11) NOT NULL DEFAULT 1,
  `depth` float NOT NULL DEFAULT 1,
  `power_connections` int(11) NOT NULL DEFAULT 0,
  `power_consumption` int(11) NOT NULL DEFAULT 0,
  `is_half_rack` tinyint(4) NOT NULL DEFAULT 0,
  `picture_front` text DEFAULT NULL,
  `picture_rear` text DEFAULT NULL,
  `pictures` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`),
  KEY `product_number` (`product_number`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_enclosuremodels`
--

LOCK TABLES `glpi_enclosuremodels` WRITE;
/*!40000 ALTER TABLE `glpi_enclosuremodels` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_enclosuremodels` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_enclosures`
--

DROP TABLE IF EXISTS `glpi_enclosures`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_enclosures` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `locations_id` int(10) unsigned NOT NULL DEFAULT 0,
  `serial` varchar(255) DEFAULT NULL,
  `otherserial` varchar(255) DEFAULT NULL,
  `enclosuremodels_id` int(10) unsigned DEFAULT NULL,
  `users_id_tech` int(10) unsigned NOT NULL DEFAULT 0,
  `groups_id_tech` int(10) unsigned NOT NULL DEFAULT 0,
  `is_template` tinyint(4) NOT NULL DEFAULT 0,
  `template_name` varchar(255) DEFAULT NULL,
  `is_deleted` tinyint(4) NOT NULL DEFAULT 0,
  `orientation` tinyint(4) DEFAULT NULL,
  `power_supplies` tinyint(4) NOT NULL DEFAULT 0,
  `states_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'RELATION to states (id)',
  `comment` text DEFAULT NULL,
  `manufacturers_id` int(10) unsigned NOT NULL DEFAULT 0,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `locations_id` (`locations_id`),
  KEY `enclosuremodels_id` (`enclosuremodels_id`),
  KEY `users_id_tech` (`users_id_tech`),
  KEY `group_id_tech` (`groups_id_tech`),
  KEY `is_template` (`is_template`),
  KEY `is_deleted` (`is_deleted`),
  KEY `states_id` (`states_id`),
  KEY `manufacturers_id` (`manufacturers_id`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_enclosures`
--

LOCK TABLES `glpi_enclosures` WRITE;
/*!40000 ALTER TABLE `glpi_enclosures` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_enclosures` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_entities`
--

DROP TABLE IF EXISTS `glpi_entities`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_entities` (
  `id` int(10) unsigned NOT NULL DEFAULT 0,
  `name` varchar(255) DEFAULT NULL,
  `entities_id` int(10) unsigned DEFAULT 0,
  `completename` text DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `level` int(11) NOT NULL DEFAULT 0,
  `sons_cache` longtext DEFAULT NULL,
  `ancestors_cache` longtext DEFAULT NULL,
  `registration_number` varchar(255) DEFAULT NULL,
  `address` text DEFAULT NULL,
  `postcode` varchar(255) DEFAULT NULL,
  `town` varchar(255) DEFAULT NULL,
  `state` varchar(255) DEFAULT NULL,
  `country` varchar(255) DEFAULT NULL,
  `website` varchar(255) DEFAULT NULL,
  `phonenumber` varchar(255) DEFAULT NULL,
  `fax` varchar(255) DEFAULT NULL,
  `email` varchar(255) DEFAULT NULL,
  `admin_email` varchar(255) DEFAULT NULL,
  `admin_email_name` varchar(255) DEFAULT NULL,
  `from_email` varchar(255) DEFAULT NULL,
  `from_email_name` varchar(255) DEFAULT NULL,
  `noreply_email` varchar(255) DEFAULT NULL,
  `noreply_email_name` varchar(255) DEFAULT NULL,
  `replyto_email` varchar(255) DEFAULT NULL,
  `replyto_email_name` varchar(255) DEFAULT NULL,
  `notification_subject_tag` varchar(255) DEFAULT NULL,
  `ldap_dn` varchar(255) DEFAULT NULL,
  `tag` varchar(255) DEFAULT NULL,
  `authldaps_id` int(10) unsigned NOT NULL DEFAULT 0,
  `mail_domain` varchar(255) DEFAULT NULL,
  `entity_ldapfilter` text DEFAULT NULL,
  `mailing_signature` text DEFAULT NULL,
  `cartridges_alert_repeat` int(11) NOT NULL DEFAULT -2,
  `consumables_alert_repeat` int(11) NOT NULL DEFAULT -2,
  `use_licenses_alert` int(11) NOT NULL DEFAULT -2,
  `send_licenses_alert_before_delay` int(11) NOT NULL DEFAULT -2,
  `use_certificates_alert` int(11) NOT NULL DEFAULT -2,
  `send_certificates_alert_before_delay` int(11) NOT NULL DEFAULT -2,
  `certificates_alert_repeat_interval` int(11) NOT NULL DEFAULT -2,
  `use_contracts_alert` int(11) NOT NULL DEFAULT -2,
  `send_contracts_alert_before_delay` int(11) NOT NULL DEFAULT -2,
  `use_infocoms_alert` int(11) NOT NULL DEFAULT -2,
  `send_infocoms_alert_before_delay` int(11) NOT NULL DEFAULT -2,
  `use_reservations_alert` int(11) NOT NULL DEFAULT -2,
  `use_domains_alert` int(11) NOT NULL DEFAULT -2,
  `send_domains_alert_close_expiries_delay` int(11) NOT NULL DEFAULT -2,
  `send_domains_alert_expired_delay` int(11) NOT NULL DEFAULT -2,
  `autoclose_delay` int(11) NOT NULL DEFAULT -2,
  `autopurge_delay` int(11) NOT NULL DEFAULT -2,
  `notclosed_delay` int(11) NOT NULL DEFAULT -2,
  `calendars_strategy` tinyint(4) NOT NULL DEFAULT -2,
  `calendars_id` int(10) unsigned NOT NULL DEFAULT 0,
  `auto_assign_mode` int(11) NOT NULL DEFAULT -2,
  `tickettype` int(11) NOT NULL DEFAULT -2,
  `max_closedate` timestamp NULL DEFAULT NULL,
  `inquest_config` int(11) NOT NULL DEFAULT -2,
  `inquest_rate` int(11) NOT NULL DEFAULT 0,
  `inquest_delay` int(11) NOT NULL DEFAULT -10,
  `inquest_URL` varchar(255) DEFAULT NULL,
  `autofill_warranty_date` varchar(255) NOT NULL DEFAULT '-2',
  `autofill_use_date` varchar(255) NOT NULL DEFAULT '-2',
  `autofill_buy_date` varchar(255) NOT NULL DEFAULT '-2',
  `autofill_delivery_date` varchar(255) NOT NULL DEFAULT '-2',
  `autofill_order_date` varchar(255) NOT NULL DEFAULT '-2',
  `tickettemplates_strategy` tinyint(4) NOT NULL DEFAULT -2,
  `tickettemplates_id` int(10) unsigned NOT NULL DEFAULT 0,
  `changetemplates_strategy` tinyint(4) NOT NULL DEFAULT -2,
  `changetemplates_id` int(10) unsigned NOT NULL DEFAULT 0,
  `problemtemplates_strategy` tinyint(4) NOT NULL DEFAULT -2,
  `problemtemplates_id` int(10) unsigned NOT NULL DEFAULT 0,
  `entities_strategy_software` tinyint(4) NOT NULL DEFAULT -2,
  `entities_id_software` int(10) unsigned NOT NULL DEFAULT 0,
  `default_contract_alert` int(11) NOT NULL DEFAULT -2,
  `default_infocom_alert` int(11) NOT NULL DEFAULT -2,
  `default_cartridges_alarm_threshold` int(11) NOT NULL DEFAULT -2,
  `default_consumables_alarm_threshold` int(11) NOT NULL DEFAULT -2,
  `delay_send_emails` int(11) NOT NULL DEFAULT -2,
  `is_notif_enable_default` int(11) NOT NULL DEFAULT -2,
  `inquest_duration` int(11) NOT NULL DEFAULT 0,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  `autofill_decommission_date` varchar(255) NOT NULL DEFAULT '-2',
  `suppliers_as_private` int(11) NOT NULL DEFAULT -2,
  `anonymize_support_agents` int(11) NOT NULL DEFAULT -2,
  `display_users_initials` int(11) NOT NULL DEFAULT -2,
  `contracts_strategy_default` tinyint(4) NOT NULL DEFAULT -2,
  `contracts_id_default` int(10) unsigned NOT NULL DEFAULT 0,
  `enable_custom_css` int(11) NOT NULL DEFAULT -2,
  `custom_css_code` text DEFAULT NULL,
  `latitude` varchar(255) DEFAULT NULL,
  `longitude` varchar(255) DEFAULT NULL,
  `altitude` varchar(255) DEFAULT NULL,
  `transfers_strategy` tinyint(4) NOT NULL DEFAULT -2,
  `transfers_id` int(10) unsigned NOT NULL DEFAULT 0,
  `agent_base_url` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`entities_id`,`name`),
  KEY `name` (`name`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`),
  KEY `tickettemplates_id` (`tickettemplates_id`),
  KEY `changetemplates_id` (`changetemplates_id`),
  KEY `problemtemplates_id` (`problemtemplates_id`),
  KEY `transfers_id` (`transfers_id`),
  KEY `authldaps_id` (`authldaps_id`),
  KEY `calendars_id` (`calendars_id`),
  KEY `entities_id_software` (`entities_id_software`),
  KEY `contracts_id_default` (`contracts_id_default`),
  KEY `level` (`level`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_entities`
--

LOCK TABLES `glpi_entities` WRITE;
/*!40000 ALTER TABLE `glpi_entities` DISABLE KEYS */;
INSERT INTO `glpi_entities` VALUES
(0,'Entidade raiz',NULL,'Entidade raiz',NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,0,0,0,0,0,0,0,0,0,0,0,0,0,30,1,-10,-10,0,0,0,-10,1,NULL,1,0,0,NULL,'0','0','0','0','0',0,1,0,1,0,1,-10,0,0,0,10,10,0,1,0,NULL,NULL,'0',0,0,1,0,0,0,'',NULL,NULL,NULL,0,0,NULL),
(2,'Tecnomulti',3,'Entidade raiz > Wintech > Tecnomulti','',3,'{\"2\":2}','{\"0\":0,\"3\":3}',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,0,-2,-2,'2024-12-27 21:14:54',-2,0,-10,NULL,'-2','-2','-2','-2','-2',-2,0,-2,0,-2,0,-2,0,-2,-2,-2,-2,-2,-2,0,'2025-01-16 01:54:27','2024-12-27 21:14:54','-2',-2,-2,-2,-2,0,-2,'',NULL,NULL,NULL,-2,0,NULL),
(3,'Wintech',0,'Entidade raiz > Wintech','',2,'{\"3\":\"3\",\"2\":2}','[0]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,-2,0,-2,-2,'2025-01-16 01:54:14',-2,0,-10,NULL,'-2','-2','-2','-2','-2',-2,0,-2,0,-2,0,-2,0,-2,-2,-2,-2,-2,-2,0,'2025-01-16 01:54:14','2025-01-16 01:54:14','-2',-2,-2,-2,-2,0,-2,'',NULL,NULL,NULL,-2,0,NULL);
/*!40000 ALTER TABLE `glpi_entities` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_entities_knowbaseitems`
--

DROP TABLE IF EXISTS `glpi_entities_knowbaseitems`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_entities_knowbaseitems` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `knowbaseitems_id` int(10) unsigned NOT NULL DEFAULT 0,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `knowbaseitems_id` (`knowbaseitems_id`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_entities_knowbaseitems`
--

LOCK TABLES `glpi_entities_knowbaseitems` WRITE;
/*!40000 ALTER TABLE `glpi_entities_knowbaseitems` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_entities_knowbaseitems` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_entities_reminders`
--

DROP TABLE IF EXISTS `glpi_entities_reminders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_entities_reminders` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `reminders_id` int(10) unsigned NOT NULL DEFAULT 0,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `reminders_id` (`reminders_id`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_entities_reminders`
--

LOCK TABLES `glpi_entities_reminders` WRITE;
/*!40000 ALTER TABLE `glpi_entities_reminders` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_entities_reminders` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_entities_rssfeeds`
--

DROP TABLE IF EXISTS `glpi_entities_rssfeeds`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_entities_rssfeeds` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `rssfeeds_id` int(10) unsigned NOT NULL DEFAULT 0,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `rssfeeds_id` (`rssfeeds_id`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_entities_rssfeeds`
--

LOCK TABLES `glpi_entities_rssfeeds` WRITE;
/*!40000 ALTER TABLE `glpi_entities_rssfeeds` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_entities_rssfeeds` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_events`
--

DROP TABLE IF EXISTS `glpi_events`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_events` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `items_id` int(10) unsigned NOT NULL DEFAULT 0,
  `type` varchar(255) DEFAULT NULL,
  `date` timestamp NULL DEFAULT NULL,
  `service` varchar(255) DEFAULT NULL,
  `level` int(11) NOT NULL DEFAULT 0,
  `message` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `date` (`date`),
  KEY `level` (`level`),
  KEY `item` (`type`,`items_id`)
) ENGINE=InnoDB AUTO_INCREMENT=843 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_events`
--

LOCK TABLES `glpi_events` WRITE;
/*!40000 ALTER TABLE `glpi_events` DISABLE KEYS */;
INSERT INTO `glpi_events` VALUES
(1,0,'system','2024-12-27 05:24:22','login',3,'glpi fez login no IP 187.19.242.137'),
(2,7,'users','2024-12-27 05:47:33','setup',4,'glpi adicionou o item paulovictorfds'),
(3,0,'system','2024-12-27 05:53:07','login',3,'paulovictorfds fez login no IP 187.19.242.137'),
(4,8,'users','2024-12-27 13:18:42','setup',4,'paulovictorfds adicionou o item alexcruz'),
(5,0,'system','2024-12-27 13:53:55','login',3,'alexcruz fez login no IP 177.89.21.161'),
(6,1,'Manufacturer','2024-12-27 14:00:32','setup',4,'alexcruz adicionou o item DELL'),
(7,1,'ComputerType','2024-12-27 14:00:49','setup',4,'alexcruz adicionou o item DESKTOP'),
(8,2,'ComputerType','2024-12-27 14:00:55','setup',4,'alexcruz adicionou o item ALL IN ONE'),
(9,3,'ComputerType','2024-12-27 14:01:01','setup',4,'alexcruz adicionou o item NOTEBOOK'),
(10,0,'system','2024-12-27 19:40:42','login',3,'paulovictorfds fez login no IP 187.19.242.137'),
(11,0,'system','2024-12-27 19:41:47','login',3,'paulovictorfds fez login no IP 187.19.242.137'),
(12,1,'Entity','2024-12-27 19:43:22','setup',4,'paulovictorfds adicionou o item Tecnomulti'),
(13,9,'users','2024-12-27 19:44:47','setup',4,'paulovictorfds adicionou o item teste-cliente'),
(14,0,'system','2024-12-27 19:45:15','login',3,'Login falhou para cliente-teste no IP 187.19.242.137'),
(15,0,'system','2024-12-27 19:45:21','login',3,'teste-cliente fez login no IP 187.19.242.137'),
(16,0,'system','2024-12-27 19:45:32','login',3,'teste-cliente fez login no IP 187.61.153.218'),
(17,0,'system','2024-12-27 19:47:45','login',3,'paulovictorfds fez login no IP 187.19.242.137'),
(18,1,'ticket','2024-12-27 19:49:41','tracking',4,'teste-cliente adicionou o item 1'),
(19,0,'system','2024-12-27 19:49:49','login',3,'alexcruz fez login no IP 187.61.153.218'),
(20,1,'ticket','2024-12-27 19:53:52','tracking',4,'teste-cliente excluiu um item'),
(21,2,'ticket','2024-12-27 19:54:33','tracking',4,'teste-cliente adicionou o item 2'),
(22,2,'ticket','2024-12-27 19:55:01','tracking',4,'alexcruz atualizou um item'),
(23,2,'ticket','2024-12-27 19:56:56','tracking',4,'alexcruz adicionou um acompanhamento'),
(24,2,'ticket','2024-12-27 19:56:59','tracking',4,'alexcruz atualizou um item'),
(25,2,'ticket','2024-12-27 19:57:29','tracking',4,'alexcruz atualizou um item'),
(26,3,'ticket','2024-12-27 19:58:27','tracking',4,'teste-cliente adicionou o item 3'),
(27,3,'ticket','2024-12-27 20:00:04','tracking',4,'alexcruz adicionou um acompanhamento'),
(28,3,'ticket','2024-12-27 20:00:35','tracking',4,'alexcruz atualizou um item'),
(29,4,'ticket','2024-12-27 20:14:37','tracking',4,'alexcruz adicionou o item 4'),
(30,5,'ticket','2024-12-27 20:17:33','tracking',4,'teste-cliente adicionou o item 5'),
(31,5,'ticket','2024-12-27 20:18:04','tracking',4,'alexcruz atualizou um item'),
(32,5,'ticket','2024-12-27 20:18:38','tracking',4,'alexcruz adicionou um acompanhamento'),
(33,5,'ticket','2024-12-27 20:18:41','tracking',4,'alexcruz atualizou um item'),
(34,5,'ticket','2024-12-27 20:19:00','tracking',4,'alexcruz atualizou um item'),
(35,6,'ticket','2024-12-27 20:21:17','tracking',4,'teste-cliente adicionou o item 6'),
(36,0,'system','2024-12-27 20:22:57','setup',3,'paulovictorfds editou a configuração de notificações dos navegadores'),
(37,7,'ticket','2024-12-27 20:25:24','tracking',4,'teste-cliente adicionou o item 7'),
(38,8,'ticket','2024-12-27 20:25:51','tracking',4,'teste-cliente adicionou o item 8'),
(39,1,'tickettemplate','2024-12-27 20:33:38','maintain',4,'paulovictorfds adiciona escondido campo'),
(40,1,'tickettemplate','2024-12-27 20:34:03','maintain',4,'paulovictorfds adiciona escondido campo'),
(41,1,'tickettemplate','2024-12-27 20:34:28','maintain',4,'paulovictorfds adiciona escondido campo'),
(42,1,'ITILCategory','2024-12-27 20:36:12','setup',4,'paulovictorfds adicionou o item Equipamentos/Periféricos'),
(43,1,'ITILCategory','2024-12-27 20:36:33','setup',4,'paulovictorfds atualizou um item'),
(44,1,'ITILCategory','2024-12-27 20:36:44','setup',4,'paulovictorfds atualizou um item'),
(45,2,'ITILCategory','2024-12-27 20:38:40','setup',4,'paulovictorfds adicionou o item Rede'),
(46,2,'ITILCategory','2024-12-27 20:38:54','setup',4,'paulovictorfds atualizou um item'),
(47,3,'ITILCategory','2024-12-27 20:39:47','setup',4,'paulovictorfds adicionou o item E-mail'),
(48,3,'ITILCategory','2024-12-27 20:39:59','setup',4,'paulovictorfds atualizou um item'),
(49,2,'ITILCategory','2024-12-27 20:40:08','setup',4,'paulovictorfds atualizou um item'),
(50,9,'ticket','2024-12-27 20:43:16','tracking',4,'teste-cliente adicionou o item 9'),
(51,1,'tickettemplate','2024-12-27 20:46:00','maintain',4,'paulovictorfds adiciona obrigatório campo'),
(52,1,'tickettemplate','2024-12-27 20:49:20','maintain',4,'paulovictorfds adiciona predefinido campo'),
(53,1,'tickettemplate','2024-12-27 20:50:41','maintain',4,'paulovictorfds adiciona obrigatório campo'),
(54,10,'ticket','2024-12-27 20:53:59','tracking',4,'paulovictorfds adicionou o item 10'),
(55,11,'ticket','2024-12-27 21:17:40','tracking',4,'paulovictorfds adicionou o item 11'),
(56,2,'Entity','2024-12-27 21:19:14','setup',4,'paulovictorfds atualizou um item'),
(57,9,'users','2024-12-27 21:22:24','setup',5,'paulovictorfds atualizou um item'),
(58,9,'users','2024-12-27 21:22:45','setup',5,'paulovictorfds atualizou um item'),
(59,9,'users','2024-12-27 21:22:58','setup',4,'paulovictorfds adicionou um usuário a uma entidade'),
(60,9,'users','2024-12-27 21:24:14','setup',5,'paulovictorfds atualizou um item'),
(61,0,'system','2024-12-27 21:28:32','login',3,'tecnomulti fez login no IP 187.61.153.218'),
(62,0,'system','2024-12-27 21:47:28','login',3,'tecnomulti fez login no IP 187.61.153.218'),
(63,12,'ticket','2024-12-27 21:48:54','tracking',4,'tecnomulti adicionou o item 12'),
(64,12,'ticket','2024-12-27 21:49:27','tracking',4,'alexcruz adicionou um acompanhamento'),
(65,12,'ticket','2024-12-27 21:49:34','tracking',4,'alexcruz atualizou um item'),
(66,12,'ticket','2024-12-27 21:50:19','tracking',4,'tecnomulti adicionou um acompanhamento'),
(67,12,'ticket','2024-12-27 21:50:35','tracking',4,'tecnomulti adicionou um acompanhamento'),
(68,12,'ticket','2024-12-27 21:50:59','tracking',4,'alexcruz atualizou um item'),
(69,0,'system','2025-01-03 01:07:22','login',3,'paulovictorfds fez login no IP 187.19.242.137'),
(70,8,'users','2025-01-03 01:21:09','setup',4,'paulovictorfds adicionou um usuário a uma entidade'),
(71,0,'system','2025-01-03 01:22:39','login',3,'alexcruz fez login no IP 187.61.153.218'),
(72,5,'profiles','2025-01-03 01:33:28','setup',4,'paulovictorfds atualizou um item'),
(73,1,'contacts','2025-01-03 03:07:14','financial',4,'paulovictorfds adicionou o item Alex'),
(74,12,'ticket','2025-01-03 03:10:38','tracking',4,'alexcruz adicionou um acompanhamento'),
(75,12,'ticket','2025-01-03 03:11:02','tracking',4,'paulovictorfds atualizou um item'),
(76,12,'ticket','2025-01-03 03:11:27','tracking',4,'alexcruz atualizou um item'),
(77,0,'system','2025-01-03 03:15:04','login',3,'tecnomulti fez login no IP 187.61.153.218'),
(78,3,'ITILCategory','2025-01-03 03:15:09','setup',4,'paulovictorfds atualizou um item'),
(79,13,'ticket','2025-01-03 03:15:24','tracking',4,'tecnomulti adicionou o item 13'),
(80,13,'ticket','2025-01-03 03:16:55','tracking',4,'alexcruz adicionou um acompanhamento'),
(81,13,'ticket','2025-01-03 03:16:56','tracking',4,'alexcruz atualizou um item'),
(82,14,'ticket','2025-01-03 03:21:44','tracking',4,'tecnomulti adicionou o item 14'),
(83,9,'users','2025-01-03 03:21:44','setup',4,'paulovictorfds adicionou um usuário a uma entidade'),
(84,0,'system','2025-01-03 03:22:19','login',3,'tecnomulti fez login no IP 187.61.153.218'),
(85,7,'users','2025-01-03 03:22:34','setup',4,'paulovictorfds adicionou um usuário a uma entidade'),
(86,15,'ticket','2025-01-03 03:22:35','tracking',4,'tecnomulti adicionou o item 15'),
(87,13,'ticket','2025-01-03 03:24:27','tracking',4,'alexcruz atualizou um item'),
(88,1,'ITILCategory','2025-01-03 03:24:59','setup',4,'paulovictorfds atualizou um item'),
(89,1,'tickettemplate','2025-01-03 03:29:30','maintain',4,'paulovictorfds adiciona obrigatório campo'),
(90,1,'tickettemplate','2025-01-03 03:31:39','maintain',4,'paulovictorfds adiciona obrigatório campo'),
(91,1,'tickettemplate','2025-01-03 03:32:08','maintain',4,'paulovictorfds adiciona obrigatório campo'),
(92,0,'system','2025-01-03 03:32:45','login',3,'tecnomulti fez login no IP 187.19.242.137'),
(93,1,'ITILCategory','2025-01-03 04:07:09','setup',4,'paulovictorfds atualizou um item'),
(94,1,'tickettemplate','2025-01-03 04:15:07','maintain',4,'paulovictorfds adiciona predefinido campo'),
(95,7,'users','2025-01-03 04:16:34','setup',4,'paulovictorfds adicionou um usuário a uma entidade'),
(96,7,'users','2025-01-03 04:20:25','setup',4,'paulovictorfds adicionou um usuário a uma entidade'),
(97,0,'system','2025-01-03 04:21:28','login',3,'paulovictorfds fez login no IP 187.19.242.137'),
(98,0,'system','2025-01-03 04:23:30','login',3,'paulovictorfds fez login no IP 187.19.242.137'),
(99,0,'system','2025-01-03 04:24:04','login',3,'paulovictorfds fez login no IP 187.19.242.137'),
(100,0,'system','2025-01-03 16:15:51','login',3,'paulovictorfds fez login no IP 187.19.242.185'),
(101,0,'system','2025-01-03 16:18:06','login',3,'paulovictorfds fez login no IP 187.19.242.185'),
(102,0,'system','2025-01-06 21:23:45','login',3,'alexcruz fez login no IP 187.61.153.218'),
(103,8,'users','2025-01-06 21:24:24','setup',5,'alexcruz atualizou um item'),
(104,1,'budget','2025-01-06 21:36:49','financial',4,'alexcruz adicionou o item PV'),
(105,0,'system','2025-01-06 21:46:51','login',3,'tecnomulti fez login no IP 187.61.153.218'),
(106,0,'system','2025-01-06 21:50:16','login',3,'tecnomulti fez login no IP 187.19.242.209'),
(107,16,'ticket','2025-01-06 21:50:51','tracking',4,'tecnomulti adicionou o item 16'),
(108,16,'ticket','2025-01-06 21:54:28','tracking',4,'alexcruz adicionou um acompanhamento'),
(109,16,'ticket','2025-01-06 21:54:40','tracking',4,'alexcruz atualizou um item'),
(110,16,'ticket','2025-01-06 21:55:04','tracking',4,'alexcruz atualizou um item'),
(111,10,'users','2025-01-06 22:05:37','setup',4,'paulovictorfds adicionou o item luanmedeiros'),
(112,0,'system','2025-01-06 22:51:07','login',3,'paulovictorfds fez login no IP 187.19.242.209'),
(113,0,'system','2025-01-07 11:11:10','login',3,'tecnomulti fez login no IP 177.89.21.161'),
(114,0,'system','2025-01-07 11:12:52','login',3,'Login falhou para luanmedeiros no IP 177.89.21.161'),
(115,0,'system','2025-01-07 11:13:11','login',3,'Login falhou para luanmedeiros no IP 177.89.21.161'),
(116,0,'system','2025-01-07 11:13:44','login',3,'alexcruz fez login no IP 177.89.21.161'),
(117,10,'users','2025-01-07 11:16:17','setup',5,'alexcruz atualizou um item'),
(118,0,'system','2025-01-07 11:17:03','login',3,'Luanmedeiros fez login no IP 177.89.21.161'),
(119,0,'system','2025-01-07 11:20:11','login',3,'alexcruz fez login no IP 177.89.21.161'),
(120,0,'system','2025-01-07 13:30:09','login',3,'alexcruz fez login no IP 177.89.21.161'),
(121,0,'system','2025-01-07 13:37:00','login',3,'Login falhou para denilson.marques@tecnomulti.com no IP 168.196.199.10'),
(122,0,'system','2025-01-07 13:38:18','login',3,'tecnomulti fez login no IP 168.196.199.10'),
(123,17,'ticket','2025-01-07 13:39:34','tracking',4,'tecnomulti adicionou o item 17'),
(124,0,'system','2025-01-07 13:41:27','login',3,'tecnomulti fez login no IP 177.89.21.161'),
(125,0,'system','2025-01-07 13:43:46','login',3,'Login falhou para Tecnomulti no IP 168.196.199.15'),
(126,0,'system','2025-01-07 13:44:19','login',3,'tecnomulti fez login no IP 168.196.199.15'),
(127,17,'ticket','2025-01-07 13:48:56','tracking',4,'alexcruz adicionou um acompanhamento'),
(128,17,'ticket','2025-01-07 13:49:01','tracking',4,'alexcruz atualizou um item'),
(129,17,'ticket','2025-01-07 13:49:27','tracking',4,'alexcruz atualizou um item'),
(130,0,'system','2025-01-07 13:52:37','login',3,'tecnomulti fez login no IP 168.196.199.10'),
(131,18,'ticket','2025-01-07 13:56:33','tracking',4,'tecnomulti adicionou o item 18'),
(132,18,'ticket','2025-01-07 13:57:45','tracking',4,'alexcruz adicionou um acompanhamento'),
(133,18,'ticket','2025-01-07 13:57:50','tracking',4,'alexcruz atualizou um item'),
(134,18,'ticket','2025-01-07 13:58:07','tracking',4,'alexcruz atualizou um item'),
(135,0,'system','2025-01-07 14:05:38','login',3,'Login falhou para luanmedeiros no IP 177.89.21.161'),
(136,0,'system','2025-01-07 14:06:18','login',3,'Login falhou para luanmedeiros no IP 168.196.199.15'),
(137,0,'system','2025-01-07 14:07:19','login',3,'Login falhou para luanmedeiros no IP 168.196.199.15'),
(138,0,'system','2025-01-07 14:07:32','login',3,'Login falhou para luanmedeiros no IP 177.89.21.161'),
(139,10,'users','2025-01-07 14:08:04','setup',5,'alexcruz atualizou um item'),
(140,0,'system','2025-01-07 14:08:17','login',3,'luanmedeiros fez login no IP 177.89.21.161'),
(141,0,'system','2025-01-07 14:08:52','login',3,'Login falhou para luanmedeiros no IP 168.196.199.15'),
(142,0,'system','2025-01-07 14:09:10','login',3,'Login falhou para luanmedeiros no IP 168.196.199.15'),
(143,0,'system','2025-01-07 14:10:42','login',3,'luanmedeiros fez login no IP 168.196.199.15'),
(144,0,'system','2025-01-07 14:23:32','Impersonate',3,'alexcruz começa a personificar o usuário luanmedeiros'),
(145,0,'system','2025-01-07 14:25:17','login',3,'alexcruz fez login no IP 177.89.21.161'),
(146,0,'system','2025-01-07 15:02:51','login',3,'Login falhou para  no IP 187.19.242.209'),
(147,0,'system','2025-01-07 15:03:05','login',3,'paulovictorfds fez login no IP 187.19.242.209'),
(148,0,'system','2025-01-07 15:15:50','Impersonate',3,'paulovictorfds começa a personificar o usuário luanmedeiros'),
(149,0,'system','2025-01-07 15:16:23','Impersonate',3,'paulovictorfds pára de personificar o usuário luanmedeiros'),
(150,0,'system','2025-01-07 15:17:55','Impersonate',3,'paulovictorfds começa a personificar o usuário luanmedeiros'),
(151,0,'system','2025-01-07 15:19:00','Impersonate',3,'paulovictorfds pára de personificar o usuário luanmedeiros'),
(152,5,'profiles','2025-01-07 15:21:15','setup',4,'paulovictorfds atualizou um item'),
(153,0,'system','2025-01-07 15:25:13','Impersonate',3,'paulovictorfds começa a personificar o usuário luanmedeiros'),
(154,0,'system','2025-01-07 15:27:33','Impersonate',3,'paulovictorfds pára de personificar o usuário luanmedeiros'),
(155,0,'system','2025-01-07 15:27:57','login',3,'luanmedeiros fez login no IP 177.89.21.161'),
(156,0,'system','2025-01-07 18:03:26','login',3,'tecnomulti fez login no IP 168.196.199.10'),
(157,0,'system','2025-01-07 19:28:34','login',3,'Login falhou para  no IP 177.173.228.200'),
(158,0,'system','2025-01-08 09:35:53','login',3,'tecnomulti fez login no IP 179.73.180.177'),
(159,19,'ticket','2025-01-08 09:38:38','tracking',4,'tecnomulti adicionou o item 19'),
(160,0,'system','2025-01-08 12:18:53','login',3,'alexcruz fez login no IP 187.61.153.218'),
(161,8,'users','2025-01-08 12:19:53','setup',5,'alexcruz atualizou um item'),
(162,0,'system','2025-01-08 12:20:04','login',3,'alexcruz fez login no IP 187.61.153.218'),
(163,19,'ticket','2025-01-08 12:22:46','tracking',4,'alexcruz adicionou um acompanhamento'),
(164,19,'ticket','2025-01-08 12:22:58','tracking',4,'alexcruz atualizou um item'),
(165,17,'ticket','2025-01-08 12:28:46','tracking',4,'alexcruz atualizou um item'),
(166,0,'system','2025-01-08 13:08:02','login',3,'tecnomulti fez login no IP 191.33.89.21'),
(167,20,'ticket','2025-01-08 13:21:24','tracking',4,'tecnomulti adicionou o item 20'),
(168,20,'ticket','2025-01-08 13:26:44','tracking',4,'alexcruz atualizou um item'),
(169,20,'ticket','2025-01-08 13:26:58','tracking',4,'alexcruz adicionou um acompanhamento'),
(170,20,'ticket','2025-01-08 13:36:33','tracking',4,'alexcruz adicionou um acompanhamento'),
(171,20,'ticket','2025-01-08 13:36:39','tracking',4,'alexcruz atualizou um item'),
(172,4,'ITILCategory','2025-01-08 13:47:21','setup',4,'alexcruz adicionou o item Sistemas VIVO/FIBRASIL'),
(173,0,'system','2025-01-08 14:31:26','login',3,'paulovictorfds fez login no IP 187.19.242.209'),
(174,0,'system','2025-01-08 16:34:41','login',3,'tecnomulti fez login no IP 168.196.199.10'),
(175,21,'ticket','2025-01-08 16:36:37','tracking',4,'tecnomulti adicionou o item 21'),
(176,0,'system','2025-01-08 17:24:24','login',3,'luanmedeiros fez login no IP 177.89.21.161'),
(177,0,'system','2025-01-08 18:18:09','login',3,'tecnomulti fez login no IP 191.33.89.21'),
(178,0,'system','2025-01-08 20:02:28','login',3,'alexcruz fez login no IP 187.61.153.218'),
(179,21,'ticket','2025-01-08 20:03:48','tracking',4,'alexcruz atualizou um item'),
(180,21,'ticket','2025-01-08 20:04:08','tracking',4,'alexcruz adicionou um acompanhamento'),
(181,5,'ITILCategory','2025-01-08 20:05:13','setup',4,'alexcruz adicionou o item Sistema Operacional/Programas'),
(182,21,'ticket','2025-01-08 20:06:12','tracking',4,'alexcruz atualizou um item'),
(183,4,'ITILCategory','2025-01-08 20:06:44','setup',4,'alexcruz atualizou um item'),
(184,19,'ticket','2025-01-08 20:15:05','tracking',4,'alexcruz atualizou um item'),
(185,21,'ticket','2025-01-08 20:42:42','tracking',4,'alexcruz adicionou um acompanhamento'),
(186,21,'ticket','2025-01-08 20:42:44','tracking',4,'alexcruz atualizou um item'),
(187,21,'ticket','2025-01-08 20:42:50','tracking',4,'alexcruz atualizou um item'),
(188,0,'system','2025-01-08 23:41:21','login',3,'Login falhou para  no IP 187.19.242.209'),
(189,0,'system','2025-01-08 23:41:27','login',3,'paulovictorfds fez login no IP 187.19.242.209'),
(190,0,'system','2025-01-09 10:05:04','login',3,'Login falhou para Alexcruz no IP 177.51.13.51'),
(191,0,'system','2025-01-09 10:06:58','login',3,'Login falhou para alexcruz no IP 177.51.13.51'),
(192,0,'system','2025-01-09 10:07:43','login',3,'alexcruz fez login no IP 177.51.13.51'),
(193,0,'system','2025-01-09 17:51:26','login',3,'tecnomulti fez login no IP 168.196.198.177'),
(194,0,'system','2025-01-09 17:56:08','login',3,'tecnomulti fez login no IP 168.196.199.10'),
(195,22,'ticket','2025-01-09 17:57:23','tracking',4,'tecnomulti adicionou o item 22'),
(196,0,'system','2025-01-09 17:58:24','login',3,'tecnomulti fez login no IP 177.121.123.16'),
(197,23,'ticket','2025-01-09 18:02:47','tracking',4,'tecnomulti adicionou o item 23'),
(198,0,'system','2025-01-09 18:09:34','login',3,'tecnomulti fez login no IP 200.215.224.210'),
(199,0,'system','2025-01-09 19:39:02','login',3,'tecnomulti fez login no IP 168.196.199.10'),
(200,0,'system','2025-01-09 22:50:37','login',3,'Login falhou para  no IP 187.19.242.209'),
(201,0,'system','2025-01-09 22:50:42','login',3,'paulovictorfds fez login no IP 187.19.242.209'),
(202,0,'system','2025-01-09 23:58:12','login',3,'Login falhou para  no IP 187.61.153.218'),
(203,0,'system','2025-01-09 23:58:45','login',3,'Login falhou para alexcruz no IP 187.61.153.218'),
(204,0,'system','2025-01-09 23:59:08','login',3,'alexcruz fez login no IP 187.61.153.218'),
(205,22,'ticket','2025-01-09 23:59:55','tracking',4,'alexcruz atualizou um item'),
(206,22,'ticket','2025-01-10 00:00:28','tracking',4,'alexcruz adicionou um acompanhamento'),
(207,22,'ticket','2025-01-10 00:00:31','tracking',4,'alexcruz atualizou um item'),
(208,22,'ticket','2025-01-10 00:55:32','tracking',4,'alexcruz adicionou um acompanhamento'),
(209,22,'ticket','2025-01-10 00:55:36','tracking',4,'alexcruz atualizou um item'),
(210,19,'ticket','2025-01-10 00:56:50','tracking',4,'alexcruz atualizou um item'),
(211,23,'ticket','2025-01-10 01:00:23','tracking',4,'alexcruz adicionou um acompanhamento'),
(212,23,'ticket','2025-01-10 01:00:29','tracking',4,'alexcruz atualizou um item'),
(213,0,'system','2025-01-10 01:33:52','login',3,'tecnomulti fez login no IP 187.19.242.209'),
(214,23,'ticket','2025-01-10 11:35:30','tracking',4,'tecnomulti adicionou um acompanhamento'),
(215,0,'system','2025-01-10 16:40:09','login',3,'Login falhou para  no IP 168.196.199.10'),
(216,0,'system','2025-01-10 16:40:14','login',3,'tecnomulti fez login no IP 168.196.199.10'),
(217,24,'ticket','2025-01-10 16:41:54','tracking',4,'tecnomulti adicionou o item 24'),
(218,0,'system','2025-01-10 16:43:58','login',3,'tecnomulti fez login no IP 168.196.199.10'),
(219,0,'system','2025-01-10 16:44:13','login',3,'tecnomulti fez login no IP 168.196.199.10'),
(220,0,'system','2025-01-10 16:44:17','login',3,'tecnomulti fez login no IP 168.196.199.10'),
(221,25,'ticket','2025-01-10 16:45:39','tracking',4,'tecnomulti adicionou o item 25'),
(222,0,'system','2025-01-10 16:45:51','login',3,'luanmedeiros fez login no IP 177.89.21.161'),
(223,26,'ticket','2025-01-10 16:45:54','tracking',4,'tecnomulti adicionou o item 26'),
(224,27,'ticket','2025-01-10 16:46:13','tracking',4,'tecnomulti adicionou o item 27'),
(225,0,'system','2025-01-10 20:53:27','login',3,'alexcruz fez login no IP 187.61.153.218'),
(226,23,'ticket','2025-01-10 20:54:27','tracking',4,'alexcruz adicionou um acompanhamento'),
(227,23,'ticket','2025-01-10 20:54:29','tracking',4,'alexcruz atualizou um item'),
(228,23,'ticket','2025-01-10 20:54:39','tracking',4,'alexcruz atualizou um item'),
(229,0,'system','2025-01-10 21:15:16','login',3,'Login falhou para  no IP 187.19.242.209'),
(230,0,'system','2025-01-10 21:15:19','login',3,'paulovictorfds fez login no IP 187.19.242.209'),
(231,0,'Plugin','2025-01-10 21:20:07','setup',3,'Plugin Form Creator foi instalado por Souza Paulo Victor (7).'),
(232,0,'Plugin','2025-01-10 21:20:16','setup',3,'Plugin Form Creator foi ativado por Souza Paulo Victor (7).'),
(233,0,'system','2025-01-12 17:56:18','login',3,'paulovictorfds fez login no IP 187.19.242.209'),
(234,0,'system','2025-01-13 11:35:19','login',3,'Login falhou para alexcruz no IP 177.89.21.161'),
(235,0,'system','2025-01-13 11:35:45','login',3,'Login falhou para alexcruz no IP 177.89.21.161'),
(236,0,'system','2025-01-13 11:36:12','login',3,'alexcruz fez login no IP 177.89.21.161'),
(237,24,'ticket','2025-01-13 11:37:26','tracking',4,'alexcruz adicionou um acompanhamento'),
(238,24,'ticket','2025-01-13 11:37:37','tracking',4,'alexcruz atualizou um item'),
(239,25,'ticket','2025-01-13 11:38:17','tracking',4,'alexcruz adicionou um acompanhamento'),
(240,25,'ticket','2025-01-13 11:38:27','tracking',4,'alexcruz atualizou um item'),
(241,27,'ticket','2025-01-13 11:39:16','tracking',4,'alexcruz adicionou um acompanhamento'),
(242,26,'ticket','2025-01-13 11:39:55','tracking',4,'alexcruz adicionou um acompanhamento'),
(243,26,'ticket','2025-01-13 11:40:00','tracking',4,'alexcruz atualizou um item'),
(244,27,'ticket','2025-01-13 11:40:20','tracking',4,'alexcruz atualizou um item'),
(245,23,'ticket','2025-01-13 11:40:41','tracking',4,'alexcruz atualizou um item'),
(246,0,'system','2025-01-13 12:15:38','login',3,'tecnomulti fez login no IP 177.89.21.161'),
(247,0,'system','2025-01-13 12:29:32','login',3,'Login falhou para  no IP 168.196.199.10'),
(248,0,'system','2025-01-13 12:29:35','login',3,'tecnomulti fez login no IP 168.196.199.10'),
(249,0,'system','2025-01-13 12:32:32','login',3,'tecnomulti fez login no IP 168.196.199.10'),
(250,28,'ticket','2025-01-13 12:35:41','tracking',4,'tecnomulti adicionou o item 28'),
(251,28,'ticket','2025-01-13 12:37:33','tracking',4,'alexcruz adicionou um acompanhamento'),
(252,28,'ticket','2025-01-13 12:39:20','tracking',4,'tecnomulti adicionou um acompanhamento'),
(253,28,'ticket','2025-01-13 12:39:22','tracking',4,'alexcruz atualizou um item'),
(254,28,'ticket','2025-01-13 12:40:07','tracking',4,'alexcruz adicionou um acompanhamento'),
(255,28,'ticket','2025-01-13 12:41:55','tracking',4,'tecnomulti adicionou um acompanhamento'),
(256,0,'system','2025-01-13 12:47:54','login',3,'tecnomulti fez login no IP 168.196.199.10'),
(257,29,'ticket','2025-01-13 12:51:07','tracking',4,'tecnomulti adicionou o item 29'),
(258,29,'ticket','2025-01-13 12:56:24','tracking',4,'alexcruz adicionou um acompanhamento'),
(259,29,'ticket','2025-01-13 12:56:29','tracking',4,'alexcruz atualizou um item'),
(260,0,'system','2025-01-13 13:19:41','login',3,'paulovictorfds fez login no IP 187.19.242.209'),
(261,29,'ticket','2025-01-13 13:29:54','tracking',4,'alexcruz adicionou um acompanhamento'),
(262,29,'ticket','2025-01-13 13:30:03','tracking',4,'alexcruz atualizou um item'),
(263,29,'ticket','2025-01-13 13:31:06','tracking',4,'alexcruz atualizou um item'),
(264,0,'system','2025-01-13 13:41:56','login',3,'tecnomulti fez login no IP 177.89.21.161'),
(265,28,'ticket','2025-01-13 13:42:54','tracking',4,'alexcruz adicionou um acompanhamento'),
(266,28,'ticket','2025-01-13 13:43:05','tracking',4,'alexcruz atualizou um item'),
(267,0,'system','2025-01-13 20:37:13','login',3,'Login falhou para  no IP 187.19.242.209'),
(268,0,'system','2025-01-13 20:37:19','login',3,'paulovictorfds fez login no IP 187.19.242.209'),
(269,0,'system','2025-01-13 23:58:47','login',3,'paulovictorfds fez login no IP 187.19.242.209'),
(270,0,'system','2025-01-14 03:08:33','login',3,'paulovictorfds fez login no IP 187.19.242.209'),
(271,0,'system','2025-01-14 08:04:26','login',3,'paulovictorfds fez login no IP 187.19.242.209'),
(272,0,'system','2025-01-14 14:07:20','login',3,'tecnomulti fez login no IP 45.224.114.167'),
(273,30,'ticket','2025-01-14 14:18:23','tracking',4,'tecnomulti adicionou o item 30'),
(274,0,'system','2025-01-14 15:30:46','login',3,'Login falhou para alexcruz no IP 177.89.21.161'),
(275,0,'system','2025-01-14 15:31:42','login',3,'alexcruz fez login no IP 177.89.21.161'),
(276,30,'ticket','2025-01-14 15:33:04','tracking',4,'alexcruz adicionou um acompanhamento'),
(277,30,'ticket','2025-01-14 15:33:14','tracking',4,'alexcruz atualizou um item'),
(278,24,'ticket','2025-01-14 15:38:20','tracking',4,'alexcruz adicionou um acompanhamento'),
(279,24,'ticket','2025-01-14 15:38:26','tracking',4,'alexcruz atualizou um item'),
(280,27,'ticket','2025-01-14 15:38:37','tracking',4,'alexcruz adicionou um acompanhamento'),
(281,27,'ticket','2025-01-14 15:38:44','tracking',4,'alexcruz atualizou um item'),
(282,25,'ticket','2025-01-14 15:38:55','tracking',4,'alexcruz adicionou um acompanhamento'),
(283,25,'ticket','2025-01-14 15:39:01','tracking',4,'alexcruz atualizou um item'),
(284,26,'ticket','2025-01-14 15:39:13','tracking',4,'alexcruz adicionou um acompanhamento'),
(285,26,'ticket','2025-01-14 15:39:17','tracking',4,'alexcruz atualizou um item'),
(286,0,'system','2025-01-14 16:36:00','login',3,'tecnomulti fez login no IP 45.224.114.167'),
(287,30,'ticket','2025-01-14 16:40:01','tracking',4,'tecnomulti adicionou um acompanhamento'),
(288,0,'system','2025-01-14 18:20:36','login',3,'tecnomulti fez login no IP 45.224.114.167'),
(289,0,'system','2025-01-14 18:25:12','login',3,'tecnomulti fez login no IP 45.224.114.167'),
(290,0,'system','2025-01-14 18:39:19','login',3,'luanmedeiros fez login no IP 177.89.21.161'),
(291,30,'ticket','2025-01-14 18:42:21','tracking',4,'luanmedeiros adicionou um acompanhamento'),
(292,0,'system','2025-01-14 18:53:35','login',3,'tecnomulti fez login no IP 179.55.108.86'),
(293,31,'ticket','2025-01-14 18:57:19','tracking',4,'tecnomulti adicionou o item 31'),
(294,0,'system','2025-01-14 19:34:03','login',3,'alexcruz fez login no IP 177.89.21.161'),
(295,30,'ticket','2025-01-14 19:35:18','tracking',4,'alexcruz adicionou um acompanhamento'),
(296,30,'ticket','2025-01-14 19:35:24','tracking',4,'alexcruz atualizou um item'),
(297,0,'system','2025-01-14 19:38:13','login',3,'tecnomulti fez login no IP 168.196.199.10'),
(298,32,'ticket','2025-01-14 19:40:44','tracking',4,'tecnomulti adicionou o item 32'),
(299,31,'ticket','2025-01-14 19:58:44','tracking',4,'luanmedeiros adicionou um acompanhamento'),
(300,31,'ticket','2025-01-14 19:58:58','tracking',4,'luanmedeiros atualizou um encaminhamento'),
(301,31,'ticket','2025-01-14 20:01:17','tracking',4,'luanmedeiros atualizou um item'),
(302,32,'ticket','2025-01-14 20:07:08','tracking',4,'luanmedeiros adicionou um acompanhamento'),
(303,32,'ticket','2025-01-14 20:09:39','tracking',4,'alexcruz atualizou um item'),
(304,2,'notifications','2025-01-14 20:45:02','notification',4,'paulovictorfds atualizou um item'),
(305,34,'notificationtemplates','2025-01-14 20:47:39','notification',4,'paulovictorfds adicionou o item notificação sonora'),
(306,34,'notificationtemplatetranslations','2025-01-14 20:49:12','notification',4,'paulovictorfds adicionou o item '),
(307,78,'notifications','2025-01-14 20:50:51','notification',4,'paulovictorfds adicionou o item novo ticket alerta sonoro'),
(308,0,'system','2025-01-14 20:52:46','setup',3,'paulovictorfds editou a configuração de notificações dos navegadores'),
(309,0,'system','2025-01-14 20:53:30','login',3,'paulovictorfds fez login no IP 187.19.242.209'),
(310,0,'system','2025-01-14 20:54:11','setup',3,'paulovictorfds editou a configuração de notificações dos navegadores'),
(311,35,'notificationtemplates','2025-01-14 20:58:17','notification',4,'paulovictorfds adicionou o item teste'),
(312,0,'system','2025-01-14 21:23:49','login',3,'paulovictorfds fez login no IP 187.19.242.209'),
(313,0,'system','2025-01-14 21:27:13','login',3,'tecnomulti fez login no IP 187.19.242.209'),
(314,33,'ticket','2025-01-14 21:27:27','tracking',4,'tecnomulti adicionou o item 33'),
(315,0,'system','2025-01-14 21:32:52','setup',3,'paulovictorfds editou a configuração de notificações dos navegadores'),
(316,0,'system','2025-01-14 21:33:05','setup',3,'paulovictorfds editou a configuração de notificações dos navegadores'),
(317,0,'system','2025-01-14 21:33:17','setup',3,'paulovictorfds editou a configuração de notificações dos navegadores'),
(318,0,'system','2025-01-14 21:33:29','setup',3,'paulovictorfds editou a configuração de notificações dos navegadores'),
(319,36,'notificationtemplates','2025-01-14 21:36:25','notification',4,'paulovictorfds adicionou o item Chamados'),
(320,37,'notificationtemplates','2025-01-14 21:38:17','notification',4,'paulovictorfds adicionou o item Chamados'),
(321,35,'notificationtemplatetranslations','2025-01-14 21:39:22','notification',4,'paulovictorfds adicionou o item pt_BR'),
(322,36,'notificationtemplatetranslations','2025-01-14 21:40:17','notification',4,'paulovictorfds adicionou o item pt_BR'),
(323,34,'ticket','2025-01-14 21:41:20','tracking',4,'tecnomulti adicionou o item 34'),
(324,37,'notificationtemplatetranslations','2025-01-14 21:44:46','notification',4,'paulovictorfds adicionou o item '),
(325,35,'ticket','2025-01-14 21:49:45','tracking',4,'tecnomulti adicionou o item 35'),
(326,0,'system','2025-01-15 10:56:58','login',3,'alexcruz fez login no IP 177.89.21.161'),
(327,0,'system','2025-01-15 19:01:41','login',3,'tecnomulti fez login no IP 45.224.114.167'),
(328,36,'ticket','2025-01-15 19:02:56','tracking',4,'tecnomulti adicionou o item 36'),
(329,1,'PluginFormcreatorCategory','2025-01-15 23:53:23','setup',4,'paulovictorfds adicionou o item Chamado'),
(330,0,'system','2025-01-16 00:16:26','login',3,'tecnomulti fez login no IP 187.19.242.209'),
(331,37,'ticket','2025-01-16 00:34:24','tracking',4,'tecnomulti adicionou o item 37'),
(332,38,'ticket','2025-01-16 00:52:50','tracking',4,'tecnomulti adicionou o item 38'),
(333,7,'RequestType','2025-01-16 00:57:44','setup',4,'paulovictorfds atualizou um item'),
(334,39,'ticket','2025-01-16 01:10:05','tracking',4,'tecnomulti adicionou o item 39'),
(335,9,'users','2025-01-16 01:17:34','setup',5,'paulovictorfds atualizou um item'),
(336,1,'profiles','2025-01-16 01:21:16','setup',4,'paulovictorfds atualizou um item'),
(337,2,'TicketTemplate','2025-01-16 01:21:55','setup',4,'paulovictorfds adicionou o item FormCreator'),
(338,1,'profiles','2025-01-16 01:26:11','setup',4,'paulovictorfds atualizou um item'),
(339,1,'profiles','2025-01-16 01:48:54','setup',4,'paulovictorfds atualizou um item'),
(340,1,'profiles','2025-01-16 01:49:35','setup',4,'paulovictorfds atualizou um item'),
(341,0,'system','2025-01-16 01:51:37','login',3,'tecnomulti fez login no IP 187.19.242.209'),
(342,40,'ticket','2025-01-16 01:52:08','tracking',4,'tecnomulti adicionou o item 40'),
(343,41,'ticket','2025-01-16 01:53:32','tracking',4,'tecnomulti adicionou o item 41'),
(344,3,'Entity','2025-01-16 01:54:14','setup',4,'paulovictorfds adicionou o item Wintech'),
(345,2,'Entity','2025-01-16 01:54:27','setup',4,'paulovictorfds atualizou um item'),
(346,0,'system','2025-01-16 01:56:44','login',3,'paulovictorfds fez login no IP 187.19.242.209'),
(347,0,'system','2025-01-16 01:56:56','login',3,'tecnomulti fez login no IP 187.19.242.209'),
(348,42,'ticket','2025-01-16 01:57:47','tracking',4,'tecnomulti adicionou o item 42'),
(349,0,'system','2025-01-16 02:07:18','login',3,'tecnomulti fez login no IP 187.19.242.209'),
(350,9,'users','2025-01-16 02:20:44','setup',5,'paulovictorfds atualizou um item'),
(351,0,'system','2025-01-16 02:20:45','login',3,'tecnomulti fez login no IP 187.61.153.218'),
(352,0,'system','2025-01-16 02:21:56','Impersonate',3,'paulovictorfds começa a personificar o usuário tecnomulti'),
(353,0,'system','2025-01-16 02:22:00','Impersonate',3,'paulovictorfds pára de personificar o usuário tecnomulti'),
(354,1,'profiles','2025-01-16 03:05:46','setup',4,'paulovictorfds atualizou um item'),
(355,0,'system','2025-01-16 03:06:05','login',3,'tecnomulti fez login no IP 187.61.153.218'),
(356,1,'profiles','2025-01-16 03:06:29','setup',4,'paulovictorfds atualizou um item'),
(357,0,'system','2025-01-16 03:09:09','login',3,'tecnomulti fez login no IP 187.19.242.209'),
(358,0,'system','2025-01-16 10:55:57','login',3,'Login falhou para  no IP 45.224.114.167'),
(359,0,'system','2025-01-16 10:56:18','login',3,'tecnomulti fez login no IP 45.224.114.167'),
(360,0,'system','2025-01-16 10:58:08','login',3,'luanmedeiros fez login no IP 177.89.21.161'),
(361,43,'ticket','2025-01-16 10:59:30','tracking',4,'tecnomulti adicionou o item 43'),
(362,0,'system','2025-01-16 12:46:12','login',3,'alexcruz fez login no IP 187.61.153.218'),
(363,43,'ticket','2025-01-16 12:47:46','tracking',4,'alexcruz adicionou um acompanhamento'),
(364,43,'ticket','2025-01-16 12:47:58','tracking',4,'alexcruz atualizou um item'),
(365,43,'ticket','2025-01-16 13:14:20','tracking',4,'alexcruz adicionou um acompanhamento'),
(366,43,'ticket','2025-01-16 13:21:48','tracking',4,'alexcruz adicionou um acompanhamento'),
(367,43,'ticket','2025-01-16 13:21:59','tracking',4,'alexcruz atualizou um item'),
(368,0,'system','2025-01-16 19:42:51','login',3,'Login falhou para  no IP 179.73.198.53'),
(369,0,'system','2025-01-16 19:42:56','login',3,'tecnomulti fez login no IP 179.73.198.53'),
(370,0,'system','2025-01-17 12:01:52','login',3,'Login falhou para  no IP 177.89.21.161'),
(371,0,'system','2025-01-17 12:01:56','login',3,'alexcruz fez login no IP 177.89.21.161'),
(372,43,'ticket','2025-01-17 12:02:32','tracking',4,'alexcruz atualizou um item'),
(373,36,'ticket','2025-01-17 12:03:23','tracking',4,'alexcruz adicionou um acompanhamento'),
(374,36,'ticket','2025-01-17 12:03:35','tracking',4,'alexcruz atualizou um item'),
(375,0,'system','2025-01-17 12:16:00','login',3,'tecnomulti fez login no IP 177.89.21.161'),
(376,32,'ticket','2025-01-17 12:38:32','tracking',4,'alexcruz atualizou um item'),
(377,0,'system','2025-01-17 14:40:55','login',3,'tecnomulti fez login no IP 177.89.21.161'),
(378,0,'system','2025-01-17 14:44:17','login',3,'tecnomulti fez login no IP 168.196.199.10'),
(379,44,'ticket','2025-01-17 14:47:06','tracking',4,'tecnomulti adicionou o item 44'),
(380,0,'system','2025-01-17 14:57:39','login',3,'tecnomulti fez login no IP 177.89.21.161'),
(381,0,'system','2025-01-17 17:38:23','login',3,'luanmedeiros fez login no IP 177.89.21.161'),
(382,44,'ticket','2025-01-17 17:57:43','tracking',4,'luanmedeiros adicionou um acompanhamento'),
(383,0,'system','2025-01-17 17:59:17','login',3,'tecnomulti fez login no IP 177.37.172.189'),
(384,44,'ticket','2025-01-17 18:00:59','tracking',4,'luanmedeiros atualizou um item'),
(385,45,'ticket','2025-01-17 18:01:10','tracking',4,'tecnomulti adicionou o item 45'),
(386,0,'system','2025-01-18 01:57:39','login',3,'tecnomulti fez login no IP 187.19.242.89'),
(387,0,'system','2025-01-18 03:01:34','login',3,'Login falhou para  no IP 187.19.242.89'),
(388,0,'system','2025-01-18 03:01:38','login',3,'paulovictorfds fez login no IP 187.19.242.89'),
(389,0,'system','2025-01-18 06:19:03','login',3,'Login falhou para  no IP 187.19.242.89'),
(390,0,'system','2025-01-18 06:19:06','login',3,'paulovictorfds fez login no IP 187.19.242.89'),
(391,0,'system','2025-01-18 06:19:15','login',3,'paulovictorfds fez login no IP 187.19.242.89'),
(392,4,'Entity','2025-01-19 04:48:46','setup',4,'paulovictorfds adicionou o item test'),
(393,1,'UserCategory','2025-01-19 04:55:51','setup',4,'paulovictorfds adicionou o item Cliente Loja'),
(394,1,'profiles','2025-01-19 04:59:02','setup',4,'paulovictorfds atualizou um item'),
(395,0,'system','2025-01-19 04:59:27','login',3,'tecnomulti fez login no IP 187.19.242.89'),
(396,1,'profiles','2025-01-19 04:59:41','setup',4,'paulovictorfds atualizou um item'),
(397,0,'system','2025-01-19 05:04:21','login',3,'tecnomulti fez login no IP 187.19.242.89'),
(398,1,'profiles','2025-01-19 05:04:37','setup',4,'paulovictorfds atualizou um item'),
(399,0,'system','2025-01-19 05:04:48','login',3,'tecnomulti fez login no IP 187.19.242.89'),
(400,7,'users','2025-01-19 05:23:25','setup',5,'paulovictorfds atualizou um item'),
(401,7,'users','2025-01-19 05:23:57','setup',4,'paulovictorfds adicionou um usuário a uma entidade'),
(402,0,'system','2025-01-19 05:26:02','login',3,'paulovictorfds fez login no IP 187.19.242.89'),
(403,7,'users','2025-01-19 05:28:34','setup',4,'paulovictorfds adicionou um usuário a uma entidade'),
(404,0,'system','2025-01-19 05:28:38','login',3,'paulovictorfds fez login no IP 187.19.242.89'),
(405,0,'system','2025-01-19 05:48:43','login',3,'tecnomulti fez login no IP 187.19.242.89'),
(406,0,'system','2025-01-20 11:06:12','login',3,'luanmedeiros fez login no IP 177.89.21.161'),
(407,45,'ticket','2025-01-20 11:08:13','tracking',4,'luanmedeiros adicionou um acompanhamento'),
(408,45,'ticket','2025-01-20 11:14:42','tracking',4,'luanmedeiros atualizou um item'),
(409,0,'system','2025-01-20 11:18:26','login',3,'tecnomulti fez login no IP 177.37.172.237'),
(410,46,'ticket','2025-01-20 11:22:02','tracking',4,'tecnomulti adicionou o item 46'),
(411,0,'system','2025-01-20 11:22:03','login',3,'Login falhou para  no IP 177.89.21.161'),
(412,0,'system','2025-01-20 11:22:09','login',3,'alexcruz fez login no IP 177.89.21.161'),
(413,46,'ticket','2025-01-20 11:23:38','tracking',4,'alexcruz adicionou um acompanhamento'),
(414,46,'ticket','2025-01-20 11:23:46','tracking',4,'alexcruz atualizou um item'),
(415,44,'ticket','2025-01-20 11:47:29','tracking',4,'alexcruz atualizou um item'),
(416,0,'system','2025-01-20 13:27:09','login',3,'Login falhou para Tecnomulti no IP 179.251.185.93'),
(417,0,'system','2025-01-20 13:28:17','login',3,'Login falhou para Tecnomulti no IP 179.251.185.93'),
(418,0,'system','2025-01-20 13:30:02','login',3,'Login falhou para Tecnomulti no IP 177.79.38.105'),
(419,32,'ticket','2025-01-20 13:30:58','tracking',4,'alexcruz adicionou um acompanhamento'),
(420,32,'ticket','2025-01-20 13:31:02','tracking',4,'alexcruz atualizou um item'),
(421,0,'system','2025-01-20 13:36:02','login',3,'tecnomulti fez login no IP 179.251.185.93'),
(422,47,'ticket','2025-01-20 13:39:01','tracking',4,'tecnomulti adicionou o item 47'),
(423,0,'system','2025-01-20 14:03:15','login',3,'tecnomulti fez login no IP 179.251.185.93'),
(424,48,'ticket','2025-01-20 14:05:41','tracking',4,'tecnomulti adicionou o item 48'),
(425,46,'ticket','2025-01-20 14:21:01','tracking',4,'alexcruz adicionou um acompanhamento'),
(426,46,'ticket','2025-01-20 14:21:10','tracking',4,'alexcruz atualizou um item'),
(427,45,'ticket','2025-01-20 14:21:50','tracking',4,'alexcruz adicionou um acompanhamento'),
(428,45,'ticket','2025-01-20 14:21:56','tracking',4,'alexcruz atualizou um item'),
(429,47,'ticket','2025-01-20 14:23:36','tracking',4,'alexcruz adicionou um acompanhamento'),
(430,47,'ticket','2025-01-20 14:23:41','tracking',4,'alexcruz atualizou um item'),
(431,47,'ticket','2025-01-20 14:32:58','tracking',4,'alexcruz adicionou um acompanhamento'),
(432,47,'ticket','2025-01-20 14:33:05','tracking',4,'alexcruz atualizou um item'),
(433,48,'ticket','2025-01-20 14:35:46','tracking',4,'alexcruz adicionou um acompanhamento'),
(434,48,'ticket','2025-01-20 14:35:54','tracking',4,'alexcruz atualizou um item'),
(435,0,'system','2025-01-21 00:17:02','login',3,'tecnomulti fez login no IP 187.61.153.218'),
(436,49,'ticket','2025-01-21 00:18:58','tracking',4,'tecnomulti adicionou o item 49'),
(437,0,'system','2025-01-21 00:21:51','login',3,'Login falhou para alexcruz no IP 187.61.153.218'),
(438,0,'system','2025-01-21 00:22:09','login',3,'Login falhou para alexcruz no IP 187.61.153.218'),
(439,0,'system','2025-01-21 00:22:29','login',3,'alexcruz fez login no IP 187.61.153.218'),
(440,49,'ticket','2025-01-21 00:23:57','tracking',4,'alexcruz adicionou um acompanhamento'),
(441,49,'ticket','2025-01-21 00:24:05','tracking',4,'alexcruz atualizou um item'),
(442,0,'system','2025-01-21 00:24:49','login',3,'tecnomulti fez login no IP 187.61.153.218'),
(443,0,'system','2025-01-21 00:31:46','login',3,'tecnomulti fez login no IP 187.61.153.218'),
(444,0,'system','2025-01-21 00:51:24','login',3,'tecnomulti fez login no IP 187.61.153.218'),
(445,0,'system','2025-01-21 00:54:30','login',3,'tecnomulti fez login no IP 187.61.153.218'),
(446,0,'system','2025-01-21 01:00:32','login',3,'tecnomulti fez login no IP 187.61.153.218'),
(447,0,'system','2025-01-21 02:39:14','login',3,'paulovictorfds fez login no IP 187.19.242.89'),
(448,0,'system','2025-01-21 11:12:08','login',3,'tecnomulti fez login no IP 179.83.138.239'),
(449,0,'system','2025-01-21 11:12:59','login',3,'Login falhou para  no IP 177.89.21.161'),
(450,0,'system','2025-01-21 11:13:11','login',3,'alexcruz fez login no IP 177.89.21.161'),
(451,49,'ticket','2025-01-21 11:13:32','tracking',4,'alexcruz excluiu um item'),
(452,50,'ticket','2025-01-21 11:27:28','tracking',4,'tecnomulti adicionou o item 50'),
(453,0,'system','2025-01-21 11:28:10','login',3,'tecnomulti fez login no IP 168.196.199.10'),
(454,0,'system','2025-01-21 11:31:26','login',3,'luanmedeiros fez login no IP 177.89.21.161'),
(455,50,'ticket','2025-01-21 12:19:43','tracking',4,'alexcruz adicionou um acompanhamento'),
(456,50,'ticket','2025-01-21 12:19:45','tracking',4,'luanmedeiros adicionou um acompanhamento'),
(457,50,'ticket','2025-01-21 12:19:48','tracking',4,'alexcruz atualizou um item'),
(458,50,'ticket','2025-01-21 12:20:09','tracking',4,'alexcruz apagou o acompanhamento'),
(459,51,'ticket','2025-01-21 13:02:41','tracking',4,'tecnomulti adicionou o item 51'),
(460,0,'system','2025-01-21 13:46:52','login',3,'Login falhou para Tecnomulti no IP 179.105.130.242'),
(461,0,'system','2025-01-21 13:47:14','login',3,'tecnomulti fez login no IP 179.105.130.242'),
(462,52,'ticket','2025-01-21 13:50:24','tracking',4,'tecnomulti adicionou o item 52'),
(463,0,'system','2025-01-21 14:05:57','login',3,'tecnomulti ligou-se do IP 179.105.130.242'),
(464,52,'ticket','2025-01-21 14:27:29','tracking',4,'alexcruz adicionou um acompanhamento'),
(465,52,'ticket','2025-01-21 14:27:34','tracking',4,'alexcruz atualizou um item'),
(466,8,'users','2025-01-21 14:29:00','setup',5,'alexcruz atualizou um item'),
(467,52,'ticket','2025-01-21 14:31:24','tracking',4,'tecnomulti adicionou um acompanhamento'),
(468,52,'ticket','2025-01-21 14:33:36','tracking',4,'tecnomulti adicionou um acompanhamento'),
(469,52,'ticket','2025-01-21 14:40:49','tracking',4,'alexcruz adicionou um acompanhamento'),
(470,52,'ticket','2025-01-21 14:40:55','tracking',4,'alexcruz atualizou um item'),
(471,51,'ticket','2025-01-21 14:46:45','tracking',4,'luanmedeiros adicionou um acompanhamento'),
(472,52,'ticket','2025-01-21 15:05:39','tracking',4,'alexcruz adicionou um acompanhamento'),
(473,50,'ticket','2025-01-21 15:06:11','tracking',4,'alexcruz adicionou um acompanhamento'),
(474,50,'ticket','2025-01-21 15:06:20','tracking',4,'alexcruz atualizou um item'),
(475,52,'ticket','2025-01-21 15:27:09','tracking',4,'alexcruz adicionou um acompanhamento'),
(476,52,'ticket','2025-01-21 15:27:14','tracking',4,'alexcruz atualizou um item'),
(477,0,'system','2025-01-21 16:09:46','login',3,'Login falhou para  no IP 179.105.130.242'),
(478,0,'system','2025-01-21 18:27:56','login',3,'alexcruz fez login no IP 187.61.153.218'),
(479,0,'system','2025-01-21 19:02:04','login',3,'Login falhou para  no IP 187.61.153.218'),
(480,0,'system','2025-01-21 19:02:24','login',3,'Login falhou para alexcruz no IP 187.61.153.218'),
(481,0,'system','2025-01-21 19:02:42','login',3,'alexcruz fez login no IP 187.61.153.218'),
(482,0,'system','2025-01-22 10:57:40','login',3,'tecnomulti fez login no IP 179.251.185.93'),
(483,53,'ticket','2025-01-22 11:00:46','tracking',4,'tecnomulti adicionou o item 53'),
(484,0,'system','2025-01-22 11:09:55','login',3,'tecnomulti fez login no IP 168.196.199.10'),
(485,54,'ticket','2025-01-22 11:12:01','tracking',4,'tecnomulti adicionou o item 54'),
(486,0,'system','2025-01-22 16:50:15','login',3,'Login falhou para  no IP 177.89.21.161'),
(487,0,'system','2025-01-22 16:50:19','login',3,'alexcruz fez login no IP 177.89.21.161'),
(488,54,'ticket','2025-01-22 16:52:44','tracking',4,'alexcruz adicionou um acompanhamento'),
(489,54,'ticket','2025-01-22 16:52:53','tracking',4,'alexcruz atualizou um item'),
(490,53,'ticket','2025-01-22 16:58:17','tracking',4,'alexcruz adicionou um acompanhamento'),
(491,53,'ticket','2025-01-22 16:58:28','tracking',4,'alexcruz atualizou um item'),
(492,51,'ticket','2025-01-22 16:59:24','tracking',4,'alexcruz adicionou um acompanhamento'),
(493,51,'ticket','2025-01-22 16:59:29','tracking',4,'alexcruz atualizou um item'),
(494,0,'system','2025-01-23 11:48:50','login',3,'alexcruz fez login no IP 177.89.21.161'),
(495,0,'system','2025-01-23 12:51:41','login',3,'tecnomulti fez login no IP 179.83.138.239'),
(496,55,'ticket','2025-01-23 13:02:02','tracking',4,'tecnomulti adicionou o item 55'),
(497,55,'ticket','2025-01-23 13:06:27','tracking',4,'alexcruz adicionou um acompanhamento'),
(498,55,'ticket','2025-01-23 13:06:31','tracking',4,'alexcruz atualizou um item'),
(499,55,'ticket','2025-01-23 13:12:21','tracking',4,'tecnomulti adicionou um acompanhamento'),
(500,55,'ticket','2025-01-23 13:12:25','tracking',4,'tecnomulti adicionou um acompanhamento'),
(501,55,'ticket','2025-01-23 13:16:12','tracking',4,'tecnomulti adicionou um acompanhamento'),
(502,55,'ticket','2025-01-23 13:20:37','tracking',4,'tecnomulti adicionou um acompanhamento'),
(503,55,'ticket','2025-01-23 13:39:21','tracking',4,'alexcruz adicionou um acompanhamento'),
(504,55,'ticket','2025-01-23 13:39:28','tracking',4,'alexcruz atualizou um item'),
(505,0,'system','2025-01-23 15:03:10','login',3,'Login falhou para  no IP 168.196.199.10'),
(506,0,'system','2025-01-23 18:27:29','login',3,'luanmedeiros fez login no IP 177.89.21.161'),
(507,48,'ticket','2025-01-24 11:59:34','tracking',4,'alexcruz adicionou um acompanhamento'),
(508,48,'ticket','2025-01-24 11:59:40','tracking',4,'alexcruz atualizou um item'),
(509,53,'ticket','2025-01-24 12:00:17','tracking',4,'alexcruz adicionou um acompanhamento'),
(510,53,'ticket','2025-01-24 12:00:22','tracking',4,'alexcruz atualizou um item'),
(511,0,'system','2025-01-27 11:10:49','login',3,'alexcruz fez login no IP 187.61.153.218'),
(512,0,'system','2025-01-27 12:28:20','login',3,'alexcruz fez login no IP 187.61.153.218'),
(513,0,'system','2025-01-27 12:53:34','login',3,'alexcruz fez login no IP 187.61.153.218'),
(514,0,'system','2025-01-27 15:01:48','login',3,'alexcruz fez login no IP 187.61.153.218'),
(515,0,'system','2025-01-27 17:23:54','login',3,'Login falhou para  no IP 187.61.250.172'),
(516,0,'system','2025-01-27 17:24:11','login',3,'alexcruz fez login no IP 187.61.250.172'),
(517,0,'system','2025-01-27 18:28:25','login',3,'tecnomulti fez login no IP 168.196.199.10'),
(518,0,'system','2025-01-27 18:28:28','login',3,'alexcruz fez login no IP 187.61.250.172'),
(519,0,'system','2025-01-27 18:32:09','login',3,'tecnomulti fez login no IP 179.251.185.93'),
(520,0,'system','2025-01-27 18:35:25','login',3,'Login falhou para  no IP 179.251.185.93'),
(521,0,'system','2025-01-27 18:35:33','login',3,'tecnomulti fez login no IP 179.251.185.93'),
(522,56,'ticket','2025-01-27 18:40:14','tracking',4,'tecnomulti adicionou o item 56'),
(523,0,'system','2025-01-27 21:30:13','login',3,'paulovictorfds fez login no IP 187.19.242.185'),
(524,0,'system','2025-01-28 11:04:34','login',3,'Login falhou para  no IP 179.251.185.93'),
(525,0,'system','2025-01-28 11:04:45','login',3,'tecnomulti fez login no IP 179.251.185.93'),
(526,57,'ticket','2025-01-28 11:11:21','tracking',4,'tecnomulti adicionou o item 57'),
(527,0,'system','2025-01-28 11:16:18','login',3,'Login falhou para  no IP 177.89.21.161'),
(528,0,'system','2025-01-28 11:16:49','login',3,'alexcruz fez login no IP 177.89.21.161'),
(529,56,'ticket','2025-01-28 11:17:26','tracking',4,'alexcruz adicionou um acompanhamento'),
(530,56,'ticket','2025-01-28 11:17:31','tracking',4,'alexcruz atualizou um item'),
(531,56,'ticket','2025-01-28 11:19:49','tracking',4,'alexcruz adicionou um acompanhamento'),
(532,57,'ticket','2025-01-28 11:41:16','tracking',4,'alexcruz adicionou um acompanhamento'),
(533,57,'ticket','2025-01-28 11:41:20','tracking',4,'alexcruz atualizou um item'),
(534,0,'system','2025-01-28 11:49:45','login',3,'Login falhou para luanmedeiros no IP 177.89.21.161'),
(535,0,'system','2025-01-28 11:49:58','login',3,'luanmedeiros fez login no IP 177.89.21.161'),
(536,0,'system','2025-01-28 12:31:01','login',3,'tecnomulti fez login no IP 168.196.199.10'),
(537,58,'ticket','2025-01-28 12:39:13','tracking',4,'tecnomulti adicionou o item 58'),
(538,56,'ticket','2025-01-28 12:51:31','tracking',4,'alexcruz adicionou um acompanhamento'),
(539,56,'ticket','2025-01-28 12:51:41','tracking',4,'alexcruz atualizou um item'),
(540,0,'system','2025-01-28 13:45:10','login',3,'Falhou login para  do IP 179.105.130.139'),
(541,0,'system','2025-01-28 13:45:17','login',3,'tecnomulti ligou-se do IP 179.105.130.139'),
(542,59,'ticket','2025-01-28 13:46:40','tracking',4,'tecnomulti adicionou o item 59'),
(543,0,'system','2025-01-28 13:50:57','login',3,'tecnomulti fez login no IP 168.196.199.10'),
(544,60,'ticket','2025-01-28 13:53:54','tracking',4,'tecnomulti adicionou o item 60'),
(545,60,'ticket','2025-01-28 13:58:47','tracking',4,'alexcruz adicionou um acompanhamento'),
(546,60,'ticket','2025-01-28 13:58:52','tracking',4,'alexcruz atualizou um item'),
(547,61,'ticket','2025-01-28 13:59:04','tracking',4,'tecnomulti adicionou o item 61'),
(548,59,'ticket','2025-01-28 13:59:29','tracking',4,'alexcruz adicionou um acompanhamento'),
(549,59,'ticket','2025-01-28 13:59:33','tracking',4,'alexcruz atualizou um item'),
(550,0,'system','2025-01-28 14:00:47','login',3,'tecnomulti fez login no IP 168.196.199.10'),
(551,61,'ticket','2025-01-28 14:01:08','tracking',4,'alexcruz atualizou um item'),
(552,61,'ticket','2025-01-28 14:02:01','tracking',4,'alexcruz adicionou um acompanhamento'),
(553,61,'ticket','2025-01-28 14:02:05','tracking',4,'alexcruz atualizou um item'),
(554,62,'ticket','2025-01-28 14:02:27','tracking',4,'tecnomulti adicionou o item 62'),
(555,63,'ticket','2025-01-28 14:04:55','tracking',4,'tecnomulti adicionou o item 63'),
(556,62,'ticket','2025-01-28 14:05:13','tracking',4,'alexcruz adicionou um acompanhamento'),
(557,62,'ticket','2025-01-28 14:05:20','tracking',4,'alexcruz atualizou um item'),
(558,64,'ticket','2025-01-28 14:06:03','tracking',4,'tecnomulti adicionou o item 64'),
(559,63,'ticket','2025-01-28 14:06:10','tracking',4,'alexcruz adicionou um acompanhamento'),
(560,59,'ticket','2025-01-28 14:06:51','tracking',4,'tecnomulti adicionou um acompanhamento'),
(561,63,'ticket','2025-01-28 14:11:39','tracking',4,'alexcruz atualizou um item'),
(562,64,'ticket','2025-01-28 14:13:32','tracking',4,'alexcruz adicionou um acompanhamento'),
(563,64,'ticket','2025-01-28 14:13:35','tracking',4,'alexcruz atualizou um item'),
(564,65,'ticket','2025-01-28 14:16:01','tracking',4,'tecnomulti adicionou o item 65'),
(565,0,'system','2025-01-28 14:28:38','login',3,'tecnomulti fez login no IP 179.251.185.93'),
(566,66,'ticket','2025-01-28 14:31:35','tracking',4,'tecnomulti adicionou o item 66'),
(567,31,'ticket','2025-01-28 14:40:22','tracking',4,'luanmedeiros adicionou um acompanhamento'),
(568,31,'ticket','2025-01-28 14:40:30','tracking',4,'luanmedeiros atualizou um item'),
(569,58,'ticket','2025-01-28 14:42:25','tracking',4,'luanmedeiros adicionou um acompanhamento'),
(570,58,'ticket','2025-01-28 14:44:09','tracking',4,'luanmedeiros atualizou um item'),
(571,59,'ticket','2025-01-28 14:46:04','tracking',4,'tecnomulti adicionou um acompanhamento'),
(572,65,'ticket','2025-01-28 14:49:25','tracking',4,'luanmedeiros adicionou um acompanhamento'),
(573,65,'ticket','2025-01-28 14:49:48','tracking',4,'luanmedeiros atualizou um item'),
(574,66,'ticket','2025-01-28 14:52:26','tracking',4,'luanmedeiros adicionou um acompanhamento'),
(575,66,'ticket','2025-01-28 14:52:57','tracking',4,'luanmedeiros atualizou um item'),
(576,59,'ticket','2025-01-28 14:53:00','tracking',4,'tecnomulti adicionou um acompanhamento'),
(577,0,'system','2025-01-28 15:11:20','login',3,'tecnomulti fez login no IP 191.35.89.13'),
(578,67,'ticket','2025-01-28 15:12:53','tracking',4,'tecnomulti adicionou o item 67'),
(579,67,'ticket','2025-01-28 15:22:05','tracking',4,'luanmedeiros adicionou um acompanhamento'),
(580,67,'ticket','2025-01-28 15:22:10','tracking',4,'luanmedeiros atualizou um item'),
(581,66,'ticket','2025-01-28 16:46:27','tracking',4,'tecnomulti adicionou um acompanhamento'),
(582,59,'ticket','2025-01-28 17:02:03','tracking',4,'tecnomulti adicionou um acompanhamento'),
(583,59,'ticket','2025-01-28 18:15:44','tracking',4,'luanmedeiros adicionou um acompanhamento'),
(584,59,'ticket','2025-01-28 18:17:02','tracking',4,'tecnomulti adicionou um acompanhamento'),
(585,59,'ticket','2025-01-28 18:18:38','tracking',4,'tecnomulti adicionou um acompanhamento'),
(586,68,'ticket','2025-01-28 18:47:27','tracking',4,'tecnomulti adicionou o item 68'),
(587,59,'ticket','2025-01-28 18:53:51','tracking',4,'luanmedeiros adicionou um acompanhamento'),
(588,59,'ticket','2025-01-28 18:56:08','tracking',4,'luanmedeiros adicionou um acompanhamento'),
(589,59,'ticket','2025-01-28 19:27:19','tracking',4,'luanmedeiros atualizou um item'),
(590,68,'ticket','2025-01-28 20:17:22','tracking',4,'alexcruz adicionou um acompanhamento'),
(591,68,'ticket','2025-01-28 20:17:28','tracking',4,'alexcruz atualizou um item'),
(592,67,'ticket','2025-01-28 20:18:35','tracking',4,'alexcruz adicionou um acompanhamento'),
(593,67,'ticket','2025-01-28 20:18:45','tracking',4,'alexcruz atualizou um item'),
(594,66,'ticket','2025-01-28 20:20:25','tracking',4,'alexcruz adicionou um acompanhamento'),
(595,66,'ticket','2025-01-28 20:20:30','tracking',4,'alexcruz atualizou um item'),
(596,3,'notifications','2025-01-29 02:50:37','notification',4,'paulovictorfds atualizou um item'),
(597,0,'system','2025-01-29 02:55:48','login',3,'tecnomulti fez login no IP 187.19.242.185'),
(598,0,'system','2025-01-29 02:55:50','login',3,'tecnomulti fez login no IP 187.61.153.218'),
(599,69,'ticket','2025-01-29 02:56:40','tracking',4,'tecnomulti adicionou o item 69'),
(600,0,'system','2025-01-29 02:56:46','login',3,'Login falhou para alexcruz no IP 187.61.153.218'),
(601,0,'system','2025-01-29 02:57:18','login',3,'alexcruz fez login no IP 187.61.153.218'),
(602,69,'ticket','2025-01-29 02:57:42','tracking',4,'alexcruz adicionou um acompanhamento'),
(603,69,'ticket','2025-01-29 02:58:00','tracking',4,'alexcruz atualizou um item'),
(604,69,'ticket','2025-01-29 02:58:26','tracking',4,'alexcruz adicionou um acompanhamento'),
(605,69,'ticket','2025-01-29 02:59:25','tracking',4,'alexcruz adicionou um acompanhamento'),
(606,69,'ticket','2025-01-29 03:01:00','tracking',4,'alexcruz atualizou um item'),
(607,0,'system','2025-01-29 03:01:51','login',3,'tecnomulti fez login no IP 187.19.242.185'),
(608,69,'ticket','2025-01-29 03:02:21','tracking',4,'alexcruz atualizou um item'),
(609,69,'ticket','2025-01-29 03:02:35','tracking',4,'alexcruz adicionou um acompanhamento'),
(610,69,'ticket','2025-01-29 03:04:17','tracking',4,'alexcruz apagou o acompanhamento'),
(611,69,'ticket','2025-01-29 03:04:26','tracking',4,'alexcruz apagou o acompanhamento'),
(612,69,'ticket','2025-01-29 03:04:34','tracking',4,'alexcruz apagou o acompanhamento'),
(613,69,'ticket','2025-01-29 03:05:33','tracking',4,'alexcruz adicionou um acompanhamento'),
(614,69,'ticket','2025-01-29 03:06:16','tracking',4,'alexcruz adicionou um acompanhamento'),
(615,69,'ticket','2025-01-29 03:06:49','tracking',4,'alexcruz apagou o acompanhamento'),
(616,69,'ticket','2025-01-29 03:06:58','tracking',4,'alexcruz apagou o acompanhamento'),
(617,69,'ticket','2025-01-29 03:07:04','tracking',4,'alexcruz adicionou um acompanhamento'),
(618,69,'ticket','2025-01-29 03:07:24','tracking',4,'alexcruz adicionou um acompanhamento'),
(619,69,'ticket','2025-01-29 03:07:34','tracking',4,'alexcruz apagou o acompanhamento'),
(620,69,'ticket','2025-01-29 03:08:25','tracking',4,'alexcruz apagou o acompanhamento'),
(621,69,'ticket','2025-01-29 03:08:33','tracking',4,'alexcruz adicionou um acompanhamento'),
(622,69,'ticket','2025-01-29 03:09:19','tracking',4,'alexcruz adicionou um acompanhamento'),
(623,69,'ticket','2025-01-29 03:09:29','tracking',4,'alexcruz adicionou um acompanhamento'),
(624,69,'ticket','2025-01-29 03:09:58','tracking',4,'alexcruz adicionou um acompanhamento'),
(625,69,'ticket','2025-01-29 03:10:11','tracking',4,'alexcruz adicionou um acompanhamento'),
(626,0,'system','2025-01-29 03:10:33','login',3,'tecnomulti fez login no IP 187.61.153.218'),
(627,69,'ticket','2025-01-29 03:10:45','tracking',4,'alexcruz adicionou um acompanhamento'),
(628,69,'ticket','2025-01-29 03:11:00','tracking',4,'alexcruz adicionou um acompanhamento'),
(629,69,'ticket','2025-01-29 03:11:54','tracking',4,'alexcruz apagou o acompanhamento'),
(630,69,'ticket','2025-01-29 03:12:02','tracking',4,'alexcruz apagou o acompanhamento'),
(631,69,'ticket','2025-01-29 03:12:11','tracking',4,'alexcruz apagou o acompanhamento'),
(632,69,'ticket','2025-01-29 03:12:16','tracking',4,'alexcruz apagou o acompanhamento'),
(633,69,'ticket','2025-01-29 03:12:21','tracking',4,'alexcruz apagou o acompanhamento'),
(634,69,'ticket','2025-01-29 03:12:27','tracking',4,'alexcruz apagou o acompanhamento'),
(635,69,'ticket','2025-01-29 03:12:43','tracking',4,'alexcruz apagou o acompanhamento'),
(636,69,'ticket','2025-01-29 03:12:48','tracking',4,'alexcruz adicionou um acompanhamento'),
(637,1,'profiles','2025-01-29 03:17:03','setup',4,'paulovictorfds atualizou um item'),
(638,0,'system','2025-01-29 03:17:28','login',3,'tecnomulti fez login no IP 187.19.242.185'),
(639,0,'system','2025-01-29 11:06:32','login',3,'luanmedeiros fez login no IP 177.89.21.161'),
(640,0,'system','2025-01-29 11:28:17','login',3,'Login falhou para  no IP 177.89.21.161'),
(641,0,'system','2025-01-29 11:28:21','login',3,'alexcruz fez login no IP 177.89.21.161'),
(642,0,'system','2025-01-29 11:50:18','login',3,'tecnomulti fez login no IP 168.196.199.10'),
(643,70,'ticket','2025-01-29 11:52:14','tracking',4,'tecnomulti adicionou o item 70'),
(644,70,'ticket','2025-01-29 11:53:33','tracking',4,'alexcruz adicionou um acompanhamento'),
(645,70,'ticket','2025-01-29 11:53:46','tracking',4,'alexcruz atualizou um item'),
(646,70,'ticket','2025-01-29 11:55:13','tracking',4,'tecnomulti adicionou um acompanhamento'),
(647,0,'system','2025-01-29 11:57:20','login',3,'tecnomulti fez login no IP 168.196.199.10'),
(648,71,'ticket','2025-01-29 11:59:27','tracking',4,'tecnomulti adicionou o item 71'),
(649,70,'ticket','2025-01-29 12:01:09','tracking',4,'alexcruz adicionou um acompanhamento'),
(650,70,'ticket','2025-01-29 12:01:16','tracking',4,'alexcruz atualizou um item'),
(651,71,'ticket','2025-01-29 12:06:20','tracking',4,'alexcruz adicionou um acompanhamento'),
(652,71,'ticket','2025-01-29 12:06:26','tracking',4,'alexcruz atualizou um item'),
(653,0,'system','2025-01-29 18:07:38','login',3,'Login falhou para  no IP 168.196.199.10'),
(654,0,'system','2025-01-30 00:52:11','login',3,'tecnomulti fez login no IP 201.216.90.48'),
(655,0,'system','2025-01-30 11:10:56','login',3,'alexcruz fez login no IP 177.89.21.161'),
(656,0,'system','2025-01-30 11:21:04','login',3,'tecnomulti fez login no IP 45.224.114.161'),
(657,72,'ticket','2025-01-30 11:24:45','tracking',4,'tecnomulti adicionou o item 72'),
(658,72,'ticket','2025-01-30 11:45:58','tracking',4,'alexcruz adicionou um acompanhamento'),
(659,72,'ticket','2025-01-30 11:46:08','tracking',4,'alexcruz atualizou um item'),
(660,72,'ticket','2025-01-30 11:51:01','tracking',4,'alexcruz adicionou um acompanhamento'),
(661,72,'ticket','2025-01-30 11:51:10','tracking',4,'alexcruz atualizou um item'),
(662,0,'system','2025-01-30 13:41:48','login',3,'tecnomulti fez login no IP 191.35.89.13'),
(663,73,'ticket','2025-01-30 13:44:22','tracking',4,'tecnomulti adicionou o item 73'),
(664,73,'ticket','2025-01-30 15:36:30','tracking',4,'alexcruz adicionou um acompanhamento'),
(665,73,'ticket','2025-01-30 15:37:07','tracking',4,'alexcruz atualizou um item'),
(666,58,'ticket','2025-01-30 15:41:34','tracking',4,'alexcruz atualizou um item'),
(667,0,'system','2025-01-30 16:45:44','login',3,'Login falhou para  no IP 168.196.199.10'),
(668,0,'system','2025-01-30 16:46:33','login',3,'tecnomulti fez login no IP 168.196.199.10'),
(669,58,'ticket','2025-01-30 16:49:36','tracking',4,'tecnomulti adicionou um acompanhamento'),
(670,0,'system','2025-01-30 17:52:26','login',3,'tecnomulti fez login no IP 168.196.199.10'),
(671,74,'ticket','2025-01-30 17:53:59','tracking',4,'tecnomulti adicionou o item 74'),
(672,0,'system','2025-01-30 17:55:54','login',3,'tecnomulti fez login no IP 168.196.199.10'),
(673,74,'ticket','2025-01-30 18:05:36','tracking',4,'tecnomulti adicionou um acompanhamento'),
(674,0,'system','2025-01-30 18:37:54','login',3,'tecnomulti fez login no IP 168.196.199.10'),
(675,75,'ticket','2025-01-30 18:41:10','tracking',4,'tecnomulti adicionou o item 75'),
(676,0,'system','2025-01-30 18:48:30','login',3,'Login falhou para  no IP 187.61.153.218'),
(677,0,'system','2025-01-30 18:48:51','login',3,'Login falhou para alexcruz no IP 187.61.153.218'),
(678,0,'system','2025-01-30 18:49:02','login',3,'Login falhou para alexcruz no IP 187.61.153.218'),
(679,0,'system','2025-01-30 18:49:39','login',3,'alexcruz fez login no IP 187.61.153.218'),
(680,74,'ticket','2025-01-30 18:50:29','tracking',4,'alexcruz adicionou um acompanhamento'),
(681,74,'ticket','2025-01-30 18:50:35','tracking',4,'alexcruz atualizou um item'),
(682,73,'ticket','2025-01-30 18:52:09','tracking',4,'alexcruz adicionou um acompanhamento'),
(683,73,'ticket','2025-01-30 18:52:14','tracking',4,'alexcruz atualizou um item'),
(684,74,'ticket','2025-01-30 18:58:24','tracking',4,'alexcruz adicionou um acompanhamento'),
(685,75,'ticket','2025-01-30 19:14:05','tracking',4,'alexcruz adicionou um acompanhamento'),
(686,75,'ticket','2025-01-30 19:14:11','tracking',4,'alexcruz atualizou um item'),
(687,74,'ticket','2025-01-30 19:23:54','tracking',4,'alexcruz adicionou um acompanhamento'),
(688,74,'ticket','2025-01-30 19:23:58','tracking',4,'alexcruz atualizou um item'),
(689,0,'system','2025-01-30 19:24:51','login',3,'Login falhou para  no IP 168.196.199.10'),
(690,0,'system','2025-01-30 20:25:56','login',3,'Login falhou para  no IP 168.196.199.10'),
(691,0,'system','2025-01-30 20:33:06','login',3,'paulovictorfds fez login no IP 187.19.242.185'),
(692,0,'system','2025-01-31 00:20:52','login',3,'Login falhou para  no IP 187.61.153.218'),
(693,0,'system','2025-01-31 11:34:55','login',3,'Login falhou para  no IP 186.212.118.99'),
(694,0,'system','2025-01-31 11:35:27','login',3,'tecnomulti fez login no IP 186.212.118.99'),
(695,0,'system','2025-01-31 12:51:09','login',3,'alexcruz fez login no IP 187.61.153.218'),
(696,0,'system','2025-01-31 13:32:37','login',3,'Login falhou para  no IP 187.61.153.218'),
(697,0,'system','2025-01-31 13:32:43','login',3,'alexcruz fez login no IP 187.61.153.218'),
(698,0,'system','2025-02-01 13:26:50','login',3,'Login falhou para  no IP 187.61.153.218'),
(699,0,'system','2025-02-01 13:26:55','login',3,'alexcruz fez login no IP 187.61.153.218'),
(700,0,'system','2025-02-01 14:00:34','login',3,'alexcruz fez login no IP 187.61.153.218'),
(701,0,'system','2025-02-03 01:42:46','login',3,'Login falhou para  no IP 179.156.60.185'),
(702,0,'system','2025-02-03 11:18:15','login',3,'Login falhou para luanmedeiros no IP 177.89.21.161'),
(703,0,'system','2025-02-03 11:18:26','login',3,'luanmedeiros fez login no IP 177.89.21.161'),
(704,0,'system','2025-02-03 13:16:06','login',3,'tecnomulti fez login no IP 45.4.242.230'),
(705,76,'ticket','2025-02-03 13:18:39','tracking',4,'tecnomulti adicionou o item 76'),
(706,0,'system','2025-02-03 13:25:31','login',3,'luanmedeiros fez login no IP 177.89.21.161'),
(707,0,'system','2025-02-03 13:26:50','login',3,'Login falhou para  no IP 186.212.118.99'),
(708,0,'system','2025-02-03 13:29:25','login',3,'tecnomulti fez login no IP 186.212.118.99'),
(709,76,'ticket','2025-02-03 13:49:47','tracking',4,'alexcruz adicionou um acompanhamento'),
(710,76,'ticket','2025-02-03 13:49:52','tracking',4,'alexcruz atualizou um item'),
(711,76,'ticket','2025-02-03 13:51:42','tracking',4,'tecnomulti adicionou um acompanhamento'),
(712,0,'system','2025-02-03 16:52:30','login',3,'Login falhou para  no IP 168.196.199.10'),
(713,0,'system','2025-02-03 17:19:18','login',3,'tecnomulti fez login no IP 152.241.69.246'),
(714,77,'ticket','2025-02-03 17:21:14','tracking',4,'tecnomulti adicionou o item 77'),
(715,0,'system','2025-02-03 17:41:17','login',3,'tecnomulti fez login no IP 191.58.92.15'),
(716,78,'ticket','2025-02-03 17:44:33','tracking',4,'tecnomulti adicionou o item 78'),
(717,78,'ticket','2025-02-03 19:50:51','tracking',4,'alexcruz adicionou um acompanhamento'),
(718,78,'ticket','2025-02-03 19:50:55','tracking',4,'alexcruz atualizou um item'),
(719,0,'system','2025-02-03 20:20:59','login',3,'tecnomulti fez login no IP 191.58.92.15'),
(720,79,'ticket','2025-02-03 20:21:54','tracking',4,'tecnomulti adicionou o item 79'),
(721,78,'ticket','2025-02-03 20:47:27','tracking',4,'alexcruz adicionou um acompanhamento'),
(722,78,'ticket','2025-02-03 20:47:33','tracking',4,'alexcruz atualizou um item'),
(723,79,'ticket','2025-02-03 21:01:14','tracking',4,'alexcruz adicionou um acompanhamento'),
(724,79,'ticket','2025-02-03 21:01:20','tracking',4,'alexcruz atualizou um item'),
(725,0,'system','2025-02-04 11:21:38','login',3,'Login falhou para  no IP 177.89.21.161'),
(726,0,'system','2025-02-04 11:21:43','login',3,'alexcruz fez login no IP 177.89.21.161'),
(727,77,'ticket','2025-02-04 11:22:32','tracking',4,'alexcruz adicionou um acompanhamento'),
(728,77,'ticket','2025-02-04 11:22:37','tracking',4,'alexcruz atualizou um item'),
(729,76,'ticket','2025-02-04 11:49:55','tracking',4,'alexcruz atualizou um item'),
(730,0,'system','2025-02-04 12:19:06','login',3,'Login falhou para  no IP 168.196.199.10'),
(731,0,'system','2025-02-04 16:37:40','login',3,'paulovictorfds fez login no IP 187.19.242.17'),
(732,0,'system','2025-02-04 18:36:33','login',3,'tecnomulti fez login no IP 201.216.90.48'),
(733,80,'ticket','2025-02-04 18:37:10','tracking',4,'tecnomulti adicionou o item 80'),
(734,0,'system','2025-02-04 18:40:33','login',3,'Login falhou para  no IP 187.61.153.218'),
(735,0,'system','2025-02-04 18:40:35','login',3,'alexcruz fez login no IP 187.61.153.218'),
(736,0,'system','2025-02-04 18:40:44','login',3,'Login falhou para  no IP 168.196.199.10'),
(737,80,'ticket','2025-02-04 18:41:05','tracking',4,'alexcruz adicionou um acompanhamento'),
(738,0,'system','2025-02-04 18:41:07','login',3,'tecnomulti fez login no IP 168.196.199.10'),
(739,80,'ticket','2025-02-04 18:41:11','tracking',4,'alexcruz atualizou um item'),
(740,81,'ticket','2025-02-04 18:43:15','tracking',4,'tecnomulti adicionou o item 81'),
(741,80,'ticket','2025-02-04 19:15:51','tracking',4,'alexcruz adicionou um acompanhamento'),
(742,80,'ticket','2025-02-04 19:15:58','tracking',4,'alexcruz atualizou um item'),
(743,81,'ticket','2025-02-04 19:16:38','tracking',4,'alexcruz adicionou um acompanhamento'),
(744,81,'ticket','2025-02-04 19:16:42','tracking',4,'alexcruz atualizou um item'),
(745,0,'system','2025-02-05 12:37:06','login',3,'alexcruz fez login no IP 187.61.153.218'),
(746,0,'system','2025-02-05 12:48:10','login',3,'alexcruz fez login no IP 187.61.153.218'),
(747,0,'system','2025-02-06 14:37:21','login',3,'alexcruz fez login no IP 187.61.153.218'),
(748,81,'ticket','2025-02-06 14:39:43','tracking',4,'alexcruz adicionou um acompanhamento'),
(749,81,'ticket','2025-02-06 14:39:48','tracking',4,'alexcruz atualizou um item'),
(750,80,'ticket','2025-02-06 14:41:21','tracking',4,'alexcruz atualizou um item'),
(751,0,'system','2025-02-07 13:29:19','login',3,'luanmedeiros fez login no IP 177.89.21.161'),
(752,0,'system','2025-02-07 14:13:29','login',3,'tecnomulti fez login no IP 177.37.172.165'),
(753,82,'ticket','2025-02-07 14:16:50','tracking',4,'tecnomulti adicionou o item 82'),
(754,0,'system','2025-02-08 01:41:57','login',3,'paulovictorfds fez login no IP 187.19.242.209'),
(755,2,'APIClient','2025-02-09 04:00:28','setup',4,'paulovictorfds adicionou o item PV'),
(756,2,'APIClient','2025-02-09 04:08:01','setup',4,'paulovictorfds atualizou um item'),
(757,0,'system','2025-02-10 11:02:13','login',3,'tecnomulti fez login no IP 168.196.199.10'),
(758,83,'ticket','2025-02-10 11:16:41','tracking',4,'tecnomulti adicionou o item 83'),
(759,0,'system','2025-02-10 11:18:39','login',3,'Login falhou para  no IP 177.89.21.161'),
(760,0,'system','2025-02-10 11:18:43','login',3,'alexcruz fez login no IP 177.89.21.161'),
(761,83,'ticket','2025-02-10 11:19:29','tracking',4,'alexcruz adicionou um acompanhamento'),
(762,83,'ticket','2025-02-10 11:19:35','tracking',4,'alexcruz atualizou um item'),
(763,83,'ticket','2025-02-10 11:41:39','tracking',4,'tecnomulti adicionou um acompanhamento'),
(764,83,'ticket','2025-02-10 11:46:47','tracking',4,'alexcruz adicionou um acompanhamento'),
(765,83,'ticket','2025-02-10 11:46:54','tracking',4,'alexcruz atualizou um item'),
(766,82,'ticket','2025-02-10 11:47:57','tracking',4,'alexcruz adicionou um acompanhamento'),
(767,82,'ticket','2025-02-10 11:48:02','tracking',4,'alexcruz atualizou um item'),
(768,0,'system','2025-02-10 13:31:13','login',3,'alexcruz fez login no IP 177.69.106.178'),
(769,0,'system','2025-02-10 15:22:21','login',3,'paulovictorfds fez login no IP 187.19.242.209'),
(770,0,'system','2025-02-10 19:12:20','login',3,'alexcruz fez login no IP 177.69.106.178'),
(771,0,'system','2025-02-10 19:12:20','login',3,'alexcruz fez login no IP 177.69.106.178'),
(772,0,'system','2025-02-11 12:00:36','login',3,'tecnomulti fez login no IP 45.224.114.166'),
(773,84,'ticket','2025-02-11 12:02:54','tracking',4,'tecnomulti adicionou o item 84'),
(774,82,'ticket','2025-02-11 12:21:28','tracking',4,'alexcruz adicionou um acompanhamento'),
(775,82,'ticket','2025-02-11 12:21:34','tracking',4,'alexcruz atualizou um item'),
(776,0,'system','2025-02-11 12:38:07','login',3,'Login falhou para  no IP 168.196.199.10'),
(777,0,'system','2025-02-11 12:39:05','login',3,'tecnomulti fez login no IP 168.196.199.10'),
(778,85,'ticket','2025-02-11 12:41:34','tracking',4,'tecnomulti adicionou o item 85'),
(779,0,'system','2025-02-11 13:03:55','login',3,'tecnomulti fez login no IP 177.89.21.161'),
(780,85,'ticket','2025-02-11 13:07:04','tracking',4,'alexcruz adicionou um acompanhamento'),
(781,85,'ticket','2025-02-11 13:07:08','tracking',4,'alexcruz atualizou um item'),
(782,84,'ticket','2025-02-11 13:08:39','tracking',4,'alexcruz adicionou um acompanhamento'),
(783,84,'ticket','2025-02-11 13:08:44','tracking',4,'alexcruz atualizou um item'),
(784,85,'ticket','2025-02-11 13:14:01','tracking',4,'alexcruz adicionou um acompanhamento'),
(785,85,'ticket','2025-02-11 13:14:07','tracking',4,'alexcruz atualizou um item'),
(786,0,'system','2025-02-11 15:07:31','login',3,'Login falhou para tecnomulti no IP 168.196.199.10'),
(787,0,'system','2025-02-11 15:08:18','login',3,'tecnomulti fez login no IP 168.196.199.10'),
(788,86,'ticket','2025-02-11 15:10:17','tracking',4,'tecnomulti adicionou o item 86'),
(789,0,'system','2025-02-11 22:06:23','login',3,'Login falhou para  no IP 187.61.153.218'),
(790,0,'system','2025-02-11 22:06:25','login',3,'alexcruz fez login no IP 187.61.153.218'),
(791,0,'system','2025-02-11 22:15:24','login',3,'tecnomulti fez login no IP 187.61.153.218'),
(792,0,'system','2025-02-11 22:17:40','login',3,'alexcruz fez login no IP 187.61.153.218'),
(793,86,'ticket','2025-02-11 22:20:27','tracking',4,'alexcruz adicionou um acompanhamento'),
(794,86,'ticket','2025-02-11 22:20:38','tracking',4,'alexcruz atualizou um item'),
(795,0,'system','2025-02-12 11:53:55','login',3,'tecnomulti fez login no IP 168.196.199.10'),
(796,87,'ticket','2025-02-12 11:56:10','tracking',4,'tecnomulti adicionou o item 87'),
(797,87,'ticket','2025-02-12 12:07:07','tracking',4,'alexcruz adicionou um acompanhamento'),
(798,87,'ticket','2025-02-12 12:07:12','tracking',4,'alexcruz atualizou um item'),
(799,87,'ticket','2025-02-12 12:34:04','tracking',4,'alexcruz adicionou um acompanhamento'),
(800,87,'ticket','2025-02-12 12:34:09','tracking',4,'alexcruz atualizou um item'),
(801,0,'system','2025-02-13 11:18:40','login',3,'Login falhou para  no IP 177.89.21.161'),
(802,0,'system','2025-02-13 11:18:45','login',3,'alexcruz fez login no IP 177.89.21.161'),
(803,86,'ticket','2025-02-13 13:17:04','tracking',4,'alexcruz adicionou um acompanhamento'),
(804,86,'ticket','2025-02-13 13:17:14','tracking',4,'alexcruz atualizou um item'),
(805,58,'ticket','2025-02-13 14:01:04','tracking',4,'alexcruz adicionou um acompanhamento'),
(806,58,'ticket','2025-02-13 14:01:10','tracking',4,'alexcruz atualizou um item'),
(807,0,'system','2025-02-14 11:04:24','login',3,'alexcruz fez login no IP 177.89.21.161'),
(808,0,'system','2025-02-14 11:04:24','login',3,'alexcruz fez login no IP 177.89.21.161'),
(809,0,'system','2025-02-14 16:59:13','login',3,'Login falhou para  no IP 187.61.153.218'),
(810,0,'system','2025-02-14 16:59:15','login',3,'alexcruz fez login no IP 187.61.153.218'),
(811,0,'system','2025-02-17 11:33:50','login',3,'tecnomulti fez login no IP 168.196.199.10'),
(812,88,'ticket','2025-02-17 11:36:06','tracking',4,'tecnomulti adicionou o item 88'),
(813,0,'system','2025-02-17 12:34:02','login',3,'tecnomulti fez login no IP 45.4.241.16'),
(814,89,'ticket','2025-02-17 12:35:59','tracking',4,'tecnomulti adicionou o item 89'),
(815,0,'system','2025-02-17 13:23:52','login',3,'Login falhou para luanmedeiros no IP 177.89.21.161'),
(816,0,'system','2025-02-17 13:24:07','login',3,'Login falhou para luanmedeiros no IP 177.89.21.161'),
(817,0,'system','2025-02-17 13:24:27','login',3,'Login falhou para luanmedeiros no IP 177.89.21.161'),
(818,0,'system','2025-02-17 13:24:42','login',3,'luanmedeiros fez login no IP 177.89.21.161'),
(819,88,'ticket','2025-02-17 13:52:33','tracking',4,'luanmedeiros adicionou um acompanhamento'),
(820,0,'system','2025-02-17 20:02:58','login',3,'alexcruz fez login no IP 179.190.228.254'),
(821,88,'ticket','2025-02-17 20:04:30','tracking',4,'alexcruz atualizou um encaminhamento'),
(822,88,'ticket','2025-02-17 20:31:30','tracking',4,'alexcruz atualizou um item'),
(823,0,'system','2025-02-18 02:16:04','login',3,'paulovictorfds fez login no IP 187.19.242.209'),
(824,0,'system','2025-02-18 10:23:30','login',3,'Login falhou para  no IP 168.196.199.10'),
(825,0,'system','2025-02-18 10:23:51','login',3,'tecnomulti fez login no IP 168.196.199.10'),
(826,0,'system','2025-02-18 17:48:38','login',3,'tecnomulti fez login no IP 177.121.114.209'),
(827,0,'system','2025-02-18 17:52:52','login',3,'tecnomulti fez login no IP 168.196.199.10'),
(828,90,'ticket','2025-02-18 17:56:01','tracking',4,'tecnomulti adicionou o item 90'),
(829,91,'ticket','2025-02-18 17:56:26','tracking',4,'tecnomulti adicionou o item 91'),
(830,0,'system','2025-02-18 18:10:39','login',3,'alexcruz fez login no IP 187.61.169.75'),
(831,91,'ticket','2025-02-18 18:14:21','tracking',4,'alexcruz adicionou um acompanhamento'),
(832,91,'ticket','2025-02-18 18:14:35','tracking',4,'alexcruz atualizou um item'),
(833,90,'ticket','2025-02-18 18:16:04','tracking',4,'alexcruz adicionou um acompanhamento'),
(834,90,'ticket','2025-02-18 18:16:39','tracking',4,'alexcruz atualizou um item'),
(835,90,'ticket','2025-02-18 18:17:50','tracking',4,'tecnomulti adicionou um acompanhamento'),
(836,91,'ticket','2025-02-18 18:22:40','tracking',4,'tecnomulti adicionou um acompanhamento'),
(837,89,'ticket','2025-02-18 18:30:33','tracking',4,'alexcruz adicionou um acompanhamento'),
(838,89,'ticket','2025-02-18 18:30:40','tracking',4,'alexcruz atualizou um item'),
(839,0,'system','2025-02-18 18:31:29','login',3,'tecnomulti fez login no IP 168.196.199.10'),
(840,92,'ticket','2025-02-18 18:48:25','tracking',4,'tecnomulti adicionou o item 92'),
(841,0,'system','2025-02-18 18:50:25','login',3,'Login falhou para  no IP 177.121.114.209'),
(842,0,'system','2025-02-18 18:53:16','login',3,'tecnomulti fez login no IP 177.121.114.209');
/*!40000 ALTER TABLE `glpi_events` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_fieldblacklists`
--

DROP TABLE IF EXISTS `glpi_fieldblacklists`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_fieldblacklists` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL DEFAULT '',
  `field` varchar(255) NOT NULL DEFAULT '',
  `value` varchar(255) NOT NULL DEFAULT '',
  `itemtype` varchar(255) NOT NULL DEFAULT '',
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `comment` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_fieldblacklists`
--

LOCK TABLES `glpi_fieldblacklists` WRITE;
/*!40000 ALTER TABLE `glpi_fieldblacklists` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_fieldblacklists` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_fieldunicities`
--

DROP TABLE IF EXISTS `glpi_fieldunicities`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_fieldunicities` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL DEFAULT '',
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `itemtype` varchar(255) NOT NULL DEFAULT '',
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `fields` text DEFAULT NULL,
  `is_active` tinyint(4) NOT NULL DEFAULT 0,
  `action_refuse` tinyint(4) NOT NULL DEFAULT 0,
  `action_notify` tinyint(4) NOT NULL DEFAULT 0,
  `comment` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `is_active` (`is_active`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC COMMENT='Stores field unicity criterias';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_fieldunicities`
--

LOCK TABLES `glpi_fieldunicities` WRITE;
/*!40000 ALTER TABLE `glpi_fieldunicities` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_fieldunicities` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_filesystems`
--

DROP TABLE IF EXISTS `glpi_filesystems`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_filesystems` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_filesystems`
--

LOCK TABLES `glpi_filesystems` WRITE;
/*!40000 ALTER TABLE `glpi_filesystems` DISABLE KEYS */;
INSERT INTO `glpi_filesystems` VALUES
(1,'ext',NULL,NULL,NULL),
(2,'ext2',NULL,NULL,NULL),
(3,'ext3',NULL,NULL,NULL),
(4,'ext4',NULL,NULL,NULL),
(5,'FAT',NULL,NULL,NULL),
(6,'FAT32',NULL,NULL,NULL),
(7,'VFAT',NULL,NULL,NULL),
(8,'HFS',NULL,NULL,NULL),
(9,'HPFS',NULL,NULL,NULL),
(10,'HTFS',NULL,NULL,NULL),
(11,'JFS',NULL,NULL,NULL),
(12,'JFS2',NULL,NULL,NULL),
(13,'NFS',NULL,NULL,NULL),
(14,'NTFS',NULL,NULL,NULL),
(15,'ReiserFS',NULL,NULL,NULL),
(16,'SMBFS',NULL,NULL,NULL),
(17,'UDF',NULL,NULL,NULL),
(18,'UFS',NULL,NULL,NULL),
(19,'XFS',NULL,NULL,NULL),
(20,'ZFS',NULL,NULL,NULL),
(21,'APFS',NULL,NULL,NULL);
/*!40000 ALTER TABLE `glpi_filesystems` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_fqdns`
--

DROP TABLE IF EXISTS `glpi_fqdns`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_fqdns` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `name` varchar(255) DEFAULT NULL,
  `fqdn` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `entities_id` (`entities_id`),
  KEY `name` (`name`),
  KEY `fqdn` (`fqdn`),
  KEY `is_recursive` (`is_recursive`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_fqdns`
--

LOCK TABLES `glpi_fqdns` WRITE;
/*!40000 ALTER TABLE `glpi_fqdns` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_fqdns` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_groups`
--

DROP TABLE IF EXISTS `glpi_groups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_groups` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `ldap_field` varchar(255) DEFAULT NULL,
  `ldap_value` text DEFAULT NULL,
  `ldap_group_dn` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `groups_id` int(10) unsigned NOT NULL DEFAULT 0,
  `completename` text DEFAULT NULL,
  `level` int(11) NOT NULL DEFAULT 0,
  `ancestors_cache` longtext DEFAULT NULL,
  `sons_cache` longtext DEFAULT NULL,
  `is_requester` tinyint(4) NOT NULL DEFAULT 1,
  `is_watcher` tinyint(4) NOT NULL DEFAULT 1,
  `is_assign` tinyint(4) NOT NULL DEFAULT 1,
  `is_task` tinyint(4) NOT NULL DEFAULT 1,
  `is_notify` tinyint(4) NOT NULL DEFAULT 1,
  `is_itemgroup` tinyint(4) NOT NULL DEFAULT 1,
  `is_usergroup` tinyint(4) NOT NULL DEFAULT 1,
  `is_manager` tinyint(4) NOT NULL DEFAULT 1,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `ldap_field` (`ldap_field`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `date_mod` (`date_mod`),
  KEY `ldap_value` (`ldap_value`(200)),
  KEY `ldap_group_dn` (`ldap_group_dn`(200)),
  KEY `groups_id` (`groups_id`),
  KEY `is_requester` (`is_requester`),
  KEY `is_watcher` (`is_watcher`),
  KEY `is_assign` (`is_assign`),
  KEY `is_notify` (`is_notify`),
  KEY `is_itemgroup` (`is_itemgroup`),
  KEY `is_usergroup` (`is_usergroup`),
  KEY `is_manager` (`is_manager`),
  KEY `date_creation` (`date_creation`),
  KEY `level` (`level`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_groups`
--

LOCK TABLES `glpi_groups` WRITE;
/*!40000 ALTER TABLE `glpi_groups` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_groups` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_groups_knowbaseitems`
--

DROP TABLE IF EXISTS `glpi_groups_knowbaseitems`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_groups_knowbaseitems` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `knowbaseitems_id` int(10) unsigned NOT NULL DEFAULT 0,
  `groups_id` int(10) unsigned NOT NULL DEFAULT 0,
  `entities_id` int(10) unsigned DEFAULT NULL,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `no_entity_restriction` tinyint(4) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `knowbaseitems_id` (`knowbaseitems_id`),
  KEY `groups_id` (`groups_id`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_groups_knowbaseitems`
--

LOCK TABLES `glpi_groups_knowbaseitems` WRITE;
/*!40000 ALTER TABLE `glpi_groups_knowbaseitems` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_groups_knowbaseitems` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_groups_problems`
--

DROP TABLE IF EXISTS `glpi_groups_problems`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_groups_problems` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `problems_id` int(10) unsigned NOT NULL DEFAULT 0,
  `groups_id` int(10) unsigned NOT NULL DEFAULT 0,
  `type` int(11) NOT NULL DEFAULT 1,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`problems_id`,`type`,`groups_id`),
  KEY `group` (`groups_id`,`type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_groups_problems`
--

LOCK TABLES `glpi_groups_problems` WRITE;
/*!40000 ALTER TABLE `glpi_groups_problems` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_groups_problems` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_groups_reminders`
--

DROP TABLE IF EXISTS `glpi_groups_reminders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_groups_reminders` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `reminders_id` int(10) unsigned NOT NULL DEFAULT 0,
  `groups_id` int(10) unsigned NOT NULL DEFAULT 0,
  `entities_id` int(10) unsigned DEFAULT NULL,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `no_entity_restriction` tinyint(4) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `reminders_id` (`reminders_id`),
  KEY `groups_id` (`groups_id`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_groups_reminders`
--

LOCK TABLES `glpi_groups_reminders` WRITE;
/*!40000 ALTER TABLE `glpi_groups_reminders` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_groups_reminders` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_groups_rssfeeds`
--

DROP TABLE IF EXISTS `glpi_groups_rssfeeds`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_groups_rssfeeds` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `rssfeeds_id` int(10) unsigned NOT NULL DEFAULT 0,
  `groups_id` int(10) unsigned NOT NULL DEFAULT 0,
  `entities_id` int(10) unsigned DEFAULT NULL,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `no_entity_restriction` tinyint(4) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `rssfeeds_id` (`rssfeeds_id`),
  KEY `groups_id` (`groups_id`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_groups_rssfeeds`
--

LOCK TABLES `glpi_groups_rssfeeds` WRITE;
/*!40000 ALTER TABLE `glpi_groups_rssfeeds` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_groups_rssfeeds` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_groups_tickets`
--

DROP TABLE IF EXISTS `glpi_groups_tickets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_groups_tickets` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `tickets_id` int(10) unsigned NOT NULL DEFAULT 0,
  `groups_id` int(10) unsigned NOT NULL DEFAULT 0,
  `type` int(11) NOT NULL DEFAULT 1,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`tickets_id`,`type`,`groups_id`),
  KEY `group` (`groups_id`,`type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_groups_tickets`
--

LOCK TABLES `glpi_groups_tickets` WRITE;
/*!40000 ALTER TABLE `glpi_groups_tickets` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_groups_tickets` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_groups_users`
--

DROP TABLE IF EXISTS `glpi_groups_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_groups_users` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `users_id` int(10) unsigned NOT NULL DEFAULT 0,
  `groups_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_dynamic` tinyint(4) NOT NULL DEFAULT 0,
  `is_manager` tinyint(4) NOT NULL DEFAULT 0,
  `is_userdelegate` tinyint(4) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`users_id`,`groups_id`),
  KEY `groups_id` (`groups_id`),
  KEY `is_dynamic` (`is_dynamic`),
  KEY `is_manager` (`is_manager`),
  KEY `is_userdelegate` (`is_userdelegate`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_groups_users`
--

LOCK TABLES `glpi_groups_users` WRITE;
/*!40000 ALTER TABLE `glpi_groups_users` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_groups_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_holidays`
--

DROP TABLE IF EXISTS `glpi_holidays`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_holidays` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `comment` text DEFAULT NULL,
  `begin_date` date DEFAULT NULL,
  `end_date` date DEFAULT NULL,
  `is_perpetual` tinyint(4) NOT NULL DEFAULT 0,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `begin_date` (`begin_date`),
  KEY `end_date` (`end_date`),
  KEY `is_perpetual` (`is_perpetual`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_holidays`
--

LOCK TABLES `glpi_holidays` WRITE;
/*!40000 ALTER TABLE `glpi_holidays` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_holidays` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_imageformats`
--

DROP TABLE IF EXISTS `glpi_imageformats`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_imageformats` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`name`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_imageformats`
--

LOCK TABLES `glpi_imageformats` WRITE;
/*!40000 ALTER TABLE `glpi_imageformats` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_imageformats` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_imageresolutions`
--

DROP TABLE IF EXISTS `glpi_imageresolutions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_imageresolutions` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `is_video` tinyint(4) NOT NULL DEFAULT 0,
  `date_mod` timestamp NULL DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`name`),
  KEY `date_mod` (`date_mod`),
  KEY `is_video` (`is_video`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_imageresolutions`
--

LOCK TABLES `glpi_imageresolutions` WRITE;
/*!40000 ALTER TABLE `glpi_imageresolutions` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_imageresolutions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_impactcompounds`
--

DROP TABLE IF EXISTS `glpi_impactcompounds`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_impactcompounds` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT '',
  `color` varchar(255) NOT NULL DEFAULT '',
  PRIMARY KEY (`id`),
  KEY `name` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_impactcompounds`
--

LOCK TABLES `glpi_impactcompounds` WRITE;
/*!40000 ALTER TABLE `glpi_impactcompounds` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_impactcompounds` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_impactcontexts`
--

DROP TABLE IF EXISTS `glpi_impactcontexts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_impactcontexts` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `positions` mediumtext NOT NULL,
  `zoom` float NOT NULL DEFAULT 0,
  `pan_x` float NOT NULL DEFAULT 0,
  `pan_y` float NOT NULL DEFAULT 0,
  `impact_color` varchar(255) NOT NULL DEFAULT '',
  `depends_color` varchar(255) NOT NULL DEFAULT '',
  `impact_and_depends_color` varchar(255) NOT NULL DEFAULT '',
  `show_depends` tinyint(4) NOT NULL DEFAULT 1,
  `show_impact` tinyint(4) NOT NULL DEFAULT 1,
  `max_depth` int(11) NOT NULL DEFAULT 5,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_impactcontexts`
--

LOCK TABLES `glpi_impactcontexts` WRITE;
/*!40000 ALTER TABLE `glpi_impactcontexts` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_impactcontexts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_impactitems`
--

DROP TABLE IF EXISTS `glpi_impactitems`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_impactitems` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `itemtype` varchar(255) NOT NULL DEFAULT '',
  `items_id` int(10) unsigned NOT NULL DEFAULT 0,
  `parent_id` int(10) unsigned NOT NULL DEFAULT 0,
  `impactcontexts_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_slave` tinyint(4) NOT NULL DEFAULT 1,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`itemtype`,`items_id`),
  KEY `source` (`itemtype`,`items_id`),
  KEY `parent_id` (`parent_id`),
  KEY `impactcontexts_id` (`impactcontexts_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_impactitems`
--

LOCK TABLES `glpi_impactitems` WRITE;
/*!40000 ALTER TABLE `glpi_impactitems` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_impactitems` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_impactrelations`
--

DROP TABLE IF EXISTS `glpi_impactrelations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_impactrelations` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `itemtype_source` varchar(255) NOT NULL DEFAULT '',
  `items_id_source` int(10) unsigned NOT NULL DEFAULT 0,
  `itemtype_impacted` varchar(255) NOT NULL DEFAULT '',
  `items_id_impacted` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`itemtype_source`,`items_id_source`,`itemtype_impacted`,`items_id_impacted`),
  KEY `impacted_asset` (`itemtype_impacted`,`items_id_impacted`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_impactrelations`
--

LOCK TABLES `glpi_impactrelations` WRITE;
/*!40000 ALTER TABLE `glpi_impactrelations` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_impactrelations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_infocoms`
--

DROP TABLE IF EXISTS `glpi_infocoms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_infocoms` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `items_id` int(10) unsigned NOT NULL DEFAULT 0,
  `itemtype` varchar(100) NOT NULL,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `buy_date` date DEFAULT NULL,
  `use_date` date DEFAULT NULL,
  `warranty_duration` int(11) NOT NULL DEFAULT 0,
  `warranty_info` varchar(255) DEFAULT NULL,
  `suppliers_id` int(10) unsigned NOT NULL DEFAULT 0,
  `order_number` varchar(255) DEFAULT NULL,
  `delivery_number` varchar(255) DEFAULT NULL,
  `immo_number` varchar(255) DEFAULT NULL,
  `value` decimal(20,4) NOT NULL DEFAULT 0.0000,
  `warranty_value` decimal(20,4) NOT NULL DEFAULT 0.0000,
  `sink_time` int(11) NOT NULL DEFAULT 0,
  `sink_type` int(11) NOT NULL DEFAULT 0,
  `sink_coeff` float NOT NULL DEFAULT 0,
  `comment` text DEFAULT NULL,
  `bill` varchar(255) DEFAULT NULL,
  `budgets_id` int(10) unsigned NOT NULL DEFAULT 0,
  `alert` int(11) NOT NULL DEFAULT 0,
  `order_date` date DEFAULT NULL,
  `delivery_date` date DEFAULT NULL,
  `inventory_date` date DEFAULT NULL,
  `warranty_date` date DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  `decommission_date` timestamp NULL DEFAULT NULL,
  `businesscriticities_id` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`itemtype`,`items_id`),
  KEY `buy_date` (`buy_date`),
  KEY `alert` (`alert`),
  KEY `budgets_id` (`budgets_id`),
  KEY `suppliers_id` (`suppliers_id`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`),
  KEY `businesscriticities_id` (`businesscriticities_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_infocoms`
--

LOCK TABLES `glpi_infocoms` WRITE;
/*!40000 ALTER TABLE `glpi_infocoms` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_infocoms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_interfacetypes`
--

DROP TABLE IF EXISTS `glpi_interfacetypes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_interfacetypes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_interfacetypes`
--

LOCK TABLES `glpi_interfacetypes` WRITE;
/*!40000 ALTER TABLE `glpi_interfacetypes` DISABLE KEYS */;
INSERT INTO `glpi_interfacetypes` VALUES
(1,'IDE',NULL,NULL,NULL),
(2,'SATA',NULL,NULL,NULL),
(3,'SCSI',NULL,NULL,NULL),
(4,'USB',NULL,NULL,NULL),
(5,'AGP',NULL,NULL,NULL),
(6,'PCI',NULL,NULL,NULL),
(7,'PCIe',NULL,NULL,NULL),
(8,'PCI-X',NULL,NULL,NULL);
/*!40000 ALTER TABLE `glpi_interfacetypes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_ipaddresses`
--

DROP TABLE IF EXISTS `glpi_ipaddresses`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_ipaddresses` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `items_id` int(10) unsigned NOT NULL DEFAULT 0,
  `itemtype` varchar(100) NOT NULL,
  `version` tinyint(3) unsigned DEFAULT 0,
  `name` varchar(255) DEFAULT NULL,
  `binary_0` int(10) unsigned NOT NULL DEFAULT 0,
  `binary_1` int(10) unsigned NOT NULL DEFAULT 0,
  `binary_2` int(10) unsigned NOT NULL DEFAULT 0,
  `binary_3` int(10) unsigned NOT NULL DEFAULT 0,
  `is_deleted` tinyint(4) NOT NULL DEFAULT 0,
  `is_dynamic` tinyint(4) NOT NULL DEFAULT 0,
  `mainitems_id` int(10) unsigned NOT NULL DEFAULT 0,
  `mainitemtype` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `entities_id` (`entities_id`),
  KEY `binary` (`binary_0`,`binary_1`,`binary_2`,`binary_3`),
  KEY `is_deleted` (`is_deleted`),
  KEY `is_dynamic` (`is_dynamic`),
  KEY `item` (`itemtype`,`items_id`,`is_deleted`),
  KEY `mainitem` (`mainitemtype`,`mainitems_id`,`is_deleted`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_ipaddresses`
--

LOCK TABLES `glpi_ipaddresses` WRITE;
/*!40000 ALTER TABLE `glpi_ipaddresses` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_ipaddresses` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_ipaddresses_ipnetworks`
--

DROP TABLE IF EXISTS `glpi_ipaddresses_ipnetworks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_ipaddresses_ipnetworks` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `ipaddresses_id` int(10) unsigned NOT NULL DEFAULT 0,
  `ipnetworks_id` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`ipaddresses_id`,`ipnetworks_id`),
  KEY `ipnetworks_id` (`ipnetworks_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_ipaddresses_ipnetworks`
--

LOCK TABLES `glpi_ipaddresses_ipnetworks` WRITE;
/*!40000 ALTER TABLE `glpi_ipaddresses_ipnetworks` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_ipaddresses_ipnetworks` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_ipnetworks`
--

DROP TABLE IF EXISTS `glpi_ipnetworks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_ipnetworks` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `ipnetworks_id` int(10) unsigned NOT NULL DEFAULT 0,
  `completename` text DEFAULT NULL,
  `level` int(11) NOT NULL DEFAULT 0,
  `ancestors_cache` longtext DEFAULT NULL,
  `sons_cache` longtext DEFAULT NULL,
  `addressable` tinyint(4) NOT NULL DEFAULT 0,
  `version` tinyint(3) unsigned DEFAULT 0,
  `name` varchar(255) DEFAULT NULL,
  `address` varchar(40) DEFAULT NULL,
  `address_0` int(10) unsigned NOT NULL DEFAULT 0,
  `address_1` int(10) unsigned NOT NULL DEFAULT 0,
  `address_2` int(10) unsigned NOT NULL DEFAULT 0,
  `address_3` int(10) unsigned NOT NULL DEFAULT 0,
  `netmask` varchar(40) DEFAULT NULL,
  `netmask_0` int(10) unsigned NOT NULL DEFAULT 0,
  `netmask_1` int(10) unsigned NOT NULL DEFAULT 0,
  `netmask_2` int(10) unsigned NOT NULL DEFAULT 0,
  `netmask_3` int(10) unsigned NOT NULL DEFAULT 0,
  `gateway` varchar(40) DEFAULT NULL,
  `gateway_0` int(10) unsigned NOT NULL DEFAULT 0,
  `gateway_1` int(10) unsigned NOT NULL DEFAULT 0,
  `gateway_2` int(10) unsigned NOT NULL DEFAULT 0,
  `gateway_3` int(10) unsigned NOT NULL DEFAULT 0,
  `comment` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `network_definition` (`entities_id`,`address`,`netmask`),
  KEY `address` (`address_0`,`address_1`,`address_2`,`address_3`),
  KEY `netmask` (`netmask_0`,`netmask_1`,`netmask_2`,`netmask_3`),
  KEY `gateway` (`gateway_0`,`gateway_1`,`gateway_2`,`gateway_3`),
  KEY `name` (`name`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`),
  KEY `ipnetworks_id` (`ipnetworks_id`),
  KEY `level` (`level`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_ipnetworks`
--

LOCK TABLES `glpi_ipnetworks` WRITE;
/*!40000 ALTER TABLE `glpi_ipnetworks` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_ipnetworks` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_ipnetworks_vlans`
--

DROP TABLE IF EXISTS `glpi_ipnetworks_vlans`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_ipnetworks_vlans` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `ipnetworks_id` int(10) unsigned NOT NULL DEFAULT 0,
  `vlans_id` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  UNIQUE KEY `link` (`ipnetworks_id`,`vlans_id`),
  KEY `vlans_id` (`vlans_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_ipnetworks_vlans`
--

LOCK TABLES `glpi_ipnetworks_vlans` WRITE;
/*!40000 ALTER TABLE `glpi_ipnetworks_vlans` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_ipnetworks_vlans` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_items_clusters`
--

DROP TABLE IF EXISTS `glpi_items_clusters`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_items_clusters` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `clusters_id` int(10) unsigned NOT NULL DEFAULT 0,
  `itemtype` varchar(100) DEFAULT NULL,
  `items_id` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`clusters_id`,`itemtype`,`items_id`),
  KEY `item` (`itemtype`,`items_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_items_clusters`
--

LOCK TABLES `glpi_items_clusters` WRITE;
/*!40000 ALTER TABLE `glpi_items_clusters` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_items_clusters` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_items_devicebatteries`
--

DROP TABLE IF EXISTS `glpi_items_devicebatteries`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_items_devicebatteries` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `items_id` int(10) unsigned NOT NULL DEFAULT 0,
  `itemtype` varchar(255) DEFAULT NULL,
  `devicebatteries_id` int(10) unsigned NOT NULL DEFAULT 0,
  `manufacturing_date` date DEFAULT NULL,
  `is_deleted` tinyint(4) NOT NULL DEFAULT 0,
  `is_dynamic` tinyint(4) NOT NULL DEFAULT 0,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `serial` varchar(255) DEFAULT NULL,
  `otherserial` varchar(255) DEFAULT NULL,
  `locations_id` int(10) unsigned NOT NULL DEFAULT 0,
  `states_id` int(10) unsigned NOT NULL DEFAULT 0,
  `real_capacity` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `devicebatteries_id` (`devicebatteries_id`),
  KEY `is_deleted` (`is_deleted`),
  KEY `is_dynamic` (`is_dynamic`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `serial` (`serial`),
  KEY `item` (`itemtype`,`items_id`),
  KEY `otherserial` (`otherserial`),
  KEY `locations_id` (`locations_id`),
  KEY `states_id` (`states_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_items_devicebatteries`
--

LOCK TABLES `glpi_items_devicebatteries` WRITE;
/*!40000 ALTER TABLE `glpi_items_devicebatteries` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_items_devicebatteries` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_items_devicecameras`
--

DROP TABLE IF EXISTS `glpi_items_devicecameras`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_items_devicecameras` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `items_id` int(10) unsigned NOT NULL DEFAULT 0,
  `itemtype` varchar(255) DEFAULT NULL,
  `devicecameras_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_deleted` tinyint(4) NOT NULL DEFAULT 0,
  `is_dynamic` tinyint(4) NOT NULL DEFAULT 0,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `locations_id` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `items_id` (`items_id`),
  KEY `devicecameras_id` (`devicecameras_id`),
  KEY `is_deleted` (`is_deleted`),
  KEY `is_dynamic` (`is_dynamic`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `locations_id` (`locations_id`),
  KEY `item` (`itemtype`,`items_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_items_devicecameras`
--

LOCK TABLES `glpi_items_devicecameras` WRITE;
/*!40000 ALTER TABLE `glpi_items_devicecameras` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_items_devicecameras` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_items_devicecameras_imageformats`
--

DROP TABLE IF EXISTS `glpi_items_devicecameras_imageformats`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_items_devicecameras_imageformats` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `items_devicecameras_id` int(10) unsigned NOT NULL DEFAULT 0,
  `imageformats_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_dynamic` tinyint(4) NOT NULL DEFAULT 0,
  `is_deleted` tinyint(4) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `items_devicecameras_id` (`items_devicecameras_id`),
  KEY `imageformats_id` (`imageformats_id`),
  KEY `is_dynamic` (`is_dynamic`),
  KEY `is_deleted` (`is_deleted`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_items_devicecameras_imageformats`
--

LOCK TABLES `glpi_items_devicecameras_imageformats` WRITE;
/*!40000 ALTER TABLE `glpi_items_devicecameras_imageformats` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_items_devicecameras_imageformats` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_items_devicecameras_imageresolutions`
--

DROP TABLE IF EXISTS `glpi_items_devicecameras_imageresolutions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_items_devicecameras_imageresolutions` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `items_devicecameras_id` int(10) unsigned NOT NULL DEFAULT 0,
  `imageresolutions_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_dynamic` tinyint(4) NOT NULL DEFAULT 0,
  `is_deleted` tinyint(4) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `items_devicecameras_id` (`items_devicecameras_id`),
  KEY `imageresolutions_id` (`imageresolutions_id`),
  KEY `is_dynamic` (`is_dynamic`),
  KEY `is_deleted` (`is_deleted`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_items_devicecameras_imageresolutions`
--

LOCK TABLES `glpi_items_devicecameras_imageresolutions` WRITE;
/*!40000 ALTER TABLE `glpi_items_devicecameras_imageresolutions` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_items_devicecameras_imageresolutions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_items_devicecases`
--

DROP TABLE IF EXISTS `glpi_items_devicecases`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_items_devicecases` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `items_id` int(10) unsigned NOT NULL DEFAULT 0,
  `itemtype` varchar(255) DEFAULT NULL,
  `devicecases_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_deleted` tinyint(4) NOT NULL DEFAULT 0,
  `is_dynamic` tinyint(4) NOT NULL DEFAULT 0,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `serial` varchar(255) DEFAULT NULL,
  `otherserial` varchar(255) DEFAULT NULL,
  `locations_id` int(10) unsigned NOT NULL DEFAULT 0,
  `states_id` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `devicecases_id` (`devicecases_id`),
  KEY `is_deleted` (`is_deleted`),
  KEY `is_dynamic` (`is_dynamic`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `serial` (`serial`),
  KEY `item` (`itemtype`,`items_id`),
  KEY `otherserial` (`otherserial`),
  KEY `locations_id` (`locations_id`),
  KEY `states_id` (`states_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_items_devicecases`
--

LOCK TABLES `glpi_items_devicecases` WRITE;
/*!40000 ALTER TABLE `glpi_items_devicecases` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_items_devicecases` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_items_devicecontrols`
--

DROP TABLE IF EXISTS `glpi_items_devicecontrols`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_items_devicecontrols` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `items_id` int(10) unsigned NOT NULL DEFAULT 0,
  `itemtype` varchar(255) DEFAULT NULL,
  `devicecontrols_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_deleted` tinyint(4) NOT NULL DEFAULT 0,
  `is_dynamic` tinyint(4) NOT NULL DEFAULT 0,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `serial` varchar(255) DEFAULT NULL,
  `busID` varchar(255) DEFAULT NULL,
  `otherserial` varchar(255) DEFAULT NULL,
  `locations_id` int(10) unsigned NOT NULL DEFAULT 0,
  `states_id` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `devicecontrols_id` (`devicecontrols_id`),
  KEY `is_deleted` (`is_deleted`),
  KEY `is_dynamic` (`is_dynamic`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `serial` (`serial`),
  KEY `busID` (`busID`),
  KEY `item` (`itemtype`,`items_id`),
  KEY `otherserial` (`otherserial`),
  KEY `locations_id` (`locations_id`),
  KEY `states_id` (`states_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_items_devicecontrols`
--

LOCK TABLES `glpi_items_devicecontrols` WRITE;
/*!40000 ALTER TABLE `glpi_items_devicecontrols` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_items_devicecontrols` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_items_devicedrives`
--

DROP TABLE IF EXISTS `glpi_items_devicedrives`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_items_devicedrives` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `items_id` int(10) unsigned NOT NULL DEFAULT 0,
  `itemtype` varchar(255) DEFAULT NULL,
  `devicedrives_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_deleted` tinyint(4) NOT NULL DEFAULT 0,
  `is_dynamic` tinyint(4) NOT NULL DEFAULT 0,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `serial` varchar(255) DEFAULT NULL,
  `busID` varchar(255) DEFAULT NULL,
  `otherserial` varchar(255) DEFAULT NULL,
  `locations_id` int(10) unsigned NOT NULL DEFAULT 0,
  `states_id` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `devicedrives_id` (`devicedrives_id`),
  KEY `is_deleted` (`is_deleted`),
  KEY `is_dynamic` (`is_dynamic`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `serial` (`serial`),
  KEY `busID` (`busID`),
  KEY `item` (`itemtype`,`items_id`),
  KEY `otherserial` (`otherserial`),
  KEY `locations_id` (`locations_id`),
  KEY `states_id` (`states_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_items_devicedrives`
--

LOCK TABLES `glpi_items_devicedrives` WRITE;
/*!40000 ALTER TABLE `glpi_items_devicedrives` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_items_devicedrives` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_items_devicefirmwares`
--

DROP TABLE IF EXISTS `glpi_items_devicefirmwares`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_items_devicefirmwares` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `items_id` int(10) unsigned NOT NULL DEFAULT 0,
  `itemtype` varchar(255) DEFAULT NULL,
  `devicefirmwares_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_deleted` tinyint(4) NOT NULL DEFAULT 0,
  `is_dynamic` tinyint(4) NOT NULL DEFAULT 0,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `serial` varchar(255) DEFAULT NULL,
  `otherserial` varchar(255) DEFAULT NULL,
  `locations_id` int(10) unsigned NOT NULL DEFAULT 0,
  `states_id` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `devicefirmwares_id` (`devicefirmwares_id`),
  KEY `is_deleted` (`is_deleted`),
  KEY `is_dynamic` (`is_dynamic`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `serial` (`serial`),
  KEY `item` (`itemtype`,`items_id`),
  KEY `otherserial` (`otherserial`),
  KEY `locations_id` (`locations_id`),
  KEY `states_id` (`states_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_items_devicefirmwares`
--

LOCK TABLES `glpi_items_devicefirmwares` WRITE;
/*!40000 ALTER TABLE `glpi_items_devicefirmwares` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_items_devicefirmwares` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_items_devicegenerics`
--

DROP TABLE IF EXISTS `glpi_items_devicegenerics`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_items_devicegenerics` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `items_id` int(10) unsigned NOT NULL DEFAULT 0,
  `itemtype` varchar(255) DEFAULT NULL,
  `devicegenerics_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_deleted` tinyint(4) NOT NULL DEFAULT 0,
  `is_dynamic` tinyint(4) NOT NULL DEFAULT 0,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `serial` varchar(255) DEFAULT NULL,
  `otherserial` varchar(255) DEFAULT NULL,
  `locations_id` int(10) unsigned NOT NULL DEFAULT 0,
  `states_id` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `devicegenerics_id` (`devicegenerics_id`),
  KEY `is_deleted` (`is_deleted`),
  KEY `is_dynamic` (`is_dynamic`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `serial` (`serial`),
  KEY `item` (`itemtype`,`items_id`),
  KEY `otherserial` (`otherserial`),
  KEY `locations_id` (`locations_id`),
  KEY `states_id` (`states_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_items_devicegenerics`
--

LOCK TABLES `glpi_items_devicegenerics` WRITE;
/*!40000 ALTER TABLE `glpi_items_devicegenerics` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_items_devicegenerics` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_items_devicegraphiccards`
--

DROP TABLE IF EXISTS `glpi_items_devicegraphiccards`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_items_devicegraphiccards` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `items_id` int(10) unsigned NOT NULL DEFAULT 0,
  `itemtype` varchar(255) DEFAULT NULL,
  `devicegraphiccards_id` int(10) unsigned NOT NULL DEFAULT 0,
  `memory` int(11) NOT NULL DEFAULT 0,
  `is_deleted` tinyint(4) NOT NULL DEFAULT 0,
  `is_dynamic` tinyint(4) NOT NULL DEFAULT 0,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `serial` varchar(255) DEFAULT NULL,
  `busID` varchar(255) DEFAULT NULL,
  `otherserial` varchar(255) DEFAULT NULL,
  `locations_id` int(10) unsigned NOT NULL DEFAULT 0,
  `states_id` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `devicegraphiccards_id` (`devicegraphiccards_id`),
  KEY `specificity` (`memory`),
  KEY `is_deleted` (`is_deleted`),
  KEY `is_dynamic` (`is_dynamic`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `serial` (`serial`),
  KEY `busID` (`busID`),
  KEY `item` (`itemtype`,`items_id`),
  KEY `otherserial` (`otherserial`),
  KEY `locations_id` (`locations_id`),
  KEY `states_id` (`states_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_items_devicegraphiccards`
--

LOCK TABLES `glpi_items_devicegraphiccards` WRITE;
/*!40000 ALTER TABLE `glpi_items_devicegraphiccards` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_items_devicegraphiccards` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_items_deviceharddrives`
--

DROP TABLE IF EXISTS `glpi_items_deviceharddrives`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_items_deviceharddrives` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `items_id` int(10) unsigned NOT NULL DEFAULT 0,
  `itemtype` varchar(255) DEFAULT NULL,
  `deviceharddrives_id` int(10) unsigned NOT NULL DEFAULT 0,
  `capacity` int(11) NOT NULL DEFAULT 0,
  `serial` varchar(255) DEFAULT NULL,
  `is_deleted` tinyint(4) NOT NULL DEFAULT 0,
  `is_dynamic` tinyint(4) NOT NULL DEFAULT 0,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `busID` varchar(255) DEFAULT NULL,
  `otherserial` varchar(255) DEFAULT NULL,
  `locations_id` int(10) unsigned NOT NULL DEFAULT 0,
  `states_id` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `deviceharddrives_id` (`deviceharddrives_id`),
  KEY `specificity` (`capacity`),
  KEY `is_deleted` (`is_deleted`),
  KEY `is_dynamic` (`is_dynamic`),
  KEY `serial` (`serial`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `busID` (`busID`),
  KEY `item` (`itemtype`,`items_id`),
  KEY `otherserial` (`otherserial`),
  KEY `locations_id` (`locations_id`),
  KEY `states_id` (`states_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_items_deviceharddrives`
--

LOCK TABLES `glpi_items_deviceharddrives` WRITE;
/*!40000 ALTER TABLE `glpi_items_deviceharddrives` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_items_deviceharddrives` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_items_devicememories`
--

DROP TABLE IF EXISTS `glpi_items_devicememories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_items_devicememories` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `items_id` int(10) unsigned NOT NULL DEFAULT 0,
  `itemtype` varchar(255) DEFAULT NULL,
  `devicememories_id` int(10) unsigned NOT NULL DEFAULT 0,
  `size` int(11) NOT NULL DEFAULT 0,
  `serial` varchar(255) DEFAULT NULL,
  `is_deleted` tinyint(4) NOT NULL DEFAULT 0,
  `is_dynamic` tinyint(4) NOT NULL DEFAULT 0,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `busID` varchar(255) DEFAULT NULL,
  `otherserial` varchar(255) DEFAULT NULL,
  `locations_id` int(10) unsigned NOT NULL DEFAULT 0,
  `states_id` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `devicememories_id` (`devicememories_id`),
  KEY `specificity` (`size`),
  KEY `is_deleted` (`is_deleted`),
  KEY `is_dynamic` (`is_dynamic`),
  KEY `serial` (`serial`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `busID` (`busID`),
  KEY `item` (`itemtype`,`items_id`),
  KEY `otherserial` (`otherserial`),
  KEY `locations_id` (`locations_id`),
  KEY `states_id` (`states_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_items_devicememories`
--

LOCK TABLES `glpi_items_devicememories` WRITE;
/*!40000 ALTER TABLE `glpi_items_devicememories` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_items_devicememories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_items_devicemotherboards`
--

DROP TABLE IF EXISTS `glpi_items_devicemotherboards`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_items_devicemotherboards` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `items_id` int(10) unsigned NOT NULL DEFAULT 0,
  `itemtype` varchar(255) DEFAULT NULL,
  `devicemotherboards_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_deleted` tinyint(4) NOT NULL DEFAULT 0,
  `is_dynamic` tinyint(4) NOT NULL DEFAULT 0,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `serial` varchar(255) DEFAULT NULL,
  `otherserial` varchar(255) DEFAULT NULL,
  `locations_id` int(10) unsigned NOT NULL DEFAULT 0,
  `states_id` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `devicemotherboards_id` (`devicemotherboards_id`),
  KEY `is_deleted` (`is_deleted`),
  KEY `is_dynamic` (`is_dynamic`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `serial` (`serial`),
  KEY `item` (`itemtype`,`items_id`),
  KEY `otherserial` (`otherserial`),
  KEY `locations_id` (`locations_id`),
  KEY `states_id` (`states_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_items_devicemotherboards`
--

LOCK TABLES `glpi_items_devicemotherboards` WRITE;
/*!40000 ALTER TABLE `glpi_items_devicemotherboards` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_items_devicemotherboards` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_items_devicenetworkcards`
--

DROP TABLE IF EXISTS `glpi_items_devicenetworkcards`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_items_devicenetworkcards` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `items_id` int(10) unsigned NOT NULL DEFAULT 0,
  `itemtype` varchar(255) DEFAULT NULL,
  `devicenetworkcards_id` int(10) unsigned NOT NULL DEFAULT 0,
  `mac` varchar(255) DEFAULT NULL,
  `is_deleted` tinyint(4) NOT NULL DEFAULT 0,
  `is_dynamic` tinyint(4) NOT NULL DEFAULT 0,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `serial` varchar(255) DEFAULT NULL,
  `busID` varchar(255) DEFAULT NULL,
  `otherserial` varchar(255) DEFAULT NULL,
  `locations_id` int(10) unsigned NOT NULL DEFAULT 0,
  `states_id` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `devicenetworkcards_id` (`devicenetworkcards_id`),
  KEY `specificity` (`mac`),
  KEY `is_deleted` (`is_deleted`),
  KEY `is_dynamic` (`is_dynamic`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `serial` (`serial`),
  KEY `busID` (`busID`),
  KEY `item` (`itemtype`,`items_id`),
  KEY `otherserial` (`otherserial`),
  KEY `locations_id` (`locations_id`),
  KEY `states_id` (`states_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_items_devicenetworkcards`
--

LOCK TABLES `glpi_items_devicenetworkcards` WRITE;
/*!40000 ALTER TABLE `glpi_items_devicenetworkcards` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_items_devicenetworkcards` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_items_devicepcis`
--

DROP TABLE IF EXISTS `glpi_items_devicepcis`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_items_devicepcis` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `items_id` int(10) unsigned NOT NULL DEFAULT 0,
  `itemtype` varchar(255) DEFAULT NULL,
  `devicepcis_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_deleted` tinyint(4) NOT NULL DEFAULT 0,
  `is_dynamic` tinyint(4) NOT NULL DEFAULT 0,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `serial` varchar(255) DEFAULT NULL,
  `busID` varchar(255) DEFAULT NULL,
  `otherserial` varchar(255) DEFAULT NULL,
  `locations_id` int(10) unsigned NOT NULL DEFAULT 0,
  `states_id` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `devicepcis_id` (`devicepcis_id`),
  KEY `is_deleted` (`is_deleted`),
  KEY `is_dynamic` (`is_dynamic`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `serial` (`serial`),
  KEY `busID` (`busID`),
  KEY `item` (`itemtype`,`items_id`),
  KEY `otherserial` (`otherserial`),
  KEY `locations_id` (`locations_id`),
  KEY `states_id` (`states_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_items_devicepcis`
--

LOCK TABLES `glpi_items_devicepcis` WRITE;
/*!40000 ALTER TABLE `glpi_items_devicepcis` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_items_devicepcis` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_items_devicepowersupplies`
--

DROP TABLE IF EXISTS `glpi_items_devicepowersupplies`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_items_devicepowersupplies` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `items_id` int(10) unsigned NOT NULL DEFAULT 0,
  `itemtype` varchar(255) DEFAULT NULL,
  `devicepowersupplies_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_deleted` tinyint(4) NOT NULL DEFAULT 0,
  `is_dynamic` tinyint(4) NOT NULL DEFAULT 0,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `serial` varchar(255) DEFAULT NULL,
  `otherserial` varchar(255) DEFAULT NULL,
  `locations_id` int(10) unsigned NOT NULL DEFAULT 0,
  `states_id` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `devicepowersupplies_id` (`devicepowersupplies_id`),
  KEY `is_deleted` (`is_deleted`),
  KEY `is_dynamic` (`is_dynamic`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `serial` (`serial`),
  KEY `item` (`itemtype`,`items_id`),
  KEY `otherserial` (`otherserial`),
  KEY `locations_id` (`locations_id`),
  KEY `states_id` (`states_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_items_devicepowersupplies`
--

LOCK TABLES `glpi_items_devicepowersupplies` WRITE;
/*!40000 ALTER TABLE `glpi_items_devicepowersupplies` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_items_devicepowersupplies` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_items_deviceprocessors`
--

DROP TABLE IF EXISTS `glpi_items_deviceprocessors`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_items_deviceprocessors` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `items_id` int(10) unsigned NOT NULL DEFAULT 0,
  `itemtype` varchar(255) DEFAULT NULL,
  `deviceprocessors_id` int(10) unsigned NOT NULL DEFAULT 0,
  `frequency` int(11) NOT NULL DEFAULT 0,
  `serial` varchar(255) DEFAULT NULL,
  `is_deleted` tinyint(4) NOT NULL DEFAULT 0,
  `is_dynamic` tinyint(4) NOT NULL DEFAULT 0,
  `nbcores` int(11) DEFAULT NULL,
  `nbthreads` int(11) DEFAULT NULL,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `busID` varchar(255) DEFAULT NULL,
  `otherserial` varchar(255) DEFAULT NULL,
  `locations_id` int(10) unsigned NOT NULL DEFAULT 0,
  `states_id` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `deviceprocessors_id` (`deviceprocessors_id`),
  KEY `specificity` (`frequency`),
  KEY `is_deleted` (`is_deleted`),
  KEY `is_dynamic` (`is_dynamic`),
  KEY `serial` (`serial`),
  KEY `nbcores` (`nbcores`),
  KEY `nbthreads` (`nbthreads`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `busID` (`busID`),
  KEY `item` (`itemtype`,`items_id`),
  KEY `otherserial` (`otherserial`),
  KEY `locations_id` (`locations_id`),
  KEY `states_id` (`states_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_items_deviceprocessors`
--

LOCK TABLES `glpi_items_deviceprocessors` WRITE;
/*!40000 ALTER TABLE `glpi_items_deviceprocessors` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_items_deviceprocessors` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_items_devicesensors`
--

DROP TABLE IF EXISTS `glpi_items_devicesensors`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_items_devicesensors` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `items_id` int(10) unsigned NOT NULL DEFAULT 0,
  `itemtype` varchar(255) DEFAULT NULL,
  `devicesensors_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_deleted` tinyint(4) NOT NULL DEFAULT 0,
  `is_dynamic` tinyint(4) NOT NULL DEFAULT 0,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `serial` varchar(255) DEFAULT NULL,
  `otherserial` varchar(255) DEFAULT NULL,
  `locations_id` int(10) unsigned NOT NULL DEFAULT 0,
  `states_id` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `devicesensors_id` (`devicesensors_id`),
  KEY `is_deleted` (`is_deleted`),
  KEY `is_dynamic` (`is_dynamic`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `serial` (`serial`),
  KEY `item` (`itemtype`,`items_id`),
  KEY `otherserial` (`otherserial`),
  KEY `locations_id` (`locations_id`),
  KEY `states_id` (`states_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_items_devicesensors`
--

LOCK TABLES `glpi_items_devicesensors` WRITE;
/*!40000 ALTER TABLE `glpi_items_devicesensors` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_items_devicesensors` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_items_devicesimcards`
--

DROP TABLE IF EXISTS `glpi_items_devicesimcards`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_items_devicesimcards` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `items_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'RELATION to various table, according to itemtype (id)',
  `itemtype` varchar(100) NOT NULL,
  `devicesimcards_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_deleted` tinyint(4) NOT NULL DEFAULT 0,
  `is_dynamic` tinyint(4) NOT NULL DEFAULT 0,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `serial` varchar(255) DEFAULT NULL,
  `otherserial` varchar(255) DEFAULT NULL,
  `states_id` int(10) unsigned NOT NULL DEFAULT 0,
  `locations_id` int(10) unsigned NOT NULL DEFAULT 0,
  `lines_id` int(10) unsigned NOT NULL DEFAULT 0,
  `users_id` int(10) unsigned NOT NULL DEFAULT 0,
  `groups_id` int(10) unsigned NOT NULL DEFAULT 0,
  `pin` varchar(255) NOT NULL DEFAULT '',
  `pin2` varchar(255) NOT NULL DEFAULT '',
  `puk` varchar(255) NOT NULL DEFAULT '',
  `puk2` varchar(255) NOT NULL DEFAULT '',
  `msin` varchar(255) NOT NULL DEFAULT '',
  `comment` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `item` (`itemtype`,`items_id`),
  KEY `devicesimcards_id` (`devicesimcards_id`),
  KEY `is_deleted` (`is_deleted`),
  KEY `is_dynamic` (`is_dynamic`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `serial` (`serial`),
  KEY `otherserial` (`otherserial`),
  KEY `states_id` (`states_id`),
  KEY `locations_id` (`locations_id`),
  KEY `lines_id` (`lines_id`),
  KEY `users_id` (`users_id`),
  KEY `groups_id` (`groups_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_items_devicesimcards`
--

LOCK TABLES `glpi_items_devicesimcards` WRITE;
/*!40000 ALTER TABLE `glpi_items_devicesimcards` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_items_devicesimcards` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_items_devicesoundcards`
--

DROP TABLE IF EXISTS `glpi_items_devicesoundcards`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_items_devicesoundcards` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `items_id` int(10) unsigned NOT NULL DEFAULT 0,
  `itemtype` varchar(255) DEFAULT NULL,
  `devicesoundcards_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_deleted` tinyint(4) NOT NULL DEFAULT 0,
  `is_dynamic` tinyint(4) NOT NULL DEFAULT 0,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `serial` varchar(255) DEFAULT NULL,
  `busID` varchar(255) DEFAULT NULL,
  `otherserial` varchar(255) DEFAULT NULL,
  `locations_id` int(10) unsigned NOT NULL DEFAULT 0,
  `states_id` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `devicesoundcards_id` (`devicesoundcards_id`),
  KEY `is_deleted` (`is_deleted`),
  KEY `is_dynamic` (`is_dynamic`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `serial` (`serial`),
  KEY `busID` (`busID`),
  KEY `item` (`itemtype`,`items_id`),
  KEY `otherserial` (`otherserial`),
  KEY `locations_id` (`locations_id`),
  KEY `states_id` (`states_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_items_devicesoundcards`
--

LOCK TABLES `glpi_items_devicesoundcards` WRITE;
/*!40000 ALTER TABLE `glpi_items_devicesoundcards` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_items_devicesoundcards` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_items_disks`
--

DROP TABLE IF EXISTS `glpi_items_disks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_items_disks` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `itemtype` varchar(255) DEFAULT NULL,
  `items_id` int(10) unsigned NOT NULL DEFAULT 0,
  `name` varchar(255) DEFAULT NULL,
  `device` varchar(255) DEFAULT NULL,
  `mountpoint` varchar(255) DEFAULT NULL,
  `filesystems_id` int(10) unsigned NOT NULL DEFAULT 0,
  `totalsize` bigint(20) NOT NULL DEFAULT 0,
  `freesize` bigint(20) NOT NULL DEFAULT 0,
  `is_deleted` tinyint(4) NOT NULL DEFAULT 0,
  `is_dynamic` tinyint(4) NOT NULL DEFAULT 0,
  `encryption_status` int(11) NOT NULL DEFAULT 0,
  `encryption_tool` varchar(255) DEFAULT NULL,
  `encryption_algorithm` varchar(255) DEFAULT NULL,
  `encryption_type` varchar(255) DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `device` (`device`),
  KEY `mountpoint` (`mountpoint`),
  KEY `totalsize` (`totalsize`),
  KEY `freesize` (`freesize`),
  KEY `item` (`itemtype`,`items_id`),
  KEY `filesystems_id` (`filesystems_id`),
  KEY `entities_id` (`entities_id`),
  KEY `is_deleted` (`is_deleted`),
  KEY `is_dynamic` (`is_dynamic`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_items_disks`
--

LOCK TABLES `glpi_items_disks` WRITE;
/*!40000 ALTER TABLE `glpi_items_disks` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_items_disks` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_items_enclosures`
--

DROP TABLE IF EXISTS `glpi_items_enclosures`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_items_enclosures` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `enclosures_id` int(10) unsigned NOT NULL,
  `itemtype` varchar(255) NOT NULL,
  `items_id` int(10) unsigned NOT NULL,
  `position` int(11) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `item` (`itemtype`,`items_id`),
  KEY `relation` (`enclosures_id`,`itemtype`,`items_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_items_enclosures`
--

LOCK TABLES `glpi_items_enclosures` WRITE;
/*!40000 ALTER TABLE `glpi_items_enclosures` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_items_enclosures` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_items_kanbans`
--

DROP TABLE IF EXISTS `glpi_items_kanbans`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_items_kanbans` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `itemtype` varchar(100) NOT NULL,
  `items_id` int(10) unsigned DEFAULT NULL,
  `users_id` int(10) unsigned NOT NULL,
  `state` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`itemtype`,`items_id`,`users_id`),
  KEY `users_id` (`users_id`),
  KEY `date_creation` (`date_creation`),
  KEY `date_mod` (`date_mod`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_items_kanbans`
--

LOCK TABLES `glpi_items_kanbans` WRITE;
/*!40000 ALTER TABLE `glpi_items_kanbans` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_items_kanbans` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_items_operatingsystems`
--

DROP TABLE IF EXISTS `glpi_items_operatingsystems`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_items_operatingsystems` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `items_id` int(10) unsigned NOT NULL DEFAULT 0,
  `itemtype` varchar(255) DEFAULT NULL,
  `operatingsystems_id` int(10) unsigned NOT NULL DEFAULT 0,
  `operatingsystemversions_id` int(10) unsigned NOT NULL DEFAULT 0,
  `operatingsystemservicepacks_id` int(10) unsigned NOT NULL DEFAULT 0,
  `operatingsystemarchitectures_id` int(10) unsigned NOT NULL DEFAULT 0,
  `operatingsystemkernelversions_id` int(10) unsigned NOT NULL DEFAULT 0,
  `license_number` varchar(255) DEFAULT NULL,
  `licenseid` varchar(255) DEFAULT NULL,
  `company` varchar(255) DEFAULT NULL,
  `owner` varchar(255) DEFAULT NULL,
  `hostid` varchar(255) DEFAULT NULL,
  `operatingsystemeditions_id` int(10) unsigned NOT NULL DEFAULT 0,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  `is_deleted` tinyint(4) NOT NULL DEFAULT 0,
  `is_dynamic` tinyint(4) NOT NULL DEFAULT 0,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `install_date` date DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`items_id`,`itemtype`,`operatingsystems_id`,`operatingsystemarchitectures_id`),
  KEY `item` (`itemtype`,`items_id`),
  KEY `operatingsystems_id` (`operatingsystems_id`),
  KEY `operatingsystemservicepacks_id` (`operatingsystemservicepacks_id`),
  KEY `operatingsystemversions_id` (`operatingsystemversions_id`),
  KEY `operatingsystemarchitectures_id` (`operatingsystemarchitectures_id`),
  KEY `operatingsystemkernelversions_id` (`operatingsystemkernelversions_id`),
  KEY `operatingsystemeditions_id` (`operatingsystemeditions_id`),
  KEY `is_deleted` (`is_deleted`),
  KEY `is_dynamic` (`is_dynamic`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `date_creation` (`date_creation`),
  KEY `date_mod` (`date_mod`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_items_operatingsystems`
--

LOCK TABLES `glpi_items_operatingsystems` WRITE;
/*!40000 ALTER TABLE `glpi_items_operatingsystems` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_items_operatingsystems` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_items_problems`
--

DROP TABLE IF EXISTS `glpi_items_problems`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_items_problems` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `problems_id` int(10) unsigned NOT NULL DEFAULT 0,
  `itemtype` varchar(100) DEFAULT NULL,
  `items_id` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`problems_id`,`itemtype`,`items_id`),
  KEY `item` (`itemtype`,`items_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_items_problems`
--

LOCK TABLES `glpi_items_problems` WRITE;
/*!40000 ALTER TABLE `glpi_items_problems` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_items_problems` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_items_projects`
--

DROP TABLE IF EXISTS `glpi_items_projects`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_items_projects` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `projects_id` int(10) unsigned NOT NULL DEFAULT 0,
  `itemtype` varchar(100) DEFAULT NULL,
  `items_id` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`projects_id`,`itemtype`,`items_id`),
  KEY `item` (`itemtype`,`items_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_items_projects`
--

LOCK TABLES `glpi_items_projects` WRITE;
/*!40000 ALTER TABLE `glpi_items_projects` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_items_projects` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_items_racks`
--

DROP TABLE IF EXISTS `glpi_items_racks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_items_racks` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `racks_id` int(10) unsigned NOT NULL,
  `itemtype` varchar(255) NOT NULL,
  `items_id` int(10) unsigned NOT NULL,
  `position` int(11) NOT NULL,
  `orientation` tinyint(4) DEFAULT NULL,
  `bgcolor` varchar(7) DEFAULT NULL,
  `hpos` tinyint(4) NOT NULL DEFAULT 0,
  `is_reserved` tinyint(4) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  UNIQUE KEY `item` (`itemtype`,`items_id`,`is_reserved`),
  KEY `relation` (`racks_id`,`itemtype`,`items_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_items_racks`
--

LOCK TABLES `glpi_items_racks` WRITE;
/*!40000 ALTER TABLE `glpi_items_racks` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_items_racks` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_items_remotemanagements`
--

DROP TABLE IF EXISTS `glpi_items_remotemanagements`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_items_remotemanagements` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `itemtype` varchar(100) DEFAULT NULL,
  `items_id` int(10) unsigned NOT NULL DEFAULT 0,
  `remoteid` varchar(255) DEFAULT NULL,
  `type` varchar(255) DEFAULT NULL,
  `is_dynamic` tinyint(4) NOT NULL DEFAULT 0,
  `is_deleted` tinyint(4) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `is_dynamic` (`is_dynamic`),
  KEY `is_deleted` (`is_deleted`),
  KEY `item` (`itemtype`,`items_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_items_remotemanagements`
--

LOCK TABLES `glpi_items_remotemanagements` WRITE;
/*!40000 ALTER TABLE `glpi_items_remotemanagements` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_items_remotemanagements` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_items_softwarelicenses`
--

DROP TABLE IF EXISTS `glpi_items_softwarelicenses`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_items_softwarelicenses` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `items_id` int(10) unsigned NOT NULL DEFAULT 0,
  `itemtype` varchar(100) NOT NULL,
  `softwarelicenses_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_deleted` tinyint(4) NOT NULL DEFAULT 0,
  `is_dynamic` tinyint(4) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `item` (`itemtype`,`items_id`),
  KEY `softwarelicenses_id` (`softwarelicenses_id`),
  KEY `is_deleted` (`is_deleted`),
  KEY `is_dynamic` (`is_dynamic`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_items_softwarelicenses`
--

LOCK TABLES `glpi_items_softwarelicenses` WRITE;
/*!40000 ALTER TABLE `glpi_items_softwarelicenses` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_items_softwarelicenses` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_items_softwareversions`
--

DROP TABLE IF EXISTS `glpi_items_softwareversions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_items_softwareversions` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `items_id` int(10) unsigned NOT NULL DEFAULT 0,
  `itemtype` varchar(100) NOT NULL,
  `softwareversions_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_deleted_item` tinyint(4) NOT NULL DEFAULT 0,
  `is_template_item` tinyint(4) NOT NULL DEFAULT 0,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_deleted` tinyint(4) NOT NULL DEFAULT 0,
  `is_dynamic` tinyint(4) NOT NULL DEFAULT 0,
  `date_install` date DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`itemtype`,`items_id`,`softwareversions_id`),
  KEY `softwareversions_id` (`softwareversions_id`),
  KEY `computers_info` (`entities_id`,`is_template_item`,`is_deleted_item`),
  KEY `is_deleted` (`is_deleted`),
  KEY `is_dynamic` (`is_dynamic`),
  KEY `is_deleted_item` (`is_deleted_item`),
  KEY `is_template_item` (`is_template_item`),
  KEY `date_install` (`date_install`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_items_softwareversions`
--

LOCK TABLES `glpi_items_softwareversions` WRITE;
/*!40000 ALTER TABLE `glpi_items_softwareversions` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_items_softwareversions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_items_tickets`
--

DROP TABLE IF EXISTS `glpi_items_tickets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_items_tickets` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `itemtype` varchar(255) DEFAULT NULL,
  `items_id` int(10) unsigned NOT NULL DEFAULT 0,
  `tickets_id` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`itemtype`,`items_id`,`tickets_id`),
  KEY `tickets_id` (`tickets_id`)
) ENGINE=InnoDB AUTO_INCREMENT=57 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_items_tickets`
--

LOCK TABLES `glpi_items_tickets` WRITE;
/*!40000 ALTER TABLE `glpi_items_tickets` DISABLE KEYS */;
INSERT INTO `glpi_items_tickets` VALUES
(7,'PluginFormcreatorFormAnswer',7,43),
(8,'PluginFormcreatorFormAnswer',8,44),
(9,'PluginFormcreatorFormAnswer',9,45),
(10,'PluginFormcreatorFormAnswer',10,46),
(11,'PluginFormcreatorFormAnswer',11,47),
(12,'PluginFormcreatorFormAnswer',12,48),
(14,'PluginFormcreatorFormAnswer',14,50),
(15,'PluginFormcreatorFormAnswer',15,51),
(16,'PluginFormcreatorFormAnswer',16,52),
(17,'PluginFormcreatorFormAnswer',17,53),
(18,'PluginFormcreatorFormAnswer',18,54),
(19,'PluginFormcreatorFormAnswer',19,55),
(20,'PluginFormcreatorFormAnswer',20,56),
(21,'PluginFormcreatorFormAnswer',21,57),
(22,'PluginFormcreatorFormAnswer',22,58),
(23,'PluginFormcreatorFormAnswer',23,59),
(24,'PluginFormcreatorFormAnswer',24,60),
(25,'PluginFormcreatorFormAnswer',25,61),
(26,'PluginFormcreatorFormAnswer',26,62),
(27,'PluginFormcreatorFormAnswer',27,63),
(28,'PluginFormcreatorFormAnswer',28,64),
(29,'PluginFormcreatorFormAnswer',29,65),
(30,'PluginFormcreatorFormAnswer',30,66),
(31,'PluginFormcreatorFormAnswer',31,67),
(32,'PluginFormcreatorFormAnswer',32,68),
(34,'PluginFormcreatorFormAnswer',34,70),
(35,'PluginFormcreatorFormAnswer',35,71),
(36,'PluginFormcreatorFormAnswer',36,72),
(37,'PluginFormcreatorFormAnswer',37,73),
(38,'PluginFormcreatorFormAnswer',38,74),
(39,'PluginFormcreatorFormAnswer',39,75),
(40,'PluginFormcreatorFormAnswer',40,76),
(41,'PluginFormcreatorFormAnswer',41,77),
(42,'PluginFormcreatorFormAnswer',42,78),
(43,'PluginFormcreatorFormAnswer',43,79),
(44,'PluginFormcreatorFormAnswer',44,80),
(45,'PluginFormcreatorFormAnswer',45,81),
(46,'PluginFormcreatorFormAnswer',46,82),
(47,'PluginFormcreatorFormAnswer',47,83),
(48,'PluginFormcreatorFormAnswer',48,84),
(49,'PluginFormcreatorFormAnswer',49,85),
(50,'PluginFormcreatorFormAnswer',50,86),
(51,'PluginFormcreatorFormAnswer',51,87),
(52,'PluginFormcreatorFormAnswer',52,88),
(53,'PluginFormcreatorFormAnswer',53,89),
(54,'PluginFormcreatorFormAnswer',54,90),
(55,'PluginFormcreatorFormAnswer',55,91),
(56,'PluginFormcreatorFormAnswer',56,92);
/*!40000 ALTER TABLE `glpi_items_tickets` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_itilcategories`
--

DROP TABLE IF EXISTS `glpi_itilcategories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_itilcategories` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `itilcategories_id` int(10) unsigned NOT NULL DEFAULT 0,
  `name` varchar(255) DEFAULT NULL,
  `completename` text DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `level` int(11) NOT NULL DEFAULT 0,
  `knowbaseitemcategories_id` int(10) unsigned NOT NULL DEFAULT 0,
  `users_id` int(10) unsigned NOT NULL DEFAULT 0,
  `groups_id` int(10) unsigned NOT NULL DEFAULT 0,
  `code` varchar(255) DEFAULT NULL,
  `ancestors_cache` longtext DEFAULT NULL,
  `sons_cache` longtext DEFAULT NULL,
  `is_helpdeskvisible` tinyint(4) NOT NULL DEFAULT 1,
  `tickettemplates_id_incident` int(10) unsigned NOT NULL DEFAULT 0,
  `tickettemplates_id_demand` int(10) unsigned NOT NULL DEFAULT 0,
  `changetemplates_id` int(10) unsigned NOT NULL DEFAULT 0,
  `problemtemplates_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_incident` int(11) NOT NULL DEFAULT 1,
  `is_request` int(11) NOT NULL DEFAULT 1,
  `is_problem` int(11) NOT NULL DEFAULT 1,
  `is_change` tinyint(4) NOT NULL DEFAULT 1,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `knowbaseitemcategories_id` (`knowbaseitemcategories_id`),
  KEY `users_id` (`users_id`),
  KEY `groups_id` (`groups_id`),
  KEY `is_helpdeskvisible` (`is_helpdeskvisible`),
  KEY `itilcategories_id` (`itilcategories_id`),
  KEY `tickettemplates_id_incident` (`tickettemplates_id_incident`),
  KEY `tickettemplates_id_demand` (`tickettemplates_id_demand`),
  KEY `changetemplates_id` (`changetemplates_id`),
  KEY `problemtemplates_id` (`problemtemplates_id`),
  KEY `is_incident` (`is_incident`),
  KEY `is_request` (`is_request`),
  KEY `is_problem` (`is_problem`),
  KEY `is_change` (`is_change`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`),
  KEY `level` (`level`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_itilcategories`
--

LOCK TABLES `glpi_itilcategories` WRITE;
/*!40000 ALTER TABLE `glpi_itilcategories` DISABLE KEYS */;
INSERT INTO `glpi_itilcategories` VALUES
(1,0,1,0,'Equipamentos/Periféricos','Equipamentos/Periféricos','',1,0,0,0,'','[]','{\"1\":1}',1,0,0,0,0,1,1,1,1,'2024-12-27 20:36:44','2024-12-27 20:36:12'),
(2,0,1,0,'Rede/Internet','Rede/Internet','',1,0,0,0,'','[]','{\"2\":2}',1,0,0,0,0,1,1,1,1,'2024-12-27 20:40:08','2024-12-27 20:38:40'),
(3,0,1,0,'E-mail','E-mail','',1,0,0,0,'','[]','{\"3\":3}',1,0,0,0,0,1,1,1,1,'2024-12-27 20:39:59','2024-12-27 20:39:47'),
(4,0,1,0,'Sistemas VIVO/FIBRASIL','Sistemas VIVO/FIBRASIL','',1,0,0,0,'','[]','{\"4\":4}',1,0,0,0,0,1,1,1,1,'2025-01-08 20:06:44','2025-01-08 13:47:21'),
(5,0,1,0,'Sistema Operacional/Programas','Sistema Operacional/Programas','',1,0,0,0,'','[]','{\"5\":5}',1,0,0,0,0,1,1,1,1,'2025-01-08 20:05:13','2025-01-08 20:05:13');
/*!40000 ALTER TABLE `glpi_itilcategories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_itilfollowups`
--

DROP TABLE IF EXISTS `glpi_itilfollowups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_itilfollowups` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `itemtype` varchar(100) NOT NULL,
  `items_id` int(10) unsigned NOT NULL DEFAULT 0,
  `date` timestamp NULL DEFAULT NULL,
  `users_id` int(10) unsigned NOT NULL DEFAULT 0,
  `users_id_editor` int(10) unsigned NOT NULL DEFAULT 0,
  `content` longtext DEFAULT NULL,
  `is_private` tinyint(4) NOT NULL DEFAULT 0,
  `requesttypes_id` int(10) unsigned NOT NULL DEFAULT 0,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  `timeline_position` tinyint(4) NOT NULL DEFAULT 0,
  `sourceitems_id` int(10) unsigned NOT NULL DEFAULT 0,
  `sourceof_items_id` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `item` (`itemtype`,`items_id`),
  KEY `date` (`date`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`),
  KEY `users_id` (`users_id`),
  KEY `users_id_editor` (`users_id_editor`),
  KEY `is_private` (`is_private`),
  KEY `requesttypes_id` (`requesttypes_id`),
  KEY `sourceitems_id` (`sourceitems_id`),
  KEY `sourceof_items_id` (`sourceof_items_id`)
) ENGINE=InnoDB AUTO_INCREMENT=161 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_itilfollowups`
--

LOCK TABLES `glpi_itilfollowups` WRITE;
/*!40000 ALTER TABLE `glpi_itilfollowups` DISABLE KEYS */;
INSERT INTO `glpi_itilfollowups` VALUES
(9,'Ticket',17,'2025-01-07 13:48:56',8,0,'&#60;p&#62;Poderia ser mais específico, por gentileza?&#60;/p&#62;',0,1,'2025-01-07 13:48:56','2025-01-07 13:48:56',1,0,0),
(10,'Ticket',18,'2025-01-07 13:57:45',8,0,'&#60;p&#62;Bom dia!&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;\r\n&#60;p&#62;Já está ok. &#60;/p&#62;',0,1,'2025-01-07 13:57:45','2025-01-07 13:57:45',1,0,0),
(11,'Ticket',19,'2025-01-08 12:22:46',8,0,'&#60;p&#62;Bom dia, &#60;/p&#62;\r\n&#60;p&#62;Segue informações para configurações:&#60;/p&#62;\r\n&#60;p&#62;&#60;a href=\"/front/document.send.php?docid=3&#38;itemtype=Ticket&#38;items_id=19\" target=\"_blank\" &#62;&#60;img alt=\"a90d2f74-b2d8e96f-677e6e1328a539.57982140\" width=\"661\" src=\"/front/document.send.php?docid=3&#38;itemtype=Ticket&#38;items_id=19\" /&#62;&#60;/a&#62;&#60;/p&#62;',0,1,'2025-01-08 12:22:46','2025-01-08 12:22:46',1,0,0),
(12,'Ticket',20,'2025-01-08 13:26:58',8,0,'&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;\r\n&#60;p&#62;Irei entrar em contato &#60;/p&#62;',0,1,'2025-01-08 13:26:58','2025-01-08 13:26:58',1,0,0),
(13,'Ticket',20,'2025-01-08 13:36:33',8,0,'&#60;p&#62;Instalação do Citrix no equipamento. &#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;\r\n&#60;p&#62;OBS: Entrar em contato com a VIVO para resolver problema referente a usuário e senha&#60;/p&#62;',0,1,'2025-01-08 13:36:33','2025-01-08 13:36:33',1,0,0),
(14,'Ticket',21,'2025-01-08 20:04:08',8,0,'&#60;p&#62;Boa tarde, Aurelio. &#60;/p&#62;\r\n&#60;p&#62;Vamos ao atendimento &#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;',0,1,'2025-01-08 20:04:08','2025-01-08 20:04:08',1,0,0),
(15,'Ticket',21,'2025-01-08 20:42:42',8,0,'&#60;p&#62;Instalação concluída. &#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;\r\n&#60;p&#62;&#60;a href=\"/front/document.send.php?docid=5&#38;itemtype=Ticket&#38;items_id=21\" target=\"_blank\" &#62;&#60;img alt=\"a90d2f74-b2d8e96f-677ee33eea06f3.33393595\" width=\"691\" src=\"/front/document.send.php?docid=5&#38;itemtype=Ticket&#38;items_id=21\" /&#62;&#60;/a&#62;&#60;/p&#62;',0,1,'2025-01-08 20:42:42','2025-01-08 20:42:42',1,0,0),
(16,'Ticket',22,'2025-01-10 00:00:28',8,0,'&#60;p&#62;Boa noite,&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;\r\n&#60;p&#62;Me passe o anydesk, por gentiliza&#60;/p&#62;',0,1,'2025-01-10 00:00:28','2025-01-10 00:00:28',1,0,0),
(17,'Ticket',22,'2025-01-10 00:55:32',8,0,'&#60;p&#62;Instalação concluída com sucesso.&#60;/p&#62;\r\n&#60;p&#62;Tivemos que fazer a remoção de pacotes office(Versões diversas) e instalar o executável offline para concluir.&#60;/p&#62;',0,1,'2025-01-10 00:55:32','2025-01-10 00:55:32',1,0,0),
(18,'Ticket',23,'2025-01-10 01:00:23',8,0,'&#60;p&#62;Boa noite!&#60;/p&#62;\r\n&#60;p&#62;Vinicius, realmente sua caixa estava cheia e tive que liberar um pouco mais de espaço. Você está usando o e-mail em outro equipamento além do seu notebook. Se sim, me diz qual e se ele está configurado em POP3 ou IMAP&#60;/p&#62;',0,1,'2025-01-10 01:00:23','2025-01-10 01:00:23',1,0,0),
(19,'Ticket',23,'2025-01-10 11:35:30',9,0,'&#60;p&#62;Utilizo apenas no computador.&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;',0,0,'2025-01-10 11:35:30','2025-01-10 11:35:30',1,0,0),
(20,'Ticket',23,'2025-01-10 20:54:27',8,0,'&#60;p&#62;Blz... Seria bom depois eu acessar para revisar as configurações do outlook. Quando puder fale comigo. &#60;/p&#62;',0,1,'2025-01-10 20:54:27','2025-01-10 20:54:27',1,0,0),
(21,'Ticket',24,'2025-01-13 11:37:26',8,0,'&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;\r\n&#60;p&#62;É necessário a identificação e o contato para que eu posso da continuidade.&#60;/p&#62;',0,1,'2025-01-13 11:37:26','2025-01-13 11:37:26',1,0,0),
(22,'Ticket',25,'2025-01-13 11:38:17',8,0,'&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;\r\n&#60;p&#62;É necessário a identificação e o contato para que eu posso da continuidade.&#60;/p&#62;',0,1,'2025-01-13 11:38:17','2025-01-13 11:38:17',1,0,0),
(23,'Ticket',27,'2025-01-13 11:39:16',8,0,'&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;\r\n&#60;p&#62;É necessário a identificação e o contato para que eu posso da continuidade.&#60;/p&#62;',0,1,'2025-01-13 11:39:16','2025-01-13 11:39:16',1,0,0),
(24,'Ticket',26,'2025-01-13 11:39:55',8,0,'&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;É necessário a identificação e o contato para que eu posso da continuidade.&#60;/p&#62;',0,1,'2025-01-13 11:39:55','2025-01-13 11:39:55',1,0,0),
(25,'Ticket',28,'2025-01-13 12:37:33',8,0,'&#60;p&#62;Olá, bom dia!!&#60;/p&#62;\r\n&#60;p&#62;O que está acontencendo com sua barra de pesquisa?&#60;/p&#62;',0,1,'2025-01-13 12:37:33','2025-01-13 12:37:33',1,0,0),
(26,'Ticket',28,'2025-01-13 12:39:20',9,0,'&#60;p&#62;Não está pesquisando o que estou procurando!&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;\r\n&#60;p&#62;t&#60;/p&#62;',0,0,'2025-01-13 12:39:20','2025-01-13 12:39:20',1,0,0),
(27,'Ticket',28,'2025-01-13 12:40:07',8,0,'&#60;p&#62;OK, favor fornecer o ID do anydesk. &#60;/p&#62;',0,1,'2025-01-13 12:40:07','2025-01-13 12:40:07',1,0,0),
(28,'Ticket',28,'2025-01-13 12:41:55',9,0,'&#60;p&#62;445771017&#60;/p&#62;',0,0,'2025-01-13 12:41:55','2025-01-13 12:41:55',1,0,0),
(29,'Ticket',29,'2025-01-13 12:56:24',8,0,'&#60;p&#62;Bom dia, Kivia&#60;/p&#62;\r\n&#60;p&#62;Me passa o anydesk e entrarei em contato via whatsapp para coletar mais detalhes. &#60;/p&#62;',0,1,'2025-01-13 12:56:24','2025-01-13 12:56:24',1,0,0),
(30,'Ticket',29,'2025-01-13 13:29:54',8,0,'&#60;p&#62;Atendiemnto concluído. Realizado liberação do assinador digital.&#60;/p&#62;',0,1,'2025-01-13 13:29:54','2025-01-13 13:29:54',1,0,0),
(31,'Ticket',28,'2025-01-13 13:42:54',8,0,'&#60;p&#62;Reinicializado processo de pesquisa do windows.&#60;/p&#62;',0,1,'2025-01-13 13:42:54','2025-01-13 13:42:54',1,0,0),
(32,'Ticket',30,'2025-01-14 15:33:04',8,0,'&#60;p&#62;Boa tarde, Larissa.&#60;/p&#62;\r\n&#60;p&#62;Qual a VPN e para qual o usuário?&#60;/p&#62;',0,1,'2025-01-14 15:33:04','2025-01-14 15:33:04',1,0,0),
(33,'Ticket',24,'2025-01-14 15:38:20',8,0,'&#60;p&#62;Chamado será encerrado por falta de comunicação e informação suficiente para entrar em contato.&#60;/p&#62;',0,1,'2025-01-14 15:38:20','2025-01-14 15:38:20',1,0,0),
(34,'Ticket',27,'2025-01-14 15:38:37',8,0,'&#60;p&#62;Chamado será encerrado por falta de comunicação e informação suficiente para entrar em contato.&#60;/p&#62;',0,1,'2025-01-14 15:38:37','2025-01-14 15:38:37',1,0,0),
(35,'Ticket',25,'2025-01-14 15:38:55',8,0,'&#60;p&#62;Chamado será encerrado por falta de comunicação e informação suficiente para entrar em contato.&#60;/p&#62;',0,1,'2025-01-14 15:38:55','2025-01-14 15:38:55',1,0,0),
(36,'Ticket',26,'2025-01-14 15:39:13',8,0,'&#60;p&#62;Chamado será encerrado por falta de comunicação e informação suficiente para entrar em contato.&#60;/p&#62;',0,1,'2025-01-14 15:39:13','2025-01-14 15:39:13',1,0,0),
(37,'Ticket',30,'2025-01-14 16:40:01',9,0,'&#60;p&#62;estou tentando acessa o sistema e o acesso não funciona já tentei em outro  notebook e funcionou mas no meu não&#60;/p&#62;',0,0,'2025-01-14 16:40:01','2025-01-14 16:40:01',1,0,0),
(38,'Ticket',30,'2025-01-14 18:42:21',10,0,'&#60;p&#62;Boa tarde Larissa, manda  o anydesk por favor.&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;',0,1,'2025-01-14 18:42:21','2025-01-14 18:42:21',1,0,0),
(39,'Ticket',30,'2025-01-14 19:35:18',8,0,'&#60;p&#62;Conclusão de atendimento.&#60;/p&#62;\r\n&#60;p&#62;Usuário ou senha incorreto.&#60;/p&#62;\r\n&#60;p&#62;Foi testado com usuáio e senha de outro colaborador e deu certo.&#60;/p&#62;',0,1,'2025-01-14 19:35:18','2025-01-14 19:35:18',1,0,0),
(40,'Ticket',31,'2025-01-14 19:58:44',10,10,'&#60;p&#62;Boa tarde, a solicitação de VPN tem que ser solicitada também por email para o supervisor responsável. Lembrar de colocar em cópia o email do suporte(suporte@tecnomulti.com) para conseguirmos acompanhar a autorização.&#60;/p&#62;',0,1,'2025-01-14 19:58:58','2025-01-14 19:58:44',1,0,0),
(41,'Ticket',32,'2025-01-14 20:07:08',10,0,'&#60;p&#62;Boa tarde, seria instalação?&#60;/p&#62;',0,1,'2025-01-14 20:07:08','2025-01-14 20:07:08',1,0,0),
(42,'Ticket',43,'2025-01-16 12:47:46',8,0,'&#60;p&#62;Olá, bom dia.&#60;/p&#62;\r\n&#60;p&#62;Posso acessar para verificar. Por favor me passe o ID do anydesk.&#60;/p&#62;',0,1,'2025-01-16 12:47:46','2025-01-16 12:47:46',1,0,0),
(43,'Ticket',43,'2025-01-16 13:14:20',8,0,'&#60;p&#62;Foi encontrada uma pasta do sistema operacional gerando logs quase que diariamente ocasionando a falta de espaço em disco. &#60;/p&#62;\r\n&#60;p&#62;&#60;a href=\"/front/document.send.php?docid=9&#38;itemtype=Ticket&#38;items_id=43\" target=\"_blank\" &#62;&#60;img alt=\"796eb77d-b2d8e96f-67890626156559.26126155\" width=\"625\" src=\"/front/document.send.php?docid=9&#38;itemtype=Ticket&#38;items_id=43\" /&#62;&#60;/a&#62;&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;',0,1,'2025-01-16 13:14:20','2025-01-16 13:14:20',1,0,0),
(44,'Ticket',43,'2025-01-16 13:21:48',8,0,'&#60;p&#62;Foram excluídos arquivos de log da pasta winevt e deixaremos em observação se volta acontecer. Se sim, será necessário a reinstalação do sistema operacional.&#60;/p&#62;',0,1,'2025-01-16 13:21:48','2025-01-16 13:21:48',1,0,0),
(45,'Ticket',36,'2025-01-17 12:03:23',8,0,'&#60;p&#62;Chamado em duplicidade&#60;/p&#62;',0,1,'2025-01-17 12:03:23','2025-01-17 12:03:23',1,0,0),
(46,'Ticket',44,'2025-01-17 17:57:43',10,0,'&#60;p&#62;Boa tarde Jayana, verificamos aqui e realmente sua caixa já estava com mais de 80% de uso, poderia ver qual o remetente e mandar um print do email por favor.&#60;/p&#62;',0,1,'2025-01-17 17:57:43','2025-01-17 17:57:43',1,0,0),
(47,'Ticket',45,'2025-01-20 11:08:13',10,0,'&#60;p&#62;Bom dia Karla, poderia me informar o acesso remoto(anydesk ou teamviewer) do seu computador por favor.&#60;/p&#62;',0,1,'2025-01-20 11:08:13','2025-01-20 11:08:13',1,0,0),
(48,'Ticket',46,'2025-01-20 11:23:38',8,0,'&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;\r\n&#60;p&#62;Favor, falar comigo pelo whatsapp.&#60;/p&#62;',0,1,'2025-01-20 11:23:38','2025-01-20 11:23:38',1,0,0),
(49,'Ticket',32,'2025-01-20 13:30:58',8,0,'&#60;p&#62;Olá, &#60;/p&#62;\r\n&#60;p&#62;Por falta de comunicação o chamado será encerrado. Se precisar novamente, favor abrir outro chamado. &#60;/p&#62;',0,1,'2025-01-20 13:30:58','2025-01-20 13:30:58',1,0,0),
(50,'Ticket',46,'2025-01-20 14:21:01',8,0,'&#60;p&#62;Realizado a instalação do programa NAPS2 e passodo as instruções de uso do programa. &#60;/p&#62;',0,1,'2025-01-20 14:21:01','2025-01-20 14:21:01',1,0,0),
(51,'Ticket',45,'2025-01-20 14:21:50',8,0,'&#60;p&#62;Atendimento em duplicidade e já solucionado. &#60;/p&#62;',0,1,'2025-01-20 14:21:50','2025-01-20 14:21:50',1,0,0),
(52,'Ticket',47,'2025-01-20 14:23:36',8,0,'&#60;p&#62;Bom dia, &#60;/p&#62;\r\n&#60;p&#62;Vou realziar a configuração. Falarei com vc via whatsapp.&#60;/p&#62;',0,1,'2025-01-20 14:23:36','2025-01-20 14:23:36',1,0,0),
(53,'Ticket',47,'2025-01-20 14:32:58',8,0,'&#60;p&#62;Configuração concluída.&#60;/p&#62;',0,1,'2025-01-20 14:32:58','2025-01-20 14:32:58',1,0,0),
(54,'Ticket',48,'2025-01-20 14:35:46',8,0,'&#60;p&#62;Olá, Bom dia!&#60;/p&#62;\r\n&#60;p&#62;Uma dica de quando receber esses e-mail é comunicarmos e não clicar em nada pois pode ser spamm. Vocês está com problema de envio ou recebimento?&#60;/p&#62;',0,1,'2025-01-20 14:35:46','2025-01-20 14:35:46',1,0,0),
(57,'Ticket',50,'2025-01-21 12:19:45',10,0,'&#60;p&#62;Bom dia Lucia, poderia mandar o acesso remoto(anydesk ou teamviewer) do seu computador por favor.&#60;/p&#62;',0,1,'2025-01-21 12:19:45','2025-01-21 12:19:45',1,0,0),
(58,'Ticket',52,'2025-01-21 14:27:29',8,0,'&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Favor, passa o anydesk para podermos acessar. &#60;/p&#62;',0,1,'2025-01-21 14:27:29','2025-01-21 14:27:29',1,0,0),
(59,'Ticket',52,'2025-01-21 14:31:24',9,0,'&#60;p&#62;Bom dia! &#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;\r\n&#60;p&#62;No momento só uso Excell&#60;/p&#62;',0,0,'2025-01-21 14:31:24','2025-01-21 14:31:24',1,0,0),
(60,'Ticket',52,'2025-01-21 14:33:36',9,0,'&#60;p&#62;471343653&#60;/p&#62;',0,0,'2025-01-21 14:33:36','2025-01-21 14:33:36',1,0,0),
(61,'Ticket',52,'2025-01-21 14:40:49',8,0,'&#60;p&#62;Solucionado. &#60;/p&#62;',0,1,'2025-01-21 14:40:49','2025-01-21 14:40:49',1,0,0),
(62,'Ticket',51,'2025-01-21 14:46:45',10,0,'&#60;p&#62;Bom dia Arthur, realmente a foto mostra um alto uso de CPU e RAM, poderíamos acessar para verificar?&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;',0,1,'2025-01-21 14:46:45','2025-01-21 14:46:45',1,0,0),
(63,'Ticket',52,'2025-01-21 15:05:39',8,0,'&#60;p&#62;Será feito a desinstalação do pacote office e reinstalado. &#60;/p&#62;',0,1,'2025-01-21 15:05:39','2025-01-21 15:05:39',1,0,0),
(64,'Ticket',50,'2025-01-21 15:06:11',8,0,'&#60;p&#62;Impressora instalada. &#60;/p&#62;',0,1,'2025-01-21 15:06:11','2025-01-21 15:06:11',1,0,0),
(65,'Ticket',52,'2025-01-21 15:27:09',8,0,'&#60;p&#62;Realizado procedimento e testado, Concluído!&#60;/p&#62;',0,1,'2025-01-21 15:27:09','2025-01-21 15:27:09',1,0,0),
(66,'Ticket',54,'2025-01-22 16:52:44',8,0,'&#60;p&#62;Boa tarde.&#60;/p&#62;\r\n&#60;p&#62;Realizado verificação do equipamento e detectado a necessidade de upgrade. Enviado email com solicitações de compra de SSD e MEMORIA. &#60;/p&#62;',0,1,'2025-01-22 16:52:44','2025-01-22 16:52:44',1,0,0),
(67,'Ticket',53,'2025-01-22 16:58:17',8,0,'&#60;p&#62;Boa tarde,&#60;/p&#62;\r\n&#60;p&#62;Favor não clicar em nada quando receber esses e-mails de capacidade de caixa de entrada. Sempre entrar em contato quando receber. &#60;/p&#62;\r\n&#60;p&#62;Favor, entrar em contato via whatsapp para verificar configuração do outlook.&#60;/p&#62;',0,1,'2025-01-22 16:58:17','2025-01-22 16:58:17',1,0,0),
(68,'Ticket',51,'2025-01-22 16:59:24',8,0,'&#60;p style=\"box-sizing: border-box; scrollbar-width: thin; scrollbar-color: rgba(96, 111, 145, 0.8) transparent; margin-top: 0px; margin-bottom: 1rem; color: #535353; font-family: inter, -apple-system, blinkmacsystemfont, \'san francisco\', \'segoe ui\', roboto, \'helvetica neue\', sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: no-contextual; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: #ececec; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;\"&#62;Boa tarde.&#60;/p&#62;\r\n&#60;p style=\"box-sizing: border-box; scrollbar-width: thin; scrollbar-color: rgba(96, 111, 145, 0.8) transparent; margin-top: 0px; margin-bottom: 1rem; color: #535353; font-family: inter, -apple-system, blinkmacsystemfont, \'san francisco\', \'segoe ui\', roboto, \'helvetica neue\', sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: no-contextual; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: #ececec; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;\"&#62;Realizado verificação do equipamento e detectado a necessidade de upgrade. Enviado email com solicitações de compra de SSD e MEMORIA.&#60;/p&#62;',0,1,'2025-01-22 16:59:24','2025-01-22 16:59:24',1,0,0),
(69,'Ticket',55,'2025-01-23 13:06:27',8,0,'&#60;p&#62;Bom dia, Ana.&#60;/p&#62;\r\n&#60;p&#62;Por gentileza poderia me mandar a print do erro!&#60;/p&#62;',0,1,'2025-01-23 13:06:27','2025-01-23 13:06:27',1,0,0),
(70,'Ticket',55,'2025-01-23 13:20:37',9,0,'&#60;p&#62;&#60;a href=\"/front/document.send.php?docid=15&#38;itemtype=Ticket&#38;items_id=55\" target=\"_blank\" &#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-6792421b98dab2.18335093\" width=\"813\" src=\"/front/document.send.php?docid=15&#38;itemtype=Ticket&#38;items_id=55\" /&#62;&#60;/a&#62;&#60;/p&#62;',0,0,'2025-01-23 13:20:37','2025-01-23 13:20:37',1,0,0),
(71,'Ticket',55,'2025-01-23 13:39:21',8,0,'&#60;p&#62;Realizado a limpeza de senha do citrix do navegador para incluir a nova senha. Após processo, foi realizado teste de acesso e OK.&#60;/p&#62;',0,1,'2025-01-23 13:39:21','2025-01-23 13:39:21',1,0,0),
(72,'Ticket',48,'2025-01-24 11:59:34',8,0,'&#60;p&#62;Chamado encerrado por falta de comunicação.&#60;/p&#62;',0,1,'2025-01-24 11:59:34','2025-01-24 11:59:34',1,0,0),
(73,'Ticket',53,'2025-01-24 12:00:17',8,0,'&#60;p&#62;Chamado encerrado por falta de comunicação.&#60;/p&#62;',0,1,'2025-01-24 12:00:17','2025-01-24 12:00:17',1,0,0),
(74,'Ticket',56,'2025-01-28 11:17:26',8,0,'&#60;p&#62;Bom dia!&#60;/p&#62;\r\n&#60;p&#62;Estarei verificando.&#60;/p&#62;',0,1,'2025-01-28 11:17:26','2025-01-28 11:17:26',1,0,0),
(75,'Ticket',56,'2025-01-28 11:19:49',8,0,'&#60;p&#62;Preciso acessar seu equipamento para verificar algumas configurações. Por favor, me passe o ID do anydesk.&#60;/p&#62;',0,1,'2025-01-28 11:19:49','2025-01-28 11:19:49',1,0,0),
(76,'Ticket',57,'2025-01-28 11:41:16',8,0,'&#60;p&#62;Chamado repetido.&#60;/p&#62;',0,1,'2025-01-28 11:41:16','2025-01-28 11:41:16',1,0,0),
(77,'Ticket',56,'2025-01-28 12:51:31',8,0,'&#60;p&#62;Realizado acesso remoto e verificado que o outlook estava configurado como IMAP. Refeito a configuração e testado. Liberado para uso. &#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;',0,1,'2025-01-28 12:51:31','2025-01-28 12:51:31',1,0,0),
(78,'Ticket',60,'2025-01-28 13:58:47',8,0,'&#60;p&#62;Bom dia, &#60;/p&#62;\r\n&#60;p&#62;Solicitação atendida. &#60;/p&#62;',0,1,'2025-01-28 13:58:47','2025-01-28 13:58:47',1,0,0),
(79,'Ticket',59,'2025-01-28 13:59:29',8,0,'&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Poderia mandar a print do erro, por gentileza!&#60;/p&#62;',0,1,'2025-01-28 13:59:29','2025-01-28 13:59:29',1,0,0),
(80,'Ticket',61,'2025-01-28 14:02:01',8,0,'&#60;p&#62;Chamado será finalizado por está duplicado. &#60;/p&#62;',0,1,'2025-01-28 14:02:01','2025-01-28 14:02:01',1,0,0),
(81,'Ticket',62,'2025-01-28 14:05:13',8,0,'&#60;p&#62;Bom dia, &#60;/p&#62;\r\n&#60;p&#62;Pasta configurada e testada.&#60;/p&#62;',0,1,'2025-01-28 14:05:13','2025-01-28 14:05:13',1,0,0),
(82,'Ticket',63,'2025-01-28 14:06:10',8,0,'&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Configuração da pasta concluído e testado.&#60;/p&#62;',0,1,'2025-01-28 14:06:10','2025-01-28 14:06:10',1,0,0),
(83,'Ticket',59,'2025-01-28 14:06:51',9,0,'&#60;p&#62;não esta abrindo&#60;/p&#62;',0,0,'2025-01-28 14:06:51','2025-01-28 14:06:51',1,0,0),
(84,'Ticket',64,'2025-01-28 14:13:32',8,0,'&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Configuração da pasta concluído e testado.&#60;/p&#62;',0,1,'2025-01-28 14:13:32','2025-01-28 14:13:32',1,0,0),
(85,'Ticket',31,'2025-01-28 14:40:22',10,0,'&#60;p&#62;Chamado encerrado por falta de resposta.&#60;/p&#62;',0,1,'2025-01-28 14:40:22','2025-01-28 14:40:22',1,0,0),
(86,'Ticket',58,'2025-01-28 14:42:25',10,0,'&#60;p&#62;Bom dia, poderia passar o acesso remoto por favor(anydesk ou teamviewer).&#60;/p&#62;',0,1,'2025-01-28 14:42:25','2025-01-28 14:42:25',1,0,0),
(87,'Ticket',59,'2025-01-28 14:46:04',9,0,'&#60;p&#62;já desinstalei e instalei e não abre de jeito nenhum &#60;/p&#62;',0,0,'2025-01-28 14:46:04','2025-01-28 14:46:04',1,0,0),
(88,'Ticket',65,'2025-01-28 14:49:25',10,0,'&#60;p&#62;Mapeamento de rede realizado.&#60;/p&#62;',0,1,'2025-01-28 14:49:25','2025-01-28 14:49:25',1,0,0),
(89,'Ticket',66,'2025-01-28 14:52:26',10,0,'&#60;p&#62;Bom dia, manda o acesso remoto(anydesk ou teamviewer) do seu computador por favor.&#60;/p&#62;',0,1,'2025-01-28 14:52:26','2025-01-28 14:52:26',1,0,0),
(90,'Ticket',59,'2025-01-28 14:53:00',9,0,'&#60;p&#62;?&#60;/p&#62;',0,0,'2025-01-28 14:53:00','2025-01-28 14:53:00',1,0,0),
(91,'Ticket',67,'2025-01-28 15:22:05',10,0,'&#60;p&#62;Boa tarde, manda o acesso remoto(anydesk ou  teamviewer) do seu computador.&#60;/p&#62;',0,1,'2025-01-28 15:22:05','2025-01-28 15:22:05',1,0,0),
(92,'Ticket',66,'2025-01-28 16:46:27',9,0,'&#60;p&#62;496 959 993 &#60;/p&#62;',0,0,'2025-01-28 16:46:27','2025-01-28 16:46:27',1,0,0),
(93,'Ticket',59,'2025-01-28 17:02:03',9,0,'&#60;p&#62;sem retorno&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;',0,0,'2025-01-28 17:02:03','2025-01-28 17:02:03',1,0,0),
(94,'Ticket',59,'2025-01-28 18:15:44',10,0,'&#60;p&#62;Boa tarde, manda o acesso remoto.&#60;/p&#62;',0,1,'2025-01-28 18:15:44','2025-01-28 18:15:44',1,0,0),
(95,'Ticket',59,'2025-01-28 18:17:02',9,0,'&#60;p&#62;ok&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;',0,0,'2025-01-28 18:17:02','2025-01-28 18:17:02',1,0,0),
(96,'Ticket',59,'2025-01-28 18:18:38',9,0,'&#60;p&#62; &#60;/p&#62;\r\n&#60;p&#62; 471 343 653. &#60;/p&#62;\r\n&#60;p&#62;Gentileza realizar teste de ante virus &#60;/p&#62;',0,0,'2025-01-28 18:18:38','2025-01-28 18:18:38',1,0,0),
(97,'Ticket',59,'2025-01-28 18:53:51',10,0,'&#60;p&#62;deixei executando uma varredura, seria por algum motivo em especial?&#60;/p&#62;',0,1,'2025-01-28 18:53:51','2025-01-28 18:53:51',1,0,0),
(98,'Ticket',59,'2025-01-28 18:56:08',10,0,'&#60;p&#62;Abriu agora, certo?&#60;/p&#62;',0,1,'2025-01-28 18:56:08','2025-01-28 18:56:08',1,0,0),
(99,'Ticket',68,'2025-01-28 20:17:22',8,0,'&#60;p&#62;Atendimento solucionado.&#60;/p&#62;\r\n&#60;p&#62;Colaborador com o outlook configurado em IMAP. Foi realizado a reconfiguração em POP3&#60;/p&#62;',0,1,'2025-01-28 20:17:22','2025-01-28 20:17:22',1,0,0),
(100,'Ticket',67,'2025-01-28 20:18:35',8,0,'&#60;p&#62;Instalação realizada.&#60;/p&#62;',0,1,'2025-01-28 20:18:35','2025-01-28 20:18:35',1,0,0),
(101,'Ticket',66,'2025-01-28 20:20:25',8,0,'&#60;p&#62;Usuário sem permissão a ferramenta SAP. Foi informado da necessidade de entrar em contato com o suporte da VIVO para liberar a permissão junto ao usuário. &#60;/p&#62;',0,1,'2025-01-28 20:20:25','2025-01-28 20:20:25',1,0,0),
(118,'Ticket',70,'2025-01-29 11:53:33',8,0,'&#60;p&#62;Bom dia, &#60;/p&#62;\r\n&#60;p&#62;Favor, me passe o ID do anydesk.&#60;/p&#62;',0,1,'2025-01-29 11:53:33','2025-01-29 11:53:33',1,0,0),
(119,'Ticket',70,'2025-01-29 11:55:13',9,0,'&#60;p&#62;1 282 574 283&#60;/p&#62;',0,0,'2025-01-29 11:55:13','2025-01-29 11:55:13',1,0,0),
(120,'Ticket',70,'2025-01-29 12:01:09',8,0,'&#60;p&#62;Configuração realizada e testado. &#60;/p&#62;',0,1,'2025-01-29 12:01:09','2025-01-29 12:01:09',1,0,0),
(121,'Ticket',71,'2025-01-29 12:06:20',8,0,'&#60;p&#62;Realizado o acesso e configurado a VPN&#60;/p&#62;',0,1,'2025-01-29 12:06:20','2025-01-29 12:06:20',1,0,0),
(122,'Ticket',72,'2025-01-30 11:45:58',8,0,'&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Irei realizar o acesso. &#60;/p&#62;',0,1,'2025-01-30 11:45:58','2025-01-30 11:45:58',1,0,0),
(123,'Ticket',72,'2025-01-30 11:51:01',8,0,'&#60;p&#62;Realizado a configuração do SAP e testado junto ao usuário. &#60;/p&#62;',0,1,'2025-01-30 11:51:01','2025-01-30 11:51:01',1,0,0),
(124,'Ticket',73,'2025-01-30 15:36:30',8,0,'&#60;p&#62;Boa tarde, &#60;/p&#62;\r\n&#60;p&#62;Preciso do anydesk para acessar e analisar. &#60;/p&#62;',0,1,'2025-01-30 15:36:30','2025-01-30 15:36:30',1,0,0),
(125,'Ticket',58,'2025-01-30 16:49:36',9,0,'&#60;p&#62;Boa tarde!&#60;/p&#62;\r\n&#60;p&#62;434 166 120&#60;/p&#62;',0,0,'2025-01-30 16:49:36','2025-01-30 16:49:36',1,0,0),
(126,'Ticket',74,'2025-01-30 18:05:36',9,0,'&#60;p&#62;????&#60;/p&#62;',0,0,'2025-01-30 18:05:36','2025-01-30 18:05:36',1,0,0),
(127,'Ticket',74,'2025-01-30 18:50:29',8,0,'&#60;p&#62;Boa tarde, &#60;/p&#62;\r\n&#60;p&#62;Por gentileza me passe o ID do anydesk.&#60;/p&#62;',0,1,'2025-01-30 18:50:29','2025-01-30 18:50:29',1,0,0),
(128,'Ticket',73,'2025-01-30 18:52:09',8,0,'&#60;p&#62;Conforme contato mantido via Whatsapp, problema foi solucionado.&#60;/p&#62;',0,1,'2025-01-30 18:52:09','2025-01-30 18:52:09',1,0,0),
(129,'Ticket',74,'2025-01-30 18:58:24',8,0,'&#60;p&#62;????&#60;/p&#62;',0,1,'2025-01-30 18:58:24','2025-01-30 18:58:24',1,0,0),
(130,'Ticket',75,'2025-01-30 19:14:05',8,0,'&#60;p&#62;Boa tarde, &#60;/p&#62;\r\n&#60;p&#62;Será programada uma data para a reinstalação do nobreak. Entraremos em contato para saber a data.&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;',0,1,'2025-01-30 19:14:05','2025-01-30 19:14:05',1,0,0),
(131,'Ticket',74,'2025-01-30 19:23:54',8,0,'&#60;p&#62;Chamado finalizado. Ao entrar em contato, usuário relatou que voltou ao normal o e-mail.&#60;/p&#62;',0,1,'2025-01-30 19:23:54','2025-01-30 19:23:54',1,0,0),
(132,'Ticket',76,'2025-02-03 13:49:47',8,0,'&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Me passa teu anydesk. &#60;/p&#62;',0,1,'2025-02-03 13:49:47','2025-02-03 13:49:47',1,0,0),
(133,'Ticket',76,'2025-02-03 13:51:42',9,0,'&#60;p&#62;1800374098&#60;/p&#62;',0,0,'2025-02-03 13:51:42','2025-02-03 13:51:42',1,0,0),
(134,'Ticket',78,'2025-02-03 19:50:51',8,0,'&#60;p&#62;Boa tarde, Mário.&#60;/p&#62;\r\n&#60;p&#62;Por gentileza, me passe o ID do anydesk.&#60;/p&#62;',0,1,'2025-02-03 19:50:51','2025-02-03 19:50:51',1,0,0),
(135,'Ticket',78,'2025-02-03 20:47:27',8,0,'&#60;p&#62;Após realizar acesso e testes, ficou constatado que o IP do usuário está em lista de bloqueio. Foi sugerido um procedimento para tentar obter novo IP ou falar com a operadora relatando o bloqueio .&#60;/p&#62;',0,1,'2025-02-03 20:47:27','2025-02-03 20:47:27',1,0,0),
(136,'Ticket',79,'2025-02-03 21:01:14',8,0,'&#60;p&#62;Problema solucionado em chamado anterior. &#60;/p&#62;',0,1,'2025-02-03 21:01:14','2025-02-03 21:01:14',1,0,0),
(137,'Ticket',77,'2025-02-04 11:22:32',8,0,'&#60;p&#62;Acesso normalizado sem auxilio do suporte tecnomulti. &#60;/p&#62;',0,1,'2025-02-04 11:22:32','2025-02-04 11:22:32',1,0,0),
(138,'Ticket',80,'2025-02-04 18:41:05',8,0,'&#60;p&#62;Boa tarde, &#60;/p&#62;\r\n&#60;p&#62;Irei realizar o acesso para a configuração.&#60;/p&#62;',0,1,'2025-02-04 18:41:05','2025-02-04 18:41:05',1,0,0),
(139,'Ticket',80,'2025-02-04 19:15:51',8,0,'&#60;p&#62;Foi realizado a configuração da VPN WIRE GUARD, a vpn tradicional do windows não conectou. Ficou combinado de ser testado em outra rede sem ser a da casa de Fabiano.&#60;/p&#62;',0,1,'2025-02-04 19:15:51','2025-02-04 19:15:51',1,0,0),
(140,'Ticket',81,'2025-02-04 19:16:38',8,0,'&#60;p&#62;Boa tarde, Dani.&#60;/p&#62;\r\n&#60;p&#62;Essa configuração seria a de Fabiano?&#60;/p&#62;',0,1,'2025-02-04 19:16:38','2025-02-04 19:16:38',1,0,0),
(141,'Ticket',81,'2025-02-06 14:39:43',8,0,'&#60;p&#62;Atendimento realizado. &#60;/p&#62;',0,1,'2025-02-06 14:39:43','2025-02-06 14:39:43',1,0,0),
(142,'Ticket',83,'2025-02-10 11:19:29',8,0,'&#60;p&#62;Bom dia, &#60;/p&#62;\r\n&#60;p&#62;Me passe o anydesk, por gentileza. &#60;/p&#62;',0,1,'2025-02-10 11:19:29','2025-02-10 11:19:29',1,0,0),
(143,'Ticket',83,'2025-02-10 11:41:39',9,0,'&#60;p&#62;155531041&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;',0,0,'2025-02-10 11:41:39','2025-02-10 11:41:39',1,0,0),
(144,'Ticket',83,'2025-02-10 11:46:47',8,0,'&#60;p&#62;Problema solucionado. &#60;/p&#62;',0,1,'2025-02-10 11:46:47','2025-02-10 11:46:47',1,0,0),
(145,'Ticket',82,'2025-02-10 11:47:57',8,0,'&#60;p&#62;Bom dia, &#60;/p&#62;\r\n&#60;p&#62;Me passar o anydesk para acessar e configurar.  Entrar em contato via whatsapp para facilitar o atendimento. &#60;/p&#62;',0,1,'2025-02-10 11:47:57','2025-02-10 11:47:57',1,0,0),
(146,'Ticket',82,'2025-02-11 12:21:28',8,0,'&#60;p&#62;Configuração concluída e testada.&#60;/p&#62;',0,1,'2025-02-11 12:21:28','2025-02-11 12:21:28',1,0,0),
(147,'Ticket',85,'2025-02-11 13:07:04',8,0,'&#60;p&#62;Bom dia, &#60;/p&#62;\r\n&#60;p&#62;Me informe o ID do anydesk para acesso.&#60;/p&#62;',0,1,'2025-02-11 13:07:04','2025-02-11 13:07:04',1,0,0),
(148,'Ticket',84,'2025-02-11 13:08:39',8,0,'&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Após acesso para verificação ficou evidenciado que a senha do usuário de autenticação está errada. Favor, solicitar alteração junto ao suporte da VIVO. &#60;/p&#62;',0,1,'2025-02-11 13:08:39','2025-02-11 13:08:39',1,0,0),
(149,'Ticket',85,'2025-02-11 13:14:01',8,0,'&#60;p&#62;Acesso liberado conforme solicitado. &#60;/p&#62;',0,1,'2025-02-11 13:14:01','2025-02-11 13:14:01',1,0,0),
(150,'Ticket',86,'2025-02-11 22:20:27',8,0,'&#60;p&#62;Boa tarde, &#60;/p&#62;\r\n&#60;p&#62;Favor falar no whatsapp.&#60;/p&#62;',0,1,'2025-02-11 22:20:27','2025-02-11 22:20:27',1,0,0),
(151,'Ticket',87,'2025-02-12 12:07:07',8,0,'&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Me passe o ID do anydesk.&#60;/p&#62;',0,1,'2025-02-12 12:07:07','2025-02-12 12:07:07',1,0,0),
(152,'Ticket',87,'2025-02-12 12:34:04',8,0,'&#60;p&#62;Arquivo .PST do outlook atingiu limite estipulado. Foi criado um novo perfil e configurado o arquivo antigo para consulta.&#60;/p&#62;',0,1,'2025-02-12 12:34:04','2025-02-12 12:34:04',1,0,0),
(153,'Ticket',86,'2025-02-13 13:17:04',8,0,'&#60;p&#62;Realizamos testes de acesso com usuários e senhas fornecido pela colaboradora e não acessou. Usei as credenciais de uma colaboradora ativa e funcionou normalmente. Informamos que terá que entrar em contato com a VIVO para pegar credenciais válidas. &#60;/p&#62;',0,1,'2025-02-13 13:17:04','2025-02-13 13:17:04',1,0,0),
(154,'Ticket',58,'2025-02-13 14:01:04',8,0,'&#60;p&#62;Sobre o acesso ao OSP Control foi normalizado com um link passado por Aurelio. Quando ao arquivo do outlook vai ser necessário um pendrive ou HD externo com espaço de 18Gb até o momento da verificação. &#60;/p&#62;',0,1,'2025-02-13 14:01:04','2025-02-13 14:01:04',4,0,0),
(155,'Ticket',88,'2025-02-17 13:52:33',10,8,'&#60;p&#62;Bom dia, está tentando dessa forma(&#60;span style=\"color: #155210; font-family: inter, -apple-system, blinkmacsystemfont, \'san francisco\', \'segoe ui\', roboto, \'helvetica neue\', sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: no-contextual; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: #e2f2e3; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; display: inline !important; float: none;\"&#62;edson.maykon@tecnomulti.com.pst&#60;/span&#62;)? , Se sim, pode ser esse o problema. Removo o .PST e pronto. Lembrando que o e-mail deve ser configurado em POP3.&#60;/p&#62;',0,1,'2025-02-17 20:04:30','2025-02-17 13:52:33',1,0,0),
(156,'Ticket',91,'2025-02-18 18:14:21',8,0,'&#60;p&#62;Boa tarde,&#60;/p&#62;\r\n&#60;p&#62;Favor me passe o anydesk para eu acessar.&#60;/p&#62;',0,1,'2025-02-18 18:14:21','2025-02-18 18:14:21',1,0,0),
(157,'Ticket',90,'2025-02-18 18:16:04',8,0,'&#60;p&#62;Boa tarde,&#60;/p&#62;\r\n&#60;p&#62;Me passa o anydesk para analisar.&#60;/p&#62;',0,1,'2025-02-18 18:16:04','2025-02-18 18:16:04',1,0,0),
(158,'Ticket',90,'2025-02-18 18:17:50',9,0,'&#60;p&#62;751 863 645&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;',0,0,'2025-02-18 18:17:50','2025-02-18 18:17:50',1,0,0),
(159,'Ticket',91,'2025-02-18 18:22:40',9,0,'&#60;p&#62;751 863 645&#60;/p&#62;',0,0,'2025-02-18 18:22:40','2025-02-18 18:22:40',1,0,0),
(160,'Ticket',89,'2025-02-18 18:30:33',8,0,'&#60;p&#62;Boa tarde, &#60;/p&#62;\r\n&#60;p&#62;Favor entrar em contato via whatsapp para a configuração.&#60;/p&#62;',0,1,'2025-02-18 18:30:33','2025-02-18 18:30:33',1,0,0);
/*!40000 ALTER TABLE `glpi_itilfollowups` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_itilfollowuptemplates`
--

DROP TABLE IF EXISTS `glpi_itilfollowuptemplates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_itilfollowuptemplates` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `date_creation` timestamp NULL DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `name` varchar(255) DEFAULT NULL,
  `content` mediumtext DEFAULT NULL,
  `requesttypes_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_private` tinyint(4) NOT NULL DEFAULT 0,
  `comment` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `is_recursive` (`is_recursive`),
  KEY `requesttypes_id` (`requesttypes_id`),
  KEY `entities_id` (`entities_id`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`),
  KEY `is_private` (`is_private`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_itilfollowuptemplates`
--

LOCK TABLES `glpi_itilfollowuptemplates` WRITE;
/*!40000 ALTER TABLE `glpi_itilfollowuptemplates` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_itilfollowuptemplates` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_itils_projects`
--

DROP TABLE IF EXISTS `glpi_itils_projects`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_itils_projects` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `itemtype` varchar(100) NOT NULL DEFAULT '',
  `items_id` int(10) unsigned NOT NULL DEFAULT 0,
  `projects_id` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`itemtype`,`items_id`,`projects_id`),
  KEY `projects_id` (`projects_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_itils_projects`
--

LOCK TABLES `glpi_itils_projects` WRITE;
/*!40000 ALTER TABLE `glpi_itils_projects` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_itils_projects` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_itilsolutions`
--

DROP TABLE IF EXISTS `glpi_itilsolutions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_itilsolutions` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `itemtype` varchar(100) NOT NULL,
  `items_id` int(10) unsigned NOT NULL DEFAULT 0,
  `solutiontypes_id` int(10) unsigned NOT NULL DEFAULT 0,
  `solutiontype_name` varchar(255) DEFAULT NULL,
  `content` longtext DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_approval` timestamp NULL DEFAULT NULL,
  `users_id` int(10) unsigned NOT NULL DEFAULT 0,
  `user_name` varchar(255) DEFAULT NULL,
  `users_id_editor` int(10) unsigned NOT NULL DEFAULT 0,
  `users_id_approval` int(10) unsigned NOT NULL DEFAULT 0,
  `user_name_approval` varchar(255) DEFAULT NULL,
  `status` int(11) NOT NULL DEFAULT 1,
  `itilfollowups_id` int(10) unsigned DEFAULT NULL COMMENT 'Followup reference on reject or approve a solution',
  PRIMARY KEY (`id`),
  KEY `item` (`itemtype`,`items_id`),
  KEY `solutiontypes_id` (`solutiontypes_id`),
  KEY `users_id` (`users_id`),
  KEY `users_id_editor` (`users_id_editor`),
  KEY `users_id_approval` (`users_id_approval`),
  KEY `status` (`status`),
  KEY `itilfollowups_id` (`itilfollowups_id`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_itilsolutions`
--

LOCK TABLES `glpi_itilsolutions` WRITE;
/*!40000 ALTER TABLE `glpi_itilsolutions` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_itilsolutions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_knowbaseitemcategories`
--

DROP TABLE IF EXISTS `glpi_knowbaseitemcategories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_knowbaseitemcategories` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `knowbaseitemcategories_id` int(10) unsigned NOT NULL DEFAULT 0,
  `name` varchar(255) DEFAULT NULL,
  `completename` text DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `level` int(11) NOT NULL DEFAULT 0,
  `sons_cache` longtext DEFAULT NULL,
  `ancestors_cache` longtext DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`entities_id`,`knowbaseitemcategories_id`,`name`),
  KEY `name` (`name`),
  KEY `is_recursive` (`is_recursive`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`),
  KEY `knowbaseitemcategories_id` (`knowbaseitemcategories_id`),
  KEY `level` (`level`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_knowbaseitemcategories`
--

LOCK TABLES `glpi_knowbaseitemcategories` WRITE;
/*!40000 ALTER TABLE `glpi_knowbaseitemcategories` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_knowbaseitemcategories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_knowbaseitems`
--

DROP TABLE IF EXISTS `glpi_knowbaseitems`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_knowbaseitems` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` text DEFAULT NULL,
  `answer` longtext DEFAULT NULL,
  `is_faq` tinyint(4) NOT NULL DEFAULT 0,
  `users_id` int(10) unsigned NOT NULL DEFAULT 0,
  `view` int(11) NOT NULL DEFAULT 0,
  `date_creation` timestamp NULL DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `begin_date` timestamp NULL DEFAULT NULL,
  `end_date` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `users_id` (`users_id`),
  KEY `is_faq` (`is_faq`),
  KEY `date_creation` (`date_creation`),
  KEY `date_mod` (`date_mod`),
  KEY `begin_date` (`begin_date`),
  KEY `end_date` (`end_date`),
  FULLTEXT KEY `fulltext` (`name`,`answer`),
  FULLTEXT KEY `name` (`name`),
  FULLTEXT KEY `answer` (`answer`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_knowbaseitems`
--

LOCK TABLES `glpi_knowbaseitems` WRITE;
/*!40000 ALTER TABLE `glpi_knowbaseitems` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_knowbaseitems` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_knowbaseitems_comments`
--

DROP TABLE IF EXISTS `glpi_knowbaseitems_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_knowbaseitems_comments` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `knowbaseitems_id` int(10) unsigned NOT NULL,
  `users_id` int(10) unsigned NOT NULL DEFAULT 0,
  `language` varchar(10) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `parent_comment_id` int(10) unsigned DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `knowbaseitems_id` (`knowbaseitems_id`),
  KEY `parent_comment_id` (`parent_comment_id`),
  KEY `users_id` (`users_id`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_knowbaseitems_comments`
--

LOCK TABLES `glpi_knowbaseitems_comments` WRITE;
/*!40000 ALTER TABLE `glpi_knowbaseitems_comments` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_knowbaseitems_comments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_knowbaseitems_items`
--

DROP TABLE IF EXISTS `glpi_knowbaseitems_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_knowbaseitems_items` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `knowbaseitems_id` int(10) unsigned NOT NULL,
  `itemtype` varchar(100) NOT NULL,
  `items_id` int(10) unsigned NOT NULL DEFAULT 0,
  `date_creation` timestamp NULL DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`itemtype`,`items_id`,`knowbaseitems_id`),
  KEY `knowbaseitems_id` (`knowbaseitems_id`),
  KEY `date_creation` (`date_creation`),
  KEY `date_mod` (`date_mod`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_knowbaseitems_items`
--

LOCK TABLES `glpi_knowbaseitems_items` WRITE;
/*!40000 ALTER TABLE `glpi_knowbaseitems_items` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_knowbaseitems_items` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_knowbaseitems_knowbaseitemcategories`
--

DROP TABLE IF EXISTS `glpi_knowbaseitems_knowbaseitemcategories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_knowbaseitems_knowbaseitemcategories` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `knowbaseitems_id` int(10) unsigned NOT NULL DEFAULT 0,
  `knowbaseitemcategories_id` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `knowbaseitems_id` (`knowbaseitems_id`),
  KEY `knowbaseitemcategories_id` (`knowbaseitemcategories_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_knowbaseitems_knowbaseitemcategories`
--

LOCK TABLES `glpi_knowbaseitems_knowbaseitemcategories` WRITE;
/*!40000 ALTER TABLE `glpi_knowbaseitems_knowbaseitemcategories` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_knowbaseitems_knowbaseitemcategories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_knowbaseitems_profiles`
--

DROP TABLE IF EXISTS `glpi_knowbaseitems_profiles`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_knowbaseitems_profiles` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `knowbaseitems_id` int(10) unsigned NOT NULL DEFAULT 0,
  `profiles_id` int(10) unsigned NOT NULL DEFAULT 0,
  `entities_id` int(10) unsigned DEFAULT NULL,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `no_entity_restriction` tinyint(4) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `knowbaseitems_id` (`knowbaseitems_id`),
  KEY `profiles_id` (`profiles_id`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_knowbaseitems_profiles`
--

LOCK TABLES `glpi_knowbaseitems_profiles` WRITE;
/*!40000 ALTER TABLE `glpi_knowbaseitems_profiles` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_knowbaseitems_profiles` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_knowbaseitems_revisions`
--

DROP TABLE IF EXISTS `glpi_knowbaseitems_revisions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_knowbaseitems_revisions` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `knowbaseitems_id` int(10) unsigned NOT NULL,
  `revision` int(11) NOT NULL,
  `name` text DEFAULT NULL,
  `answer` longtext DEFAULT NULL,
  `language` varchar(10) DEFAULT NULL,
  `users_id` int(10) unsigned NOT NULL DEFAULT 0,
  `date` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`knowbaseitems_id`,`revision`,`language`),
  KEY `revision` (`revision`),
  KEY `users_id` (`users_id`),
  KEY `date` (`date`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_knowbaseitems_revisions`
--

LOCK TABLES `glpi_knowbaseitems_revisions` WRITE;
/*!40000 ALTER TABLE `glpi_knowbaseitems_revisions` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_knowbaseitems_revisions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_knowbaseitems_users`
--

DROP TABLE IF EXISTS `glpi_knowbaseitems_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_knowbaseitems_users` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `knowbaseitems_id` int(10) unsigned NOT NULL DEFAULT 0,
  `users_id` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `knowbaseitems_id` (`knowbaseitems_id`),
  KEY `users_id` (`users_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_knowbaseitems_users`
--

LOCK TABLES `glpi_knowbaseitems_users` WRITE;
/*!40000 ALTER TABLE `glpi_knowbaseitems_users` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_knowbaseitems_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_knowbaseitemtranslations`
--

DROP TABLE IF EXISTS `glpi_knowbaseitemtranslations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_knowbaseitemtranslations` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `knowbaseitems_id` int(10) unsigned NOT NULL DEFAULT 0,
  `language` varchar(10) DEFAULT NULL,
  `name` text DEFAULT NULL,
  `answer` longtext DEFAULT NULL,
  `users_id` int(10) unsigned NOT NULL DEFAULT 0,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `item` (`knowbaseitems_id`,`language`),
  KEY `users_id` (`users_id`),
  KEY `date_creation` (`date_creation`),
  KEY `date_mod` (`date_mod`),
  FULLTEXT KEY `fulltext` (`name`,`answer`),
  FULLTEXT KEY `name` (`name`),
  FULLTEXT KEY `answer` (`answer`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_knowbaseitemtranslations`
--

LOCK TABLES `glpi_knowbaseitemtranslations` WRITE;
/*!40000 ALTER TABLE `glpi_knowbaseitemtranslations` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_knowbaseitemtranslations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_lineoperators`
--

DROP TABLE IF EXISTS `glpi_lineoperators`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_lineoperators` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL DEFAULT '',
  `comment` text DEFAULT NULL,
  `mcc` int(11) DEFAULT NULL,
  `mnc` int(11) DEFAULT NULL,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`mcc`,`mnc`),
  KEY `name` (`name`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_lineoperators`
--

LOCK TABLES `glpi_lineoperators` WRITE;
/*!40000 ALTER TABLE `glpi_lineoperators` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_lineoperators` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_lines`
--

DROP TABLE IF EXISTS `glpi_lines`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_lines` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL DEFAULT '',
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `is_deleted` tinyint(4) NOT NULL DEFAULT 0,
  `caller_num` varchar(255) NOT NULL DEFAULT '',
  `caller_name` varchar(255) NOT NULL DEFAULT '',
  `users_id` int(10) unsigned NOT NULL DEFAULT 0,
  `groups_id` int(10) unsigned NOT NULL DEFAULT 0,
  `lineoperators_id` int(10) unsigned NOT NULL DEFAULT 0,
  `locations_id` int(10) unsigned NOT NULL DEFAULT 0,
  `states_id` int(10) unsigned NOT NULL DEFAULT 0,
  `linetypes_id` int(10) unsigned NOT NULL DEFAULT 0,
  `date_creation` timestamp NULL DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `comment` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `is_deleted` (`is_deleted`),
  KEY `users_id` (`users_id`),
  KEY `lineoperators_id` (`lineoperators_id`),
  KEY `groups_id` (`groups_id`),
  KEY `linetypes_id` (`linetypes_id`),
  KEY `locations_id` (`locations_id`),
  KEY `states_id` (`states_id`),
  KEY `date_creation` (`date_creation`),
  KEY `date_mod` (`date_mod`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_lines`
--

LOCK TABLES `glpi_lines` WRITE;
/*!40000 ALTER TABLE `glpi_lines` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_lines` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_linetypes`
--

DROP TABLE IF EXISTS `glpi_linetypes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_linetypes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_linetypes`
--

LOCK TABLES `glpi_linetypes` WRITE;
/*!40000 ALTER TABLE `glpi_linetypes` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_linetypes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_links`
--

DROP TABLE IF EXISTS `glpi_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_links` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 1,
  `name` varchar(255) DEFAULT NULL,
  `link` varchar(255) DEFAULT NULL,
  `data` text DEFAULT NULL,
  `open_window` tinyint(4) NOT NULL DEFAULT 1,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_links`
--

LOCK TABLES `glpi_links` WRITE;
/*!40000 ALTER TABLE `glpi_links` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_links` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_links_itemtypes`
--

DROP TABLE IF EXISTS `glpi_links_itemtypes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_links_itemtypes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `links_id` int(10) unsigned NOT NULL DEFAULT 0,
  `itemtype` varchar(100) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`itemtype`,`links_id`),
  KEY `links_id` (`links_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_links_itemtypes`
--

LOCK TABLES `glpi_links_itemtypes` WRITE;
/*!40000 ALTER TABLE `glpi_links_itemtypes` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_links_itemtypes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_locations`
--

DROP TABLE IF EXISTS `glpi_locations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_locations` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `name` varchar(255) DEFAULT NULL,
  `locations_id` int(10) unsigned NOT NULL DEFAULT 0,
  `completename` text DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `level` int(11) NOT NULL DEFAULT 0,
  `ancestors_cache` longtext DEFAULT NULL,
  `sons_cache` longtext DEFAULT NULL,
  `address` text DEFAULT NULL,
  `postcode` varchar(255) DEFAULT NULL,
  `town` varchar(255) DEFAULT NULL,
  `state` varchar(255) DEFAULT NULL,
  `country` varchar(255) DEFAULT NULL,
  `building` varchar(255) DEFAULT NULL,
  `room` varchar(255) DEFAULT NULL,
  `latitude` varchar(255) DEFAULT NULL,
  `longitude` varchar(255) DEFAULT NULL,
  `altitude` varchar(255) DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`entities_id`,`locations_id`,`name`),
  KEY `locations_id` (`locations_id`),
  KEY `name` (`name`),
  KEY `is_recursive` (`is_recursive`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`),
  KEY `level` (`level`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_locations`
--

LOCK TABLES `glpi_locations` WRITE;
/*!40000 ALTER TABLE `glpi_locations` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_locations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_lockedfields`
--

DROP TABLE IF EXISTS `glpi_lockedfields`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_lockedfields` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `itemtype` varchar(100) DEFAULT NULL,
  `items_id` int(10) unsigned NOT NULL DEFAULT 0,
  `field` varchar(50) NOT NULL,
  `value` varchar(255) DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  `is_global` tinyint(4) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`itemtype`,`items_id`,`field`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`),
  KEY `is_global` (`is_global`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_lockedfields`
--

LOCK TABLES `glpi_lockedfields` WRITE;
/*!40000 ALTER TABLE `glpi_lockedfields` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_lockedfields` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_logs`
--

DROP TABLE IF EXISTS `glpi_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_logs` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `itemtype` varchar(100) NOT NULL DEFAULT '',
  `items_id` int(10) unsigned NOT NULL DEFAULT 0,
  `itemtype_link` varchar(100) NOT NULL DEFAULT '',
  `linked_action` int(11) NOT NULL DEFAULT 0 COMMENT 'see define.php HISTORY_* constant',
  `user_name` varchar(255) DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `id_search_option` int(11) NOT NULL DEFAULT 0 COMMENT 'see search.constant.php for value',
  `old_value` varchar(255) DEFAULT NULL,
  `new_value` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `date_mod` (`date_mod`),
  KEY `itemtype_link` (`itemtype_link`),
  KEY `item` (`itemtype`,`items_id`),
  KEY `id_search_option` (`id_search_option`)
) ENGINE=InnoDB AUTO_INCREMENT=2303 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_logs`
--

LOCK TABLES `glpi_logs` WRITE;
/*!40000 ALTER TABLE `glpi_logs` DISABLE KEYS */;
INSERT INTO `glpi_logs` VALUES
(1,'RuleImportAsset',1,'0',20,'','2024-12-27 05:21:51',0,'',''),
(2,'RuleImportAsset',1,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Is partial is Yes (1)'),
(3,'RuleCriteria',1,'0',20,'','2024-12-27 05:21:51',0,'',''),
(4,'RuleImportAsset',1,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Item type does not exist Yes (2)'),
(5,'RuleCriteria',2,'0',20,'','2024-12-27 05:21:51',0,'',''),
(6,'RuleImportAsset',1,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Refuse import Assign Yes (1)'),
(7,'RuleAction',1,'0',20,'','2024-12-27 05:21:51',0,'',''),
(8,'RuleImportAsset',2,'0',20,'','2024-12-27 05:21:51',0,'',''),
(9,'RuleImportAsset',2,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Item type does not exist Yes (3)'),
(10,'RuleCriteria',3,'0',20,'','2024-12-27 05:21:51',0,'',''),
(11,'RuleImportAsset',2,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Network port &#62; MAC is already present Yes (4)'),
(12,'RuleCriteria',4,'0',20,'','2024-12-27 05:21:51',0,'',''),
(13,'RuleImportAsset',2,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Network port &#62; MAC exists Yes (5)'),
(14,'RuleCriteria',5,'0',20,'','2024-12-27 05:21:51',0,'',''),
(15,'RuleImportAsset',2,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Network port &#62; Port number is already present Yes (6)'),
(16,'RuleCriteria',6,'0',20,'','2024-12-27 05:21:51',0,'',''),
(17,'RuleImportAsset',2,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Network port &#62; Port number exists Yes (7)'),
(18,'RuleCriteria',7,'0',20,'','2024-12-27 05:21:51',0,'',''),
(19,'RuleImportAsset',2,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','General &#62; Restrict criteria to same network port Yes Yes (8)'),
(20,'RuleCriteria',8,'0',20,'','2024-12-27 05:21:51',0,'',''),
(21,'RuleImportAsset',2,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Inventory link Assign Link if possible (2)'),
(22,'RuleAction',2,'0',20,'','2024-12-27 05:21:51',0,'',''),
(23,'RuleImportAsset',3,'0',20,'','2024-12-27 05:21:51',0,'',''),
(24,'RuleImportAsset',3,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Item type does not exist Yes (9)'),
(25,'RuleCriteria',9,'0',20,'','2024-12-27 05:21:51',0,'',''),
(26,'RuleImportAsset',3,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Network port &#62; MAC is already present Yes (10)'),
(27,'RuleCriteria',10,'0',20,'','2024-12-27 05:21:51',0,'',''),
(28,'RuleImportAsset',3,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Network port &#62; MAC exists Yes (11)'),
(29,'RuleCriteria',11,'0',20,'','2024-12-27 05:21:51',0,'',''),
(30,'RuleImportAsset',3,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Network port &#62; Port number is already present Yes (12)'),
(31,'RuleCriteria',12,'0',20,'','2024-12-27 05:21:51',0,'',''),
(32,'RuleImportAsset',3,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Network port &#62; Port number exists Yes (13)'),
(33,'RuleCriteria',13,'0',20,'','2024-12-27 05:21:51',0,'',''),
(34,'RuleImportAsset',3,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Inventory link Assign Link if possible (3)'),
(35,'RuleAction',3,'0',20,'','2024-12-27 05:21:51',0,'',''),
(36,'RuleImportAsset',4,'0',20,'','2024-12-27 05:21:51',0,'',''),
(37,'RuleImportAsset',4,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Item type does not exist Yes (14)'),
(38,'RuleCriteria',14,'0',20,'','2024-12-27 05:21:51',0,'',''),
(39,'RuleImportAsset',4,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Network port &#62; MAC exists Yes (15)'),
(40,'RuleCriteria',15,'0',20,'','2024-12-27 05:21:51',0,'',''),
(41,'RuleImportAsset',4,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Network port &#62; Port number exists Yes (16)'),
(42,'RuleCriteria',16,'0',20,'','2024-12-27 05:21:51',0,'',''),
(43,'RuleImportAsset',4,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Inventory link Assign Link if possible (4)'),
(44,'RuleAction',4,'0',20,'','2024-12-27 05:21:51',0,'',''),
(45,'RuleImportAsset',5,'0',20,'','2024-12-27 05:21:51',0,'',''),
(46,'RuleImportAsset',5,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Item type does not exist Yes (17)'),
(47,'RuleCriteria',17,'0',20,'','2024-12-27 05:21:51',0,'',''),
(48,'RuleImportAsset',5,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Network port &#62; IP is already present Yes (18)'),
(49,'RuleCriteria',18,'0',20,'','2024-12-27 05:21:51',0,'',''),
(50,'RuleImportAsset',5,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Network port &#62; IP exists Yes (19)'),
(51,'RuleCriteria',19,'0',20,'','2024-12-27 05:21:51',0,'',''),
(52,'RuleImportAsset',5,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Network port &#62; Port description is already present Yes (20)'),
(53,'RuleCriteria',20,'0',20,'','2024-12-27 05:21:51',0,'',''),
(54,'RuleImportAsset',5,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Network port &#62; Port description exists Yes (21)'),
(55,'RuleCriteria',21,'0',20,'','2024-12-27 05:21:51',0,'',''),
(56,'RuleImportAsset',5,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','General &#62; Restrict criteria to same network port Yes Yes (22)'),
(57,'RuleCriteria',22,'0',20,'','2024-12-27 05:21:51',0,'',''),
(58,'RuleImportAsset',5,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Inventory link Assign Link if possible (5)'),
(59,'RuleAction',5,'0',20,'','2024-12-27 05:21:51',0,'',''),
(60,'RuleImportAsset',6,'0',20,'','2024-12-27 05:21:51',0,'',''),
(61,'RuleImportAsset',6,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Item type does not exist Yes (23)'),
(62,'RuleCriteria',23,'0',20,'','2024-12-27 05:21:51',0,'',''),
(63,'RuleImportAsset',6,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Network port &#62; IP is already present Yes (24)'),
(64,'RuleCriteria',24,'0',20,'','2024-12-27 05:21:51',0,'',''),
(65,'RuleImportAsset',6,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Network port &#62; IP exists Yes (25)'),
(66,'RuleCriteria',25,'0',20,'','2024-12-27 05:21:51',0,'',''),
(67,'RuleImportAsset',6,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Network port &#62; Port description is already present Yes (26)'),
(68,'RuleCriteria',26,'0',20,'','2024-12-27 05:21:51',0,'',''),
(69,'RuleImportAsset',6,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Network port &#62; Port description exists Yes (27)'),
(70,'RuleCriteria',27,'0',20,'','2024-12-27 05:21:51',0,'',''),
(71,'RuleImportAsset',6,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Inventory link Assign Link if possible (6)'),
(72,'RuleAction',6,'0',20,'','2024-12-27 05:21:51',0,'',''),
(73,'RuleImportAsset',7,'0',20,'','2024-12-27 05:21:51',0,'',''),
(74,'RuleImportAsset',7,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Item type does not exist Yes (28)'),
(75,'RuleCriteria',28,'0',20,'','2024-12-27 05:21:51',0,'',''),
(76,'RuleImportAsset',7,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Network port &#62; IP exists Yes (29)'),
(77,'RuleCriteria',29,'0',20,'','2024-12-27 05:21:51',0,'',''),
(78,'RuleImportAsset',7,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Network port &#62; Port description exists Yes (30)'),
(79,'RuleCriteria',30,'0',20,'','2024-12-27 05:21:51',0,'',''),
(80,'RuleImportAsset',7,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Inventory link Assign Link if possible (7)'),
(81,'RuleAction',7,'0',20,'','2024-12-27 05:21:51',0,'',''),
(82,'RuleImportAsset',8,'0',20,'','2024-12-27 05:21:51',0,'',''),
(83,'RuleImportAsset',8,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Item type does not exist Yes (31)'),
(84,'RuleCriteria',31,'0',20,'','2024-12-27 05:21:51',0,'',''),
(85,'RuleImportAsset',8,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Network port &#62; MAC is already present Yes (32)'),
(86,'RuleCriteria',32,'0',20,'','2024-12-27 05:21:51',0,'',''),
(87,'RuleImportAsset',8,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Network port &#62; MAC exists Yes (33)'),
(88,'RuleCriteria',33,'0',20,'','2024-12-27 05:21:51',0,'',''),
(89,'RuleImportAsset',8,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','General &#62; Only criteria of this rule in data Yes Yes (34)'),
(90,'RuleCriteria',34,'0',20,'','2024-12-27 05:21:51',0,'',''),
(91,'RuleImportAsset',8,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Inventory link Assign Link if possible (8)'),
(92,'RuleAction',8,'0',20,'','2024-12-27 05:21:51',0,'',''),
(93,'RuleImportAsset',9,'0',20,'','2024-12-27 05:21:51',0,'',''),
(94,'RuleImportAsset',9,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Item type does not exist Yes (35)'),
(95,'RuleCriteria',35,'0',20,'','2024-12-27 05:21:51',0,'',''),
(96,'RuleImportAsset',9,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Network port &#62; MAC exists Yes (36)'),
(97,'RuleCriteria',36,'0',20,'','2024-12-27 05:21:51',0,'',''),
(98,'RuleImportAsset',9,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','General &#62; Only criteria of this rule in data Yes Yes (37)'),
(99,'RuleCriteria',37,'0',20,'','2024-12-27 05:21:51',0,'',''),
(100,'RuleImportAsset',9,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Inventory link Assign Link if possible (9)'),
(101,'RuleAction',9,'0',20,'','2024-12-27 05:21:51',0,'',''),
(102,'RuleImportAsset',10,'0',20,'','2024-12-27 05:21:51',0,'',''),
(103,'RuleImportAsset',10,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Item type is Computers (38)'),
(104,'RuleCriteria',38,'0',20,'','2024-12-27 05:21:51',0,'',''),
(105,'RuleImportAsset',10,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Name does not exist Yes (39)'),
(106,'RuleCriteria',39,'0',20,'','2024-12-27 05:21:51',0,'',''),
(107,'RuleImportAsset',10,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Refuse import Assign Yes (10)'),
(108,'RuleAction',10,'0',20,'','2024-12-27 05:21:51',0,'',''),
(109,'RuleImportAsset',11,'0',20,'','2024-12-27 05:21:51',0,'',''),
(110,'RuleImportAsset',11,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Item type is Computers (40)'),
(111,'RuleCriteria',40,'0',20,'','2024-12-27 05:21:51',0,'',''),
(112,'RuleImportAsset',11,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Serial number is already present Yes (41)'),
(113,'RuleCriteria',41,'0',20,'','2024-12-27 05:21:51',0,'',''),
(114,'RuleImportAsset',11,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Serial number exists Yes (42)'),
(115,'RuleCriteria',42,'0',20,'','2024-12-27 05:21:51',0,'',''),
(116,'RuleImportAsset',11,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; UUID is already present Yes (43)'),
(117,'RuleCriteria',43,'0',20,'','2024-12-27 05:21:51',0,'',''),
(118,'RuleImportAsset',11,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; UUID exists Yes (44)'),
(119,'RuleCriteria',44,'0',20,'','2024-12-27 05:21:51',0,'',''),
(120,'RuleImportAsset',11,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Inventory link Assign Link if possible (11)'),
(121,'RuleAction',11,'0',20,'','2024-12-27 05:21:51',0,'',''),
(122,'RuleImportAsset',12,'0',20,'','2024-12-27 05:21:51',0,'',''),
(123,'RuleImportAsset',12,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Item type is Computers (45)'),
(124,'RuleCriteria',45,'0',20,'','2024-12-27 05:21:51',0,'',''),
(125,'RuleImportAsset',12,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Serial number is already present Yes (46)'),
(126,'RuleCriteria',46,'0',20,'','2024-12-27 05:21:51',0,'',''),
(127,'RuleImportAsset',12,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Serial number exists Yes (47)'),
(128,'RuleCriteria',47,'0',20,'','2024-12-27 05:21:51',0,'',''),
(129,'RuleImportAsset',12,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; UUID is empty Yes (48)'),
(130,'RuleCriteria',48,'0',20,'','2024-12-27 05:21:51',0,'',''),
(131,'RuleImportAsset',12,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Inventory link Assign Link if possible (12)'),
(132,'RuleAction',12,'0',20,'','2024-12-27 05:21:51',0,'',''),
(133,'RuleImportAsset',13,'0',20,'','2024-12-27 05:21:51',0,'',''),
(134,'RuleImportAsset',13,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Item type is Computers (49)'),
(135,'RuleCriteria',49,'0',20,'','2024-12-27 05:21:51',0,'',''),
(136,'RuleImportAsset',13,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; UUID exists Yes (50)'),
(137,'RuleCriteria',50,'0',20,'','2024-12-27 05:21:51',0,'',''),
(138,'RuleImportAsset',13,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Serial number exists Yes (51)'),
(139,'RuleCriteria',51,'0',20,'','2024-12-27 05:21:51',0,'',''),
(140,'RuleImportAsset',13,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Inventory link Assign Link if possible (13)'),
(141,'RuleAction',13,'0',20,'','2024-12-27 05:21:51',0,'',''),
(142,'RuleImportAsset',14,'0',20,'','2024-12-27 05:21:51',0,'',''),
(143,'RuleImportAsset',14,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Item type is Computers (52)'),
(144,'RuleCriteria',52,'0',20,'','2024-12-27 05:21:51',0,'',''),
(145,'RuleImportAsset',14,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Serial number is already present Yes (53)'),
(146,'RuleCriteria',53,'0',20,'','2024-12-27 05:21:51',0,'',''),
(147,'RuleImportAsset',14,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Serial number exists Yes (54)'),
(148,'RuleCriteria',54,'0',20,'','2024-12-27 05:21:51',0,'',''),
(149,'RuleImportAsset',14,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Inventory link Assign Link if possible (14)'),
(150,'RuleAction',14,'0',20,'','2024-12-27 05:21:51',0,'',''),
(151,'RuleImportAsset',15,'0',20,'','2024-12-27 05:21:51',0,'',''),
(152,'RuleImportAsset',15,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Item type is Computers (55)'),
(153,'RuleCriteria',55,'0',20,'','2024-12-27 05:21:51',0,'',''),
(154,'RuleImportAsset',15,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; UUID is already present Yes (56)'),
(155,'RuleCriteria',56,'0',20,'','2024-12-27 05:21:51',0,'',''),
(156,'RuleImportAsset',15,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; UUID exists Yes (57)'),
(157,'RuleCriteria',57,'0',20,'','2024-12-27 05:21:51',0,'',''),
(158,'RuleImportAsset',15,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Inventory link Assign Link if possible (15)'),
(159,'RuleAction',15,'0',20,'','2024-12-27 05:21:51',0,'',''),
(160,'RuleImportAsset',16,'0',20,'','2024-12-27 05:21:51',0,'',''),
(161,'RuleImportAsset',16,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Item type is Computers (58)'),
(162,'RuleCriteria',58,'0',20,'','2024-12-27 05:21:51',0,'',''),
(163,'RuleImportAsset',16,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Network port &#62; MAC is already present Yes (59)'),
(164,'RuleCriteria',59,'0',20,'','2024-12-27 05:21:51',0,'',''),
(165,'RuleImportAsset',16,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Network port &#62; MAC exists Yes (60)'),
(166,'RuleCriteria',60,'0',20,'','2024-12-27 05:21:51',0,'',''),
(167,'RuleImportAsset',16,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Inventory link Assign Link if possible (16)'),
(168,'RuleAction',16,'0',20,'','2024-12-27 05:21:51',0,'',''),
(169,'RuleImportAsset',17,'0',20,'','2024-12-27 05:21:51',0,'',''),
(170,'RuleImportAsset',17,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Item type is Computers (61)'),
(171,'RuleCriteria',61,'0',20,'','2024-12-27 05:21:51',0,'',''),
(172,'RuleImportAsset',17,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Name is already present Yes (62)'),
(173,'RuleCriteria',62,'0',20,'','2024-12-27 05:21:51',0,'',''),
(174,'RuleImportAsset',17,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Name exists Yes (63)'),
(175,'RuleCriteria',63,'0',20,'','2024-12-27 05:21:51',0,'',''),
(176,'RuleImportAsset',17,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Inventory link Assign Link if possible (17)'),
(177,'RuleAction',17,'0',20,'','2024-12-27 05:21:51',0,'',''),
(178,'RuleImportAsset',18,'0',20,'','2024-12-27 05:21:51',0,'',''),
(179,'RuleImportAsset',18,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Item type is Computers (64)'),
(180,'RuleCriteria',64,'0',20,'','2024-12-27 05:21:51',0,'',''),
(181,'RuleImportAsset',18,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Serial number exists Yes (65)'),
(182,'RuleCriteria',65,'0',20,'','2024-12-27 05:21:51',0,'',''),
(183,'RuleImportAsset',18,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Inventory link Assign Link if possible (18)'),
(184,'RuleAction',18,'0',20,'','2024-12-27 05:21:51',0,'',''),
(185,'RuleImportAsset',19,'0',20,'','2024-12-27 05:21:51',0,'',''),
(186,'RuleImportAsset',19,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Item type is Computers (66)'),
(187,'RuleCriteria',66,'0',20,'','2024-12-27 05:21:51',0,'',''),
(188,'RuleImportAsset',19,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; UUID exists Yes (67)'),
(189,'RuleCriteria',67,'0',20,'','2024-12-27 05:21:51',0,'',''),
(190,'RuleImportAsset',19,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Inventory link Assign Link if possible (19)'),
(191,'RuleAction',19,'0',20,'','2024-12-27 05:21:51',0,'',''),
(192,'RuleImportAsset',20,'0',20,'','2024-12-27 05:21:51',0,'',''),
(193,'RuleImportAsset',20,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Item type is Computers (68)'),
(194,'RuleCriteria',68,'0',20,'','2024-12-27 05:21:51',0,'',''),
(195,'RuleImportAsset',20,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Network port &#62; MAC exists Yes (69)'),
(196,'RuleCriteria',69,'0',20,'','2024-12-27 05:21:51',0,'',''),
(197,'RuleImportAsset',20,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Inventory link Assign Link if possible (20)'),
(198,'RuleAction',20,'0',20,'','2024-12-27 05:21:51',0,'',''),
(199,'RuleImportAsset',21,'0',20,'','2024-12-27 05:21:51',0,'',''),
(200,'RuleImportAsset',21,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Item type is Computers (70)'),
(201,'RuleCriteria',70,'0',20,'','2024-12-27 05:21:51',0,'',''),
(202,'RuleImportAsset',21,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Name exists Yes (71)'),
(203,'RuleCriteria',71,'0',20,'','2024-12-27 05:21:51',0,'',''),
(204,'RuleImportAsset',21,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Inventory link Assign Link if possible (21)'),
(205,'RuleAction',21,'0',20,'','2024-12-27 05:21:51',0,'',''),
(206,'RuleImportAsset',22,'0',20,'','2024-12-27 05:21:51',0,'',''),
(207,'RuleImportAsset',22,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Item type is Computers (72)'),
(208,'RuleCriteria',72,'0',20,'','2024-12-27 05:21:51',0,'',''),
(209,'RuleImportAsset',22,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Refuse import Assign Yes (22)'),
(210,'RuleAction',22,'0',20,'','2024-12-27 05:21:51',0,'',''),
(211,'RuleImportAsset',23,'0',20,'','2024-12-27 05:21:51',0,'',''),
(212,'RuleImportAsset',23,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Item type is Printers (73)'),
(213,'RuleCriteria',73,'0',20,'','2024-12-27 05:21:51',0,'',''),
(214,'RuleImportAsset',23,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Name does not exist Yes (74)'),
(215,'RuleCriteria',74,'0',20,'','2024-12-27 05:21:51',0,'',''),
(216,'RuleImportAsset',23,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Refuse import Assign Yes (23)'),
(217,'RuleAction',23,'0',20,'','2024-12-27 05:21:51',0,'',''),
(218,'RuleImportAsset',24,'0',20,'','2024-12-27 05:21:51',0,'',''),
(219,'RuleImportAsset',24,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Item type is Printers (75)'),
(220,'RuleCriteria',75,'0',20,'','2024-12-27 05:21:51',0,'',''),
(221,'RuleImportAsset',24,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Serial number exists Yes (76)'),
(222,'RuleCriteria',76,'0',20,'','2024-12-27 05:21:51',0,'',''),
(223,'RuleImportAsset',24,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Serial number is already present Yes (77)'),
(224,'RuleCriteria',77,'0',20,'','2024-12-27 05:21:51',0,'',''),
(225,'RuleImportAsset',24,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Inventory link Assign Link if possible (24)'),
(226,'RuleAction',24,'0',20,'','2024-12-27 05:21:51',0,'',''),
(227,'RuleImportAsset',25,'0',20,'','2024-12-27 05:21:51',0,'',''),
(228,'RuleImportAsset',25,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Item type is Printers (78)'),
(229,'RuleCriteria',78,'0',20,'','2024-12-27 05:21:51',0,'',''),
(230,'RuleImportAsset',25,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Network port &#62; MAC exists Yes (79)'),
(231,'RuleCriteria',79,'0',20,'','2024-12-27 05:21:51',0,'',''),
(232,'RuleImportAsset',25,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Network port &#62; MAC is already present Yes (80)'),
(233,'RuleCriteria',80,'0',20,'','2024-12-27 05:21:51',0,'',''),
(234,'RuleImportAsset',25,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Inventory link Assign Link if possible (25)'),
(235,'RuleAction',25,'0',20,'','2024-12-27 05:21:51',0,'',''),
(236,'RuleImportAsset',26,'0',20,'','2024-12-27 05:21:51',0,'',''),
(237,'RuleImportAsset',26,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Item type is Printers (81)'),
(238,'RuleCriteria',81,'0',20,'','2024-12-27 05:21:51',0,'',''),
(239,'RuleImportAsset',26,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Serial number exists Yes (82)'),
(240,'RuleCriteria',82,'0',20,'','2024-12-27 05:21:51',0,'',''),
(241,'RuleImportAsset',26,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Inventory link Assign Link if possible (26)'),
(242,'RuleAction',26,'0',20,'','2024-12-27 05:21:51',0,'',''),
(243,'RuleImportAsset',27,'0',20,'','2024-12-27 05:21:51',0,'',''),
(244,'RuleImportAsset',27,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Item type is Printers (83)'),
(245,'RuleCriteria',83,'0',20,'','2024-12-27 05:21:51',0,'',''),
(246,'RuleImportAsset',27,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Network port &#62; MAC exists Yes (84)'),
(247,'RuleCriteria',84,'0',20,'','2024-12-27 05:21:51',0,'',''),
(248,'RuleImportAsset',27,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Inventory link Assign Link if possible (27)'),
(249,'RuleAction',27,'0',20,'','2024-12-27 05:21:51',0,'',''),
(250,'RuleImportAsset',28,'0',20,'','2024-12-27 05:21:51',0,'',''),
(251,'RuleImportAsset',28,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Item type is Printers (85)'),
(252,'RuleCriteria',85,'0',20,'','2024-12-27 05:21:51',0,'',''),
(253,'RuleImportAsset',28,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Refuse import Assign Yes (28)'),
(254,'RuleAction',28,'0',20,'','2024-12-27 05:21:51',0,'',''),
(255,'RuleImportAsset',29,'0',20,'','2024-12-27 05:21:51',0,'',''),
(256,'RuleImportAsset',29,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Item type is Network devices (86)'),
(257,'RuleCriteria',86,'0',20,'','2024-12-27 05:21:51',0,'',''),
(258,'RuleImportAsset',29,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Name does not exist Yes (87)'),
(259,'RuleCriteria',87,'0',20,'','2024-12-27 05:21:51',0,'',''),
(260,'RuleImportAsset',29,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Refuse import Assign Yes (29)'),
(261,'RuleAction',29,'0',20,'','2024-12-27 05:21:51',0,'',''),
(262,'RuleImportAsset',30,'0',20,'','2024-12-27 05:21:51',0,'',''),
(263,'RuleImportAsset',30,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Item type is Network devices (88)'),
(264,'RuleCriteria',88,'0',20,'','2024-12-27 05:21:51',0,'',''),
(265,'RuleImportAsset',30,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Serial number exists Yes (89)'),
(266,'RuleCriteria',89,'0',20,'','2024-12-27 05:21:51',0,'',''),
(267,'RuleImportAsset',30,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Serial number is already present Yes (90)'),
(268,'RuleCriteria',90,'0',20,'','2024-12-27 05:21:51',0,'',''),
(269,'RuleImportAsset',30,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Inventory link Assign Link if possible (30)'),
(270,'RuleAction',30,'0',20,'','2024-12-27 05:21:51',0,'',''),
(271,'RuleImportAsset',31,'0',20,'','2024-12-27 05:21:51',0,'',''),
(272,'RuleImportAsset',31,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Item type is Network devices (91)'),
(273,'RuleCriteria',91,'0',20,'','2024-12-27 05:21:51',0,'',''),
(274,'RuleImportAsset',31,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Network port &#62; MAC exists Yes (92)'),
(275,'RuleCriteria',92,'0',20,'','2024-12-27 05:21:51',0,'',''),
(276,'RuleImportAsset',31,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Network port &#62; MAC is already present Yes (93)'),
(277,'RuleCriteria',93,'0',20,'','2024-12-27 05:21:51',0,'',''),
(278,'RuleImportAsset',31,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Inventory link Assign Link if possible (31)'),
(279,'RuleAction',31,'0',20,'','2024-12-27 05:21:51',0,'',''),
(280,'RuleImportAsset',32,'0',20,'','2024-12-27 05:21:51',0,'',''),
(281,'RuleImportAsset',32,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Item type is Network devices (94)'),
(282,'RuleCriteria',94,'0',20,'','2024-12-27 05:21:51',0,'',''),
(283,'RuleImportAsset',32,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Serial number exists Yes (95)'),
(284,'RuleCriteria',95,'0',20,'','2024-12-27 05:21:51',0,'',''),
(285,'RuleImportAsset',32,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Inventory link Assign Link if possible (32)'),
(286,'RuleAction',32,'0',20,'','2024-12-27 05:21:51',0,'',''),
(287,'RuleImportAsset',33,'0',20,'','2024-12-27 05:21:51',0,'',''),
(288,'RuleImportAsset',33,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Item type is Network devices (96)'),
(289,'RuleCriteria',96,'0',20,'','2024-12-27 05:21:51',0,'',''),
(290,'RuleImportAsset',33,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Network port &#62; MAC exists Yes (97)'),
(291,'RuleCriteria',97,'0',20,'','2024-12-27 05:21:51',0,'',''),
(292,'RuleImportAsset',33,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Inventory link Assign Link if possible (33)'),
(293,'RuleAction',33,'0',20,'','2024-12-27 05:21:51',0,'',''),
(294,'RuleImportAsset',34,'0',20,'','2024-12-27 05:21:51',0,'',''),
(295,'RuleImportAsset',34,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Item type is Network devices (98)'),
(296,'RuleCriteria',98,'0',20,'','2024-12-27 05:21:51',0,'',''),
(297,'RuleImportAsset',34,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Refuse import Assign Yes (34)'),
(298,'RuleAction',34,'0',20,'','2024-12-27 05:21:51',0,'',''),
(299,'RuleImportAsset',35,'0',20,'','2024-12-27 05:21:51',0,'',''),
(300,'RuleImportAsset',35,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Item type is Peripherals (99)'),
(301,'RuleCriteria',99,'0',20,'','2024-12-27 05:21:51',0,'',''),
(302,'RuleImportAsset',35,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Serial number exists Yes (100)'),
(303,'RuleCriteria',100,'0',20,'','2024-12-27 05:21:51',0,'',''),
(304,'RuleImportAsset',35,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Serial number is already present Yes (101)'),
(305,'RuleCriteria',101,'0',20,'','2024-12-27 05:21:51',0,'',''),
(306,'RuleImportAsset',35,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Inventory link Assign Link if possible (35)'),
(307,'RuleAction',35,'0',20,'','2024-12-27 05:21:51',0,'',''),
(308,'RuleImportAsset',36,'0',20,'','2024-12-27 05:21:51',0,'',''),
(309,'RuleImportAsset',36,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Item type is Peripherals (102)'),
(310,'RuleCriteria',102,'0',20,'','2024-12-27 05:21:51',0,'',''),
(311,'RuleImportAsset',36,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Serial number exists Yes (103)'),
(312,'RuleCriteria',103,'0',20,'','2024-12-27 05:21:51',0,'',''),
(313,'RuleImportAsset',36,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Inventory link Assign Link if possible (36)'),
(314,'RuleAction',36,'0',20,'','2024-12-27 05:21:51',0,'',''),
(315,'RuleImportAsset',37,'0',20,'','2024-12-27 05:21:51',0,'',''),
(316,'RuleImportAsset',37,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Item type is Peripherals (104)'),
(317,'RuleCriteria',104,'0',20,'','2024-12-27 05:21:51',0,'',''),
(318,'RuleImportAsset',37,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Refuse import Assign Yes (37)'),
(319,'RuleAction',37,'0',20,'','2024-12-27 05:21:51',0,'',''),
(320,'RuleImportAsset',38,'0',20,'','2024-12-27 05:21:51',0,'',''),
(321,'RuleImportAsset',38,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Item type is Monitors (105)'),
(322,'RuleCriteria',105,'0',20,'','2024-12-27 05:21:51',0,'',''),
(323,'RuleImportAsset',38,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Serial number exists Yes (106)'),
(324,'RuleCriteria',106,'0',20,'','2024-12-27 05:21:51',0,'',''),
(325,'RuleImportAsset',38,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Serial number is already present Yes (107)'),
(326,'RuleCriteria',107,'0',20,'','2024-12-27 05:21:51',0,'',''),
(327,'RuleImportAsset',38,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Inventory link Assign Link if possible (38)'),
(328,'RuleAction',38,'0',20,'','2024-12-27 05:21:51',0,'',''),
(329,'RuleImportAsset',39,'0',20,'','2024-12-27 05:21:51',0,'',''),
(330,'RuleImportAsset',39,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Item type is Monitors (108)'),
(331,'RuleCriteria',108,'0',20,'','2024-12-27 05:21:51',0,'',''),
(332,'RuleImportAsset',39,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Serial number exists Yes (109)'),
(333,'RuleCriteria',109,'0',20,'','2024-12-27 05:21:51',0,'',''),
(334,'RuleImportAsset',39,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Inventory link Assign Link if possible (39)'),
(335,'RuleAction',39,'0',20,'','2024-12-27 05:21:51',0,'',''),
(336,'RuleImportAsset',40,'0',20,'','2024-12-27 05:21:51',0,'',''),
(337,'RuleImportAsset',40,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Item type is Monitors (110)'),
(338,'RuleCriteria',110,'0',20,'','2024-12-27 05:21:51',0,'',''),
(339,'RuleImportAsset',40,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Refuse import Assign Yes (40)'),
(340,'RuleAction',40,'0',20,'','2024-12-27 05:21:51',0,'',''),
(341,'RuleImportAsset',41,'0',20,'','2024-12-27 05:21:51',0,'',''),
(342,'RuleImportAsset',41,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Item type is Phones (111)'),
(343,'RuleCriteria',111,'0',20,'','2024-12-27 05:21:51',0,'',''),
(344,'RuleImportAsset',41,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Name does not exist Yes (112)'),
(345,'RuleCriteria',112,'0',20,'','2024-12-27 05:21:51',0,'',''),
(346,'RuleImportAsset',41,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Refuse import Assign Yes (41)'),
(347,'RuleAction',41,'0',20,'','2024-12-27 05:21:51',0,'',''),
(348,'RuleImportAsset',42,'0',20,'','2024-12-27 05:21:51',0,'',''),
(349,'RuleImportAsset',42,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Item type is Phones (113)'),
(350,'RuleCriteria',113,'0',20,'','2024-12-27 05:21:51',0,'',''),
(351,'RuleImportAsset',42,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Serial number is already present Yes (114)'),
(352,'RuleCriteria',114,'0',20,'','2024-12-27 05:21:51',0,'',''),
(353,'RuleImportAsset',42,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Serial number exists Yes (115)'),
(354,'RuleCriteria',115,'0',20,'','2024-12-27 05:21:51',0,'',''),
(355,'RuleImportAsset',42,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; UUID is already present Yes (116)'),
(356,'RuleCriteria',116,'0',20,'','2024-12-27 05:21:51',0,'',''),
(357,'RuleImportAsset',42,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; UUID exists Yes (117)'),
(358,'RuleCriteria',117,'0',20,'','2024-12-27 05:21:51',0,'',''),
(359,'RuleImportAsset',42,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Inventory link Assign Link if possible (42)'),
(360,'RuleAction',42,'0',20,'','2024-12-27 05:21:51',0,'',''),
(361,'RuleImportAsset',43,'0',20,'','2024-12-27 05:21:51',0,'',''),
(362,'RuleImportAsset',43,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Item type is Phones (118)'),
(363,'RuleCriteria',118,'0',20,'','2024-12-27 05:21:51',0,'',''),
(364,'RuleImportAsset',43,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Serial number is already present Yes (119)'),
(365,'RuleCriteria',119,'0',20,'','2024-12-27 05:21:51',0,'',''),
(366,'RuleImportAsset',43,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Serial number exists Yes (120)'),
(367,'RuleCriteria',120,'0',20,'','2024-12-27 05:21:51',0,'',''),
(368,'RuleImportAsset',43,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; UUID is empty Yes (121)'),
(369,'RuleCriteria',121,'0',20,'','2024-12-27 05:21:51',0,'',''),
(370,'RuleImportAsset',43,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Inventory link Assign Link if possible (43)'),
(371,'RuleAction',43,'0',20,'','2024-12-27 05:21:51',0,'',''),
(372,'RuleImportAsset',44,'0',20,'','2024-12-27 05:21:51',0,'',''),
(373,'RuleImportAsset',44,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Item type is Phones (122)'),
(374,'RuleCriteria',122,'0',20,'','2024-12-27 05:21:51',0,'',''),
(375,'RuleImportAsset',44,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; UUID exists Yes (123)'),
(376,'RuleCriteria',123,'0',20,'','2024-12-27 05:21:51',0,'',''),
(377,'RuleImportAsset',44,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Serial number exists Yes (124)'),
(378,'RuleCriteria',124,'0',20,'','2024-12-27 05:21:51',0,'',''),
(379,'RuleImportAsset',44,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Inventory link Assign Link if possible (44)'),
(380,'RuleAction',44,'0',20,'','2024-12-27 05:21:51',0,'',''),
(381,'RuleImportAsset',45,'0',20,'','2024-12-27 05:21:51',0,'',''),
(382,'RuleImportAsset',45,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Item type is Phones (125)'),
(383,'RuleCriteria',125,'0',20,'','2024-12-27 05:21:51',0,'',''),
(384,'RuleImportAsset',45,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Serial number is already present Yes (126)'),
(385,'RuleCriteria',126,'0',20,'','2024-12-27 05:21:51',0,'',''),
(386,'RuleImportAsset',45,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Serial number exists Yes (127)'),
(387,'RuleCriteria',127,'0',20,'','2024-12-27 05:21:51',0,'',''),
(388,'RuleImportAsset',45,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Inventory link Assign Link if possible (45)'),
(389,'RuleAction',45,'0',20,'','2024-12-27 05:21:51',0,'',''),
(390,'RuleImportAsset',46,'0',20,'','2024-12-27 05:21:51',0,'',''),
(391,'RuleImportAsset',46,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Item type is Phones (128)'),
(392,'RuleCriteria',128,'0',20,'','2024-12-27 05:21:51',0,'',''),
(393,'RuleImportAsset',46,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; UUID is already present Yes (129)'),
(394,'RuleCriteria',129,'0',20,'','2024-12-27 05:21:51',0,'',''),
(395,'RuleImportAsset',46,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; UUID exists Yes (130)'),
(396,'RuleCriteria',130,'0',20,'','2024-12-27 05:21:51',0,'',''),
(397,'RuleImportAsset',46,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Inventory link Assign Link if possible (46)'),
(398,'RuleAction',46,'0',20,'','2024-12-27 05:21:51',0,'',''),
(399,'RuleImportAsset',47,'0',20,'','2024-12-27 05:21:51',0,'',''),
(400,'RuleImportAsset',47,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Item type is Phones (131)'),
(401,'RuleCriteria',131,'0',20,'','2024-12-27 05:21:51',0,'',''),
(402,'RuleImportAsset',47,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Network port &#62; MAC is already present Yes (132)'),
(403,'RuleCriteria',132,'0',20,'','2024-12-27 05:21:51',0,'',''),
(404,'RuleImportAsset',47,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Network port &#62; MAC exists Yes (133)'),
(405,'RuleCriteria',133,'0',20,'','2024-12-27 05:21:51',0,'',''),
(406,'RuleImportAsset',47,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Inventory link Assign Link if possible (47)'),
(407,'RuleAction',47,'0',20,'','2024-12-27 05:21:51',0,'',''),
(408,'RuleImportAsset',48,'0',20,'','2024-12-27 05:21:51',0,'',''),
(409,'RuleImportAsset',48,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Item type is Phones (134)'),
(410,'RuleCriteria',134,'0',20,'','2024-12-27 05:21:51',0,'',''),
(411,'RuleImportAsset',48,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Name is already present Yes (135)'),
(412,'RuleCriteria',135,'0',20,'','2024-12-27 05:21:51',0,'',''),
(413,'RuleImportAsset',48,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Name exists Yes (136)'),
(414,'RuleCriteria',136,'0',20,'','2024-12-27 05:21:51',0,'',''),
(415,'RuleImportAsset',48,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Inventory link Assign Link if possible (48)'),
(416,'RuleAction',48,'0',20,'','2024-12-27 05:21:51',0,'',''),
(417,'RuleImportAsset',49,'0',20,'','2024-12-27 05:21:51',0,'',''),
(418,'RuleImportAsset',49,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Item type is Phones (137)'),
(419,'RuleCriteria',137,'0',20,'','2024-12-27 05:21:51',0,'',''),
(420,'RuleImportAsset',49,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Serial number exists Yes (138)'),
(421,'RuleCriteria',138,'0',20,'','2024-12-27 05:21:51',0,'',''),
(422,'RuleImportAsset',49,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Inventory link Assign Link if possible (49)'),
(423,'RuleAction',49,'0',20,'','2024-12-27 05:21:51',0,'',''),
(424,'RuleImportAsset',50,'0',20,'','2024-12-27 05:21:51',0,'',''),
(425,'RuleImportAsset',50,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Item type is Phones (139)'),
(426,'RuleCriteria',139,'0',20,'','2024-12-27 05:21:51',0,'',''),
(427,'RuleImportAsset',50,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; UUID exists Yes (140)'),
(428,'RuleCriteria',140,'0',20,'','2024-12-27 05:21:51',0,'',''),
(429,'RuleImportAsset',50,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Inventory link Assign Link if possible (50)'),
(430,'RuleAction',50,'0',20,'','2024-12-27 05:21:51',0,'',''),
(431,'RuleImportAsset',51,'0',20,'','2024-12-27 05:21:51',0,'',''),
(432,'RuleImportAsset',51,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Item type is Phones (141)'),
(433,'RuleCriteria',141,'0',20,'','2024-12-27 05:21:51',0,'',''),
(434,'RuleImportAsset',51,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Network port &#62; MAC exists Yes (142)'),
(435,'RuleCriteria',142,'0',20,'','2024-12-27 05:21:51',0,'',''),
(436,'RuleImportAsset',51,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Inventory link Assign Link if possible (51)'),
(437,'RuleAction',51,'0',20,'','2024-12-27 05:21:51',0,'',''),
(438,'RuleImportAsset',52,'0',20,'','2024-12-27 05:21:51',0,'',''),
(439,'RuleImportAsset',52,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Item type is Phones (143)'),
(440,'RuleCriteria',143,'0',20,'','2024-12-27 05:21:51',0,'',''),
(441,'RuleImportAsset',52,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Name exists Yes (144)'),
(442,'RuleCriteria',144,'0',20,'','2024-12-27 05:21:51',0,'',''),
(443,'RuleImportAsset',52,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Inventory link Assign Link if possible (52)'),
(444,'RuleAction',52,'0',20,'','2024-12-27 05:21:51',0,'',''),
(445,'RuleImportAsset',53,'0',20,'','2024-12-27 05:21:51',0,'',''),
(446,'RuleImportAsset',53,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Item type is Phones (145)'),
(447,'RuleCriteria',145,'0',20,'','2024-12-27 05:21:51',0,'',''),
(448,'RuleImportAsset',53,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Refuse import Assign Yes (53)'),
(449,'RuleAction',53,'0',20,'','2024-12-27 05:21:51',0,'',''),
(450,'RuleImportAsset',54,'0',20,'','2024-12-27 05:21:51',0,'',''),
(451,'RuleImportAsset',54,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Item type is Clusters (146)'),
(452,'RuleCriteria',146,'0',20,'','2024-12-27 05:21:51',0,'',''),
(453,'RuleImportAsset',54,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; UUID exists Yes (147)'),
(454,'RuleCriteria',147,'0',20,'','2024-12-27 05:21:51',0,'',''),
(455,'RuleImportAsset',54,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; UUID is already present Yes (148)'),
(456,'RuleCriteria',148,'0',20,'','2024-12-27 05:21:51',0,'',''),
(457,'RuleImportAsset',54,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Inventory link Assign Link if possible (54)'),
(458,'RuleAction',54,'0',20,'','2024-12-27 05:21:51',0,'',''),
(459,'RuleImportAsset',55,'0',20,'','2024-12-27 05:21:51',0,'',''),
(460,'RuleImportAsset',55,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Item type is Clusters (149)'),
(461,'RuleCriteria',149,'0',20,'','2024-12-27 05:21:51',0,'',''),
(462,'RuleImportAsset',55,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; UUID exists Yes (150)'),
(463,'RuleCriteria',150,'0',20,'','2024-12-27 05:21:51',0,'',''),
(464,'RuleImportAsset',55,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Inventory link Assign Link if possible (55)'),
(465,'RuleAction',55,'0',20,'','2024-12-27 05:21:51',0,'',''),
(466,'RuleImportAsset',56,'0',20,'','2024-12-27 05:21:51',0,'',''),
(467,'RuleImportAsset',56,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Item type is Clusters (151)'),
(468,'RuleCriteria',151,'0',20,'','2024-12-27 05:21:51',0,'',''),
(469,'RuleImportAsset',56,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Refuse import Assign Yes (56)'),
(470,'RuleAction',56,'0',20,'','2024-12-27 05:21:51',0,'',''),
(471,'RuleImportAsset',57,'0',20,'','2024-12-27 05:21:51',0,'',''),
(472,'RuleImportAsset',57,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Item type is Enclosures (152)'),
(473,'RuleCriteria',152,'0',20,'','2024-12-27 05:21:51',0,'',''),
(474,'RuleImportAsset',57,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Serial number exists Yes (153)'),
(475,'RuleCriteria',153,'0',20,'','2024-12-27 05:21:51',0,'',''),
(476,'RuleImportAsset',57,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Serial number is already present Yes (154)'),
(477,'RuleCriteria',154,'0',20,'','2024-12-27 05:21:51',0,'',''),
(478,'RuleImportAsset',57,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Inventory link Assign Link if possible (57)'),
(479,'RuleAction',57,'0',20,'','2024-12-27 05:21:51',0,'',''),
(480,'RuleImportAsset',58,'0',20,'','2024-12-27 05:21:51',0,'',''),
(481,'RuleImportAsset',58,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Item type is Enclosures (155)'),
(482,'RuleCriteria',155,'0',20,'','2024-12-27 05:21:51',0,'',''),
(483,'RuleImportAsset',58,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Serial number exists Yes (156)'),
(484,'RuleCriteria',156,'0',20,'','2024-12-27 05:21:51',0,'',''),
(485,'RuleImportAsset',58,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Inventory link Assign Link if possible (58)'),
(486,'RuleAction',58,'0',20,'','2024-12-27 05:21:51',0,'',''),
(487,'RuleImportAsset',59,'0',20,'','2024-12-27 05:21:51',0,'',''),
(488,'RuleImportAsset',59,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Item type is Enclosures (157)'),
(489,'RuleCriteria',157,'0',20,'','2024-12-27 05:21:51',0,'',''),
(490,'RuleImportAsset',59,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Refuse import Assign Yes (59)'),
(491,'RuleAction',59,'0',20,'','2024-12-27 05:21:51',0,'',''),
(492,'RuleImportAsset',60,'0',20,'','2024-12-27 05:21:51',0,'',''),
(493,'RuleImportAsset',60,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Name does not exist Yes (158)'),
(494,'RuleCriteria',158,'0',20,'','2024-12-27 05:21:51',0,'',''),
(495,'RuleImportAsset',60,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Refuse import Assign Yes (60)'),
(496,'RuleAction',60,'0',20,'','2024-12-27 05:21:51',0,'',''),
(497,'RuleImportAsset',61,'0',20,'','2024-12-27 05:21:51',0,'',''),
(498,'RuleImportAsset',61,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Serial number exists Yes (159)'),
(499,'RuleCriteria',159,'0',20,'','2024-12-27 05:21:51',0,'',''),
(500,'RuleImportAsset',61,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Serial number is already present Yes (160)'),
(501,'RuleCriteria',160,'0',20,'','2024-12-27 05:21:51',0,'',''),
(502,'RuleImportAsset',61,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Inventory link Assign Link if possible (61)'),
(503,'RuleAction',61,'0',20,'','2024-12-27 05:21:51',0,'',''),
(504,'RuleImportAsset',62,'0',20,'','2024-12-27 05:21:51',0,'',''),
(505,'RuleImportAsset',62,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Network port &#62; MAC exists Yes (161)'),
(506,'RuleCriteria',161,'0',20,'','2024-12-27 05:21:51',0,'',''),
(507,'RuleImportAsset',62,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Network port &#62; MAC is already present Yes (162)'),
(508,'RuleCriteria',162,'0',20,'','2024-12-27 05:21:51',0,'',''),
(509,'RuleImportAsset',62,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Inventory link Assign Link if possible (62)'),
(510,'RuleAction',62,'0',20,'','2024-12-27 05:21:51',0,'',''),
(511,'RuleImportAsset',63,'0',20,'','2024-12-27 05:21:51',0,'',''),
(512,'RuleImportAsset',63,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Serial number exists Yes (163)'),
(513,'RuleCriteria',163,'0',20,'','2024-12-27 05:21:51',0,'',''),
(514,'RuleImportAsset',63,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Inventory link Assign Link if possible (63)'),
(515,'RuleAction',63,'0',20,'','2024-12-27 05:21:51',0,'',''),
(516,'RuleImportAsset',64,'0',20,'','2024-12-27 05:21:51',0,'',''),
(517,'RuleImportAsset',64,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Network port &#62; MAC exists Yes (164)'),
(518,'RuleCriteria',164,'0',20,'','2024-12-27 05:21:51',0,'',''),
(519,'RuleImportAsset',64,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Inventory link Assign Link if possible (64)'),
(520,'RuleAction',64,'0',20,'','2024-12-27 05:21:51',0,'',''),
(521,'RuleImportAsset',65,'0',20,'','2024-12-27 05:21:51',0,'',''),
(522,'RuleImportAsset',65,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Item type is No itemtype defined (165)'),
(523,'RuleCriteria',165,'0',20,'','2024-12-27 05:21:51',0,'',''),
(524,'RuleImportAsset',65,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Refuse import Assign Yes (65)'),
(525,'RuleAction',65,'0',20,'','2024-12-27 05:21:51',0,'',''),
(526,'RuleImportAsset',66,'0',20,'','2024-12-27 05:21:51',0,'',''),
(527,'RuleImportAsset',66,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Item type is Database instances (166)'),
(528,'RuleCriteria',166,'0',20,'','2024-12-27 05:21:51',0,'',''),
(529,'RuleImportAsset',66,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Name exists Yes (167)'),
(530,'RuleCriteria',167,'0',20,'','2024-12-27 05:21:51',0,'',''),
(531,'RuleImportAsset',66,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Name is already present Yes (168)'),
(532,'RuleCriteria',168,'0',20,'','2024-12-27 05:21:51',0,'',''),
(533,'RuleImportAsset',66,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Linked asset is already present Yes (169)'),
(534,'RuleCriteria',169,'0',20,'','2024-12-27 05:21:51',0,'',''),
(535,'RuleImportAsset',66,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Inventory link Assign Link if possible (66)'),
(536,'RuleAction',66,'0',20,'','2024-12-27 05:21:51',0,'',''),
(537,'RuleImportAsset',67,'0',20,'','2024-12-27 05:21:51',0,'',''),
(538,'RuleImportAsset',67,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Item type is Database instances (170)'),
(539,'RuleCriteria',170,'0',20,'','2024-12-27 05:21:51',0,'',''),
(540,'RuleImportAsset',67,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Name exists Yes (171)'),
(541,'RuleCriteria',171,'0',20,'','2024-12-27 05:21:51',0,'',''),
(542,'RuleImportAsset',67,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Inventory link Assign Link if possible (67)'),
(543,'RuleAction',67,'0',20,'','2024-12-27 05:21:51',0,'',''),
(544,'RuleImportAsset',68,'0',20,'','2024-12-27 05:21:51',0,'',''),
(545,'RuleImportAsset',68,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Item type is Database instances (172)'),
(546,'RuleCriteria',172,'0',20,'','2024-12-27 05:21:51',0,'',''),
(547,'RuleImportAsset',68,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Refuse import Assign Yes (68)'),
(548,'RuleAction',68,'0',20,'','2024-12-27 05:21:51',0,'',''),
(549,'RuleImportAsset',69,'0',20,'','2024-12-27 05:21:51',0,'',''),
(550,'RuleImportAsset',69,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Item type is Unmanaged assets (173)'),
(551,'RuleCriteria',173,'0',20,'','2024-12-27 05:21:51',0,'',''),
(552,'RuleImportAsset',69,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Name exists Yes (174)'),
(553,'RuleCriteria',174,'0',20,'','2024-12-27 05:21:51',0,'',''),
(554,'RuleImportAsset',69,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Name is already present Yes (175)'),
(555,'RuleCriteria',175,'0',20,'','2024-12-27 05:21:51',0,'',''),
(556,'RuleImportAsset',69,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Inventory link Assign Link if possible (69)'),
(557,'RuleAction',69,'0',20,'','2024-12-27 05:21:51',0,'',''),
(558,'RuleImportAsset',70,'0',20,'','2024-12-27 05:21:51',0,'',''),
(559,'RuleImportAsset',70,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Item type is Unmanaged assets (176)'),
(560,'RuleCriteria',176,'0',20,'','2024-12-27 05:21:51',0,'',''),
(561,'RuleImportAsset',70,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Name exists Yes (177)'),
(562,'RuleCriteria',177,'0',20,'','2024-12-27 05:21:51',0,'',''),
(563,'RuleImportAsset',70,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Inventory link Assign Link if possible (70)'),
(564,'RuleAction',70,'0',20,'','2024-12-27 05:21:51',0,'',''),
(565,'RuleImportAsset',71,'0',20,'','2024-12-27 05:21:51',0,'',''),
(566,'RuleImportAsset',71,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Asset &#62; Item type is Unmanaged assets (178)'),
(567,'RuleCriteria',178,'0',20,'','2024-12-27 05:21:51',0,'',''),
(568,'RuleImportAsset',71,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Refuse import Assign Yes (71)'),
(569,'RuleAction',71,'0',20,'','2024-12-27 05:21:51',0,'',''),
(570,'Config',1,'',0,'','2024-12-27 05:21:51',1,'initialized_rules_collections []','[\"RuleImportAssetCollection\"]'),
(571,'RuleMailCollector',72,'0',20,'','2024-12-27 05:21:51',0,'',''),
(572,'RuleMailCollector',72,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Subject email header regular expression matches /.*/ (179)'),
(573,'RuleCriteria',179,'0',20,'','2024-12-27 05:21:51',0,'',''),
(574,'RuleMailCollector',72,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Entity Assign Entidade raiz (72)'),
(575,'RuleAction',72,'0',20,'','2024-12-27 05:21:51',0,'',''),
(576,'RuleMailCollector',73,'0',20,'','2024-12-27 05:21:51',0,'',''),
(577,'RuleMailCollector',73,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','X-Auto-Response-Suppress email header regular expression matches /S+/ (180)'),
(578,'RuleCriteria',180,'0',20,'','2024-12-27 05:21:51',0,'',''),
(579,'RuleMailCollector',73,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Reject email (without email response) Assign Yes (73)'),
(580,'RuleAction',73,'0',20,'','2024-12-27 05:21:51',0,'',''),
(581,'RuleMailCollector',74,'0',20,'','2024-12-27 05:21:51',0,'',''),
(582,'RuleMailCollector',74,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Auto-Submitted email header regular expression matches /^(?!.*no).+$/i (181)'),
(583,'RuleCriteria',181,'0',20,'','2024-12-27 05:21:51',0,'',''),
(584,'RuleMailCollector',74,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Reject email (without email response) Assign Yes (74)'),
(585,'RuleAction',74,'0',20,'','2024-12-27 05:21:51',0,'',''),
(586,'Config',1,'',0,'','2024-12-27 05:21:51',1,'initialized_rules_collections [\"RuleImportAssetCollection\"]','[\"RuleImportAssetCollection\",\"RuleMailCollectorCollection\"]'),
(587,'RuleRight',75,'0',20,'','2024-12-27 05:21:51',0,'',''),
(588,'RuleRight',75,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Authentication type is LDAP directory: (182)'),
(589,'RuleCriteria',182,'0',20,'','2024-12-27 05:21:51',0,'',''),
(590,'RuleRight',75,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Authentication type is Email server: (183)'),
(591,'RuleCriteria',183,'0',20,'','2024-12-27 05:21:51',0,'',''),
(592,'RuleRight',75,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Entity Assign Entidade raiz (75)'),
(593,'RuleAction',75,'0',20,'','2024-12-27 05:21:51',0,'',''),
(594,'Config',1,'',0,'','2024-12-27 05:21:51',1,'initialized_rules_collections [\"RuleImportAssetCollection\",\"RuleMailCollectorCollection\"]','[\"RuleImportAssetCollection\",\"RuleMailCollectorCollection\",\"RuleRightCollection\"]'),
(595,'RuleSoftwareCategory',76,'0',20,'','2024-12-27 05:21:51',0,'',''),
(596,'RuleSoftwareCategory',76,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Software is * (184)'),
(597,'RuleCriteria',184,'0',20,'','2024-12-27 05:21:51',0,'',''),
(598,'RuleSoftwareCategory',76,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Import category from inventory tool Assign Yes (76)'),
(599,'RuleAction',76,'0',20,'','2024-12-27 05:21:51',0,'',''),
(600,'Config',1,'',0,'','2024-12-27 05:21:51',1,'initialized_rules_collections [\"RuleImportAssetCollection\",\"RuleMailCollectorCollection\",\"RuleRightCollection\"]','[\"RuleImportAssetCollection\",\"RuleMailCollectorCollection\",\"RuleRightCollection\",\"RuleSoftwareCategoryCollection\"]'),
(601,'RuleTicket',77,'0',20,'','2024-12-27 05:21:51',0,'',''),
(602,'RuleTicket',77,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Ticket location does not exist Yes (185)'),
(603,'RuleCriteria',185,'0',20,'','2024-12-27 05:21:51',0,'',''),
(604,'RuleTicket',77,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Item location exists Yes (186)'),
(605,'RuleCriteria',186,'0',20,'','2024-12-27 05:21:51',0,'',''),
(606,'RuleTicket',77,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Location Copy from item Yes (77)'),
(607,'RuleAction',77,'0',20,'','2024-12-27 05:21:51',0,'',''),
(608,'RuleTicket',78,'0',20,'','2024-12-27 05:21:51',0,'',''),
(609,'RuleTicket',78,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Ticket location does not exist Yes (187)'),
(610,'RuleCriteria',187,'0',20,'','2024-12-27 05:21:51',0,'',''),
(611,'RuleTicket',78,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Requester location exists Yes (188)'),
(612,'RuleCriteria',188,'0',20,'','2024-12-27 05:21:51',0,'',''),
(613,'RuleTicket',78,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Location Copy from user Yes (78)'),
(614,'RuleAction',78,'0',20,'','2024-12-27 05:21:51',0,'',''),
(615,'Config',1,'',0,'','2024-12-27 05:21:51',1,'initialized_rules_collections [\"RuleImportAssetCollection\",\"RuleMailCollectorCollection\",\"RuleRightCollection\",\"RuleSoftwareCategoryCollection\"]','[\"RuleImportAssetCollection\",\"RuleMailCollectorCollection\",\"RuleRightCollection\",\"RuleSoftwareCategoryCollection\",\"RuleTicketCollection\"]'),
(616,'RuleAsset',79,'0',20,'','2024-12-27 05:21:51',0,'',''),
(617,'RuleAsset',79,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Item type is Computer (189)'),
(618,'RuleCriteria',189,'0',20,'','2024-12-27 05:21:51',0,'',''),
(619,'RuleAsset',79,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Automatic inventory is Yes (190)'),
(620,'RuleCriteria',190,'0',20,'','2024-12-27 05:21:51',0,'',''),
(621,'RuleAsset',79,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Alternate username regular expression matches /(.*)@/ (191)'),
(622,'RuleCriteria',191,'0',20,'','2024-12-27 05:21:51',0,'',''),
(623,'RuleAsset',79,'RuleAction',17,'','2024-12-27 05:21:51',0,'','User based contact information Assign the value from regular expression #0 (79)'),
(624,'RuleAction',79,'0',20,'','2024-12-27 05:21:51',0,'',''),
(625,'RuleAsset',80,'0',20,'','2024-12-27 05:21:51',0,'',''),
(626,'RuleAsset',80,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Item type is Computer (192)'),
(627,'RuleCriteria',192,'0',20,'','2024-12-27 05:21:51',0,'',''),
(628,'RuleAsset',80,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Automatic inventory is Yes (193)'),
(629,'RuleCriteria',193,'0',20,'','2024-12-27 05:21:51',0,'',''),
(630,'RuleAsset',80,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Alternate username regular expression matches /(.*)[,|/]/ (194)'),
(631,'RuleCriteria',194,'0',20,'','2024-12-27 05:21:51',0,'',''),
(632,'RuleAsset',80,'RuleAction',17,'','2024-12-27 05:21:51',0,'','User based contact information Assign the value from regular expression #0 (80)'),
(633,'RuleAction',80,'0',20,'','2024-12-27 05:21:51',0,'',''),
(634,'RuleAsset',81,'0',20,'','2024-12-27 05:21:51',0,'',''),
(635,'RuleAsset',81,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Item type is Computer (195)'),
(636,'RuleCriteria',195,'0',20,'','2024-12-27 05:21:51',0,'',''),
(637,'RuleAsset',81,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Automatic inventory is Yes (196)'),
(638,'RuleCriteria',196,'0',20,'','2024-12-27 05:21:51',0,'',''),
(639,'RuleAsset',81,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Alternate username regular expression matches /(.*)/ (197)'),
(640,'RuleCriteria',197,'0',20,'','2024-12-27 05:21:51',0,'',''),
(641,'RuleAsset',81,'RuleAction',17,'','2024-12-27 05:21:51',0,'','User based contact information Assign the value from regular expression #0 (81)'),
(642,'RuleAction',81,'0',20,'','2024-12-27 05:21:51',0,'',''),
(643,'Config',1,'',0,'','2024-12-27 05:21:51',1,'initialized_rules_collections [\"RuleImportAssetCollection\",\"RuleMailCollectorCollection\",\"RuleRightCollection\",\"RuleSoftwareCategoryCollection\",\"RuleTicketCollection\"]','[\"RuleImportAssetCollection\",\"RuleMailCollectorCollection\",\"RuleRightCollection\",\"RuleSoftwareCategoryCollection\",\"RuleTicketCollection\",\"RuleAssetCollection\"]'),
(644,'RuleDictionnaryOperatingSystem',82,'0',20,'','2024-12-27 05:21:51',0,'',''),
(645,'RuleDictionnaryOperatingSystem',82,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Unavailable regular expression matches /(SUSE|SunOS|Red Hat|CentOS|Ubuntu|Debian|Fedora|AlmaLinux|Oracle|Amazon Linux)(?:D+|)([d.]*) ?(?:(?([w ]+))?)?/ (198)'),
(646,'RuleCriteria',198,'0',20,'','2024-12-27 05:21:51',0,'',''),
(647,'RuleDictionnaryOperatingSystem',82,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Operating system Add the result of regular expression #0 (82)'),
(648,'RuleAction',82,'0',20,'','2024-12-27 05:21:51',0,'',''),
(649,'RuleDictionnaryOperatingSystem',83,'0',20,'','2024-12-27 05:21:51',0,'',''),
(650,'RuleDictionnaryOperatingSystem',83,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Unavailable regular expression matches /(Microsoft)(?&#62;(R)|®)? (Windows) (XP|d.d|d{1,4}|Vista)(™)? ?(.*)/ (199)'),
(651,'RuleCriteria',199,'0',20,'','2024-12-27 05:21:51',0,'',''),
(652,'RuleDictionnaryOperatingSystem',83,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Operating system Add the result of regular expression #1 (83)'),
(653,'RuleAction',83,'0',20,'','2024-12-27 05:21:51',0,'',''),
(654,'RuleDictionnaryOperatingSystem',84,'0',20,'','2024-12-27 05:21:51',0,'',''),
(655,'RuleDictionnaryOperatingSystem',84,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Unavailable regular expression matches /(Microsoft)(?&#62;(R)|®)? (?:(Hyper-V|Windows)(?:(R))?) ((?:Server|))(?:(R)|®)? (d{4}(?: R2)?)(?:[,s]++)?([^s]*)(?: Edition(?: x64)?)?$/ (20'),
(656,'RuleCriteria',200,'0',20,'','2024-12-27 05:21:51',0,'',''),
(657,'RuleDictionnaryOperatingSystem',84,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Operating system Add the result of regular expression #1 #2 (84)'),
(658,'RuleAction',84,'0',20,'','2024-12-27 05:21:51',0,'',''),
(659,'Config',1,'',0,'','2024-12-27 05:21:51',1,'initialized_rules_collections [\"RuleImportAssetCollection\",\"RuleMailCollectorCollection\",\"RuleRightCollection\",\"RuleSoftwareCategoryCollection\",\"RuleTicketCollection\",\"RuleAssetCol','[\"RuleImportAssetCollection\",\"RuleMailCollectorCollection\",\"RuleRightCollection\",\"RuleSoftwareCategoryCollection\",\"RuleTicketCollection\",\"RuleAssetCollection\",\"RuleDictionnaryOpera'),
(660,'RuleDictionnaryOperatingSystemVersion',85,'0',20,'','2024-12-27 05:21:51',0,'',''),
(661,'RuleDictionnaryOperatingSystemVersion',85,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Operating system regular expression matches /(SUSE|SunOS|Red Hat|CentOS|Ubuntu|Debian|Fedora|AlmaLinux|Oracle)(?:D+|)([d.]+) ?(?:(?([w ]+))?)?/ (201)'),
(662,'RuleCriteria',201,'0',20,'','2024-12-27 05:21:51',0,'',''),
(663,'RuleDictionnaryOperatingSystemVersion',85,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Version Add the result of regular expression #1 (85)'),
(664,'RuleAction',85,'0',20,'','2024-12-27 05:21:51',0,'',''),
(665,'RuleDictionnaryOperatingSystemVersion',86,'0',20,'','2024-12-27 05:21:51',0,'',''),
(666,'RuleDictionnaryOperatingSystemVersion',86,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Operating system regular expression matches /(Microsoft)(?&#62;(R)|®)? (Windows) (XP|d.d|d{1,4}|Vista)(™)? ?(.*)/ (202)'),
(667,'RuleCriteria',202,'0',20,'','2024-12-27 05:21:51',0,'',''),
(668,'RuleDictionnaryOperatingSystemVersion',86,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Version Add the result of regular expression #2 (86)'),
(669,'RuleAction',86,'0',20,'','2024-12-27 05:21:51',0,'',''),
(670,'RuleDictionnaryOperatingSystemVersion',87,'0',20,'','2024-12-27 05:21:51',0,'',''),
(671,'RuleDictionnaryOperatingSystemVersion',87,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Operating system regular expression matches /(Microsoft)(?&#62;(R)|®)? (?:(Hyper-V|Windows)(?:(R))?) ((?:Server|))(?:(R)|®)? (d{4}(?: R2)?)(?:[,s]++)?([^s]*)(?: Edition(?: x64)?)?$'),
(672,'RuleCriteria',203,'0',20,'','2024-12-27 05:21:51',0,'',''),
(673,'RuleDictionnaryOperatingSystemVersion',87,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Version Add the result of regular expression #3 (87)'),
(674,'RuleAction',87,'0',20,'','2024-12-27 05:21:51',0,'',''),
(675,'Config',1,'',0,'','2024-12-27 05:21:51',1,'initialized_rules_collections [\"RuleImportAssetCollection\",\"RuleMailCollectorCollection\",\"RuleRightCollection\",\"RuleSoftwareCategoryCollection\",\"RuleTicketCollection\",\"RuleAssetCol','[\"RuleImportAssetCollection\",\"RuleMailCollectorCollection\",\"RuleRightCollection\",\"RuleSoftwareCategoryCollection\",\"RuleTicketCollection\",\"RuleAssetCollection\",\"RuleDictionnaryOpera'),
(676,'RuleDictionnaryOperatingSystemEdition',88,'0',20,'','2024-12-27 05:21:51',0,'',''),
(677,'RuleDictionnaryOperatingSystemEdition',88,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Operating system regular expression matches /(SUSE|SunOS|Red Hat|CentOS|Ubuntu|Debian|Fedora|AlmaLinux|Oracle)(?:D+|)([d.]+) ?(?:(?([w ]+))?)?/ (204)'),
(678,'RuleCriteria',204,'0',20,'','2024-12-27 05:21:51',0,'',''),
(679,'RuleDictionnaryOperatingSystemEdition',88,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Edition Add the result of regular expression #2 (88)'),
(680,'RuleAction',88,'0',20,'','2024-12-27 05:21:51',0,'',''),
(681,'RuleDictionnaryOperatingSystemEdition',89,'0',20,'','2024-12-27 05:21:51',0,'',''),
(682,'RuleDictionnaryOperatingSystemEdition',89,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Operating system regular expression matches /(Microsoft)(?&#62;(R)|®)? (Windows) (XP|d.d|d{1,4}|Vista)(™)? ?(.*)/ (205)'),
(683,'RuleCriteria',205,'0',20,'','2024-12-27 05:21:51',0,'',''),
(684,'RuleDictionnaryOperatingSystemEdition',89,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Edition Add the result of regular expression #4 (89)'),
(685,'RuleAction',89,'0',20,'','2024-12-27 05:21:51',0,'',''),
(686,'RuleDictionnaryOperatingSystemEdition',90,'0',20,'','2024-12-27 05:21:51',0,'',''),
(687,'RuleDictionnaryOperatingSystemEdition',90,'RuleCriteria',17,'','2024-12-27 05:21:51',0,'','Operating system regular expression matches /(Microsoft)(?&#62;(R)|®)? (?:(Hyper-V|Windows)(?:(R))?) ((?:Server|))(?:(R)|®)? (d{4}(?: R2)?)(?:[,s]++)?([^s]*)(?: Edition(?: x64)?)?$'),
(688,'RuleCriteria',206,'0',20,'','2024-12-27 05:21:51',0,'',''),
(689,'RuleDictionnaryOperatingSystemEdition',90,'RuleAction',17,'','2024-12-27 05:21:51',0,'','Edition Add the result of regular expression #4 (90)'),
(690,'RuleAction',90,'0',20,'','2024-12-27 05:21:51',0,'',''),
(691,'Config',1,'',0,'','2024-12-27 05:21:51',1,'initialized_rules_collections [\"RuleImportAssetCollection\",\"RuleMailCollectorCollection\",\"RuleRightCollection\",\"RuleSoftwareCategoryCollection\",\"RuleTicketCollection\",\"RuleAssetCol','{...}'),
(692,'Config',1,'',0,'','2024-12-27 05:21:51',1,'language en_GB','pt_BR'),
(693,'Config',1,'',0,'','2024-12-27 05:21:51',1,'version FILLED AT INSTALL','10.0.17'),
(694,'Config',1,'',0,'','2024-12-27 05:21:51',1,'dbversion FILLED AT INSTALL','10.0.17@bde16719fbd4112f59a9a7d34c66c959bce73434'),
(695,'User',7,'UserEmail',17,'glpi (2)','2024-12-27 05:47:33',0,'','p.victordsouza@gmail.com (1)'),
(696,'UserEmail',1,'0',20,'glpi (2)','2024-12-27 05:47:33',0,'',''),
(697,'User',7,'Profile',17,'glpi (2)','2024-12-27 05:47:33',0,'','Entidade raiz (0), Super-Admin (4)(R)'),
(698,'Profile',4,'User',17,'glpi (2)','2024-12-27 05:47:33',0,'','Souza Paulo Victor (7), Entidade raiz (0)(R)'),
(699,'Entity',0,'User',17,'glpi (2)','2024-12-27 05:47:33',0,'','Souza Paulo Victor (7), Super-Admin (4)(R)'),
(700,'User',7,'0',20,'glpi (2)','2024-12-27 05:47:33',0,'',''),
(705,'Config',1,'',0,'Souza Paulo Victor (7)','2024-12-27 05:56:38',1,'date_format 0','1'),
(706,'Config',1,'',0,'Souza Paulo Victor (7)','2024-12-27 05:56:38',1,'names_format 0','1'),
(707,'Config',1,'',0,'Souza Paulo Victor (7)','2024-12-27 05:56:38',1,'timezone ','0'),
(708,'User',8,'Profile',17,'Souza Paulo Victor (7)','2024-12-27 13:18:42',0,'','Entidade raiz (0), Super-Admin (4)(R)'),
(709,'Profile',4,'User',17,'Souza Paulo Victor (7)','2024-12-27 13:18:42',0,'','Alex Cruz (8), Entidade raiz (0)(R)'),
(710,'Entity',0,'User',17,'Souza Paulo Victor (7)','2024-12-27 13:18:42',0,'','Alex Cruz (8), Super-Admin (4)(R)'),
(711,'User',8,'0',20,'Souza Paulo Victor (7)','2024-12-27 13:18:42',0,'',''),
(712,'Manufacturer',1,'0',20,'Cruz Alex (8)','2024-12-27 14:00:32',0,'',''),
(713,'ComputerType',1,'0',20,'Cruz Alex (8)','2024-12-27 14:00:49',0,'',''),
(714,'ComputerType',2,'0',20,'Cruz Alex (8)','2024-12-27 14:00:55',0,'',''),
(715,'ComputerType',3,'0',20,'Cruz Alex (8)','2024-12-27 14:01:01',0,'',''),
(717,'User',9,'Profile',17,'Souza Paulo Victor (7)','2024-12-27 19:44:47',0,'','Entidade raiz > Tecnomulti (1), Self-Service (1)'),
(718,'Profile',1,'User',17,'Souza Paulo Victor (7)','2024-12-27 19:44:47',0,'','Teste Cliente (9), Entidade raiz > Tecnomulti (1)'),
(720,'User',9,'0',20,'Souza Paulo Victor (7)','2024-12-27 19:44:47',0,'',''),
(745,'Config',1,'',0,'Souza Paulo Victor (7)','2024-12-27 20:02:51',1,'use_notifications 0','1'),
(746,'Config',1,'',0,'Souza Paulo Victor (7)','2024-12-27 20:02:57',1,'use_notifications 1','0'),
(761,'Ticket',1,'',0,'Cruz Alex (8)','2024-12-27 20:20:39',21,'&#60;p&#62;estou sem acessar o wifi, preciso urgente que arrume&#60;a href=\"/front/document.send.php?docid=1&#38;itemtype=Ticket&#38;items_id=1\" target=\"_blank\" &#62;&#60;img alt=\"','&#60;p&#62;estou sem acessar o wifi, preciso urgente que arrume&#60;a href=\\\"/front/document.send.php?docid=1&#38;itemtype=Ticket&#38;items_id=1\\\" target=\\\"_blank\\\" &#62;&#60;p&#62'),
(764,'Config',1,'',0,'Souza Paulo Victor (7)','2024-12-27 20:22:40',1,'use_notifications 0','1'),
(765,'Config',1,'',0,'Souza Paulo Victor (7)','2024-12-27 20:22:42',1,'notifications_ajax 0','1'),
(766,'Config',1,'',0,'Souza Paulo Victor (7)','2024-12-27 20:22:57',1,'notifications_ajax_sound ','sound_a'),
(767,'PlanningExternalEvent',1,'PlanningRecall',17,'Cruz Alex (8)','2024-12-27 20:24:14',0,'','N/A (1)'),
(768,'PlanningExternalEvent',1,'0',20,'Cruz Alex (8)','2024-12-27 20:24:14',0,'',''),
(773,'Config',1,'',0,'Souza Paulo Victor (7)','2024-12-27 20:30:12',1,'planning_begin 08:00:00','08:00'),
(774,'Config',1,'',0,'Souza Paulo Victor (7)','2024-12-27 20:30:12',1,'planning_end 20:00:00','20:00'),
(775,'Config',1,'',0,'Souza Paulo Victor (7)','2024-12-27 20:30:12',1,'planning_work_days [0,1,2,3,4,5,6]','[1,2,3,4,5]'),
(776,'Config',1,'',0,'Souza Paulo Victor (7)','2024-12-27 20:30:12',1,'_matrix ','1'),
(777,'Config',1,'',0,'Souza Paulo Victor (7)','2024-12-27 20:30:12',1,'_impact_5 ','1'),
(778,'Config',1,'',0,'Souza Paulo Victor (7)','2024-12-27 20:30:12',1,'_impact_4 ','1'),
(779,'Config',1,'',0,'Souza Paulo Victor (7)','2024-12-27 20:30:12',1,'_impact_3 ','1'),
(780,'Config',1,'',0,'Souza Paulo Victor (7)','2024-12-27 20:30:12',1,'_impact_2 ','1'),
(781,'Config',1,'',0,'Souza Paulo Victor (7)','2024-12-27 20:30:12',1,'_impact_1 ','1'),
(782,'Config',1,'',0,'Souza Paulo Victor (7)','2024-12-27 20:30:12',1,'_urgency_5 ','1'),
(783,'Config',1,'',0,'Souza Paulo Victor (7)','2024-12-27 20:30:12',1,'_matrix_5_5 ','5'),
(784,'Config',1,'',0,'Souza Paulo Victor (7)','2024-12-27 20:30:12',1,'_matrix_5_4 ','5'),
(785,'Config',1,'',0,'Souza Paulo Victor (7)','2024-12-27 20:30:12',1,'_matrix_5_3 ','4'),
(786,'Config',1,'',0,'Souza Paulo Victor (7)','2024-12-27 20:30:12',1,'_matrix_5_2 ','3'),
(787,'Config',1,'',0,'Souza Paulo Victor (7)','2024-12-27 20:30:12',1,'_matrix_5_1 ','2'),
(788,'Config',1,'',0,'Souza Paulo Victor (7)','2024-12-27 20:30:12',1,'_urgency_4 ','1'),
(789,'Config',1,'',0,'Souza Paulo Victor (7)','2024-12-27 20:30:12',1,'_matrix_4_5 ','5'),
(790,'Config',1,'',0,'Souza Paulo Victor (7)','2024-12-27 20:30:12',1,'_matrix_4_4 ','4'),
(791,'Config',1,'',0,'Souza Paulo Victor (7)','2024-12-27 20:30:12',1,'_matrix_4_3 ','4'),
(792,'Config',1,'',0,'Souza Paulo Victor (7)','2024-12-27 20:30:12',1,'_matrix_4_2 ','3'),
(793,'Config',1,'',0,'Souza Paulo Victor (7)','2024-12-27 20:30:12',1,'_matrix_4_1 ','2'),
(794,'Config',1,'',0,'Souza Paulo Victor (7)','2024-12-27 20:30:12',1,'_urgency_3 ','1'),
(795,'Config',1,'',0,'Souza Paulo Victor (7)','2024-12-27 20:30:12',1,'_matrix_3_5 ','4'),
(796,'Config',1,'',0,'Souza Paulo Victor (7)','2024-12-27 20:30:12',1,'_matrix_3_4 ','4'),
(797,'Config',1,'',0,'Souza Paulo Victor (7)','2024-12-27 20:30:12',1,'_matrix_3_3 ','3'),
(798,'Config',1,'',0,'Souza Paulo Victor (7)','2024-12-27 20:30:12',1,'_matrix_3_2 ','2'),
(799,'Config',1,'',0,'Souza Paulo Victor (7)','2024-12-27 20:30:12',1,'_matrix_3_1 ','2'),
(800,'Config',1,'',0,'Souza Paulo Victor (7)','2024-12-27 20:30:12',1,'_urgency_2 ','1'),
(801,'Config',1,'',0,'Souza Paulo Victor (7)','2024-12-27 20:30:12',1,'_matrix_2_5 ','3'),
(802,'Config',1,'',0,'Souza Paulo Victor (7)','2024-12-27 20:30:12',1,'_matrix_2_4 ','3'),
(803,'Config',1,'',0,'Souza Paulo Victor (7)','2024-12-27 20:30:12',1,'_matrix_2_3 ','2'),
(804,'Config',1,'',0,'Souza Paulo Victor (7)','2024-12-27 20:30:12',1,'_matrix_2_2 ','2'),
(805,'Config',1,'',0,'Souza Paulo Victor (7)','2024-12-27 20:30:12',1,'_matrix_2_1 ','1'),
(806,'Config',1,'',0,'Souza Paulo Victor (7)','2024-12-27 20:30:12',1,'_urgency_1 ','1'),
(807,'Config',1,'',0,'Souza Paulo Victor (7)','2024-12-27 20:30:12',1,'_matrix_1_5 ','2'),
(808,'Config',1,'',0,'Souza Paulo Victor (7)','2024-12-27 20:30:12',1,'_matrix_1_4 ','2'),
(809,'Config',1,'',0,'Souza Paulo Victor (7)','2024-12-27 20:30:12',1,'_matrix_1_3 ','2'),
(810,'Config',1,'',0,'Souza Paulo Victor (7)','2024-12-27 20:30:12',1,'_matrix_1_2 ','1'),
(811,'Config',1,'',0,'Souza Paulo Victor (7)','2024-12-27 20:30:12',1,'_matrix_1_1 ','1'),
(812,'Config',1,'',0,'Souza Paulo Victor (7)','2024-12-27 20:30:12',1,'priority_matrix {\"1\":{\"1\":1,\"2\":1,\"3\":2,\"4\":2,\"5\":2},\"2\":{\"1\":1,\"2\":2,\"3\":2,\"4\":3,\"5\":3},\"3\":{\"1\":2,\"2\":2,\"3\":3,\"4\":4,\"5\":4},\"4\":{\"1\":2,\"2\":3,\"3\":4,\"4\":4,\"5\":5},\"5\":{\"1\":2,\"2\":3,\"3','{\"1\":{\"1\":\"1\",\"2\":\"1\",\"3\":\"2\",\"4\":\"2\",\"5\":\"2\"},\"2\":{\"1\":\"1\",\"2\":\"2\",\"3\":\"2\",\"4\":\"3\",\"5\":\"3\"},\"3\":{\"1\":\"2\",\"2\":\"2\",\"3\":\"3\",\"4\":\"4\",\"5\":\"4\"},\"4\":{\"1\":\"2\",\"2\":\"3\",\"3\":\"4\",\"'),
(813,'TicketTemplate',1,'TicketTemplateHiddenField',17,'Souza Paulo Victor (7)','2024-12-27 20:33:38',0,'','Urgência (1)'),
(814,'TicketTemplateHiddenField',1,'0',20,'Souza Paulo Victor (7)','2024-12-27 20:33:38',0,'',''),
(815,'TicketTemplate',1,'TicketTemplateHiddenField',17,'Souza Paulo Victor (7)','2024-12-27 20:34:03',0,'','Observador (2)'),
(816,'TicketTemplateHiddenField',2,'0',20,'Souza Paulo Victor (7)','2024-12-27 20:34:03',0,'',''),
(817,'TicketTemplate',1,'TicketTemplateHiddenField',17,'Souza Paulo Victor (7)','2024-12-27 20:34:28',0,'','Grupo observador (3)'),
(819,'ITILCategory',1,'0',20,'Souza Paulo Victor (7)','2024-12-27 20:36:12',0,'',''),
(820,'ITILCategory',1,'',0,'Souza Paulo Victor (7)','2024-12-27 20:36:33',86,'1','0'),
(821,'ITILCategory',1,'',0,'Souza Paulo Victor (7)','2024-12-27 20:36:44',86,'0','1'),
(822,'ITILCategory',2,'0',20,'Souza Paulo Victor (7)','2024-12-27 20:38:40',0,'',''),
(823,'ITILCategory',2,'',0,'Souza Paulo Victor (7)','2024-12-27 20:38:54',14,'Rede','Rede/Internet'),
(824,'ITILCategory',2,'',0,'Souza Paulo Victor (7)','2024-12-27 20:38:54',1,'Rede','Rede/Internet'),
(825,'ITILCategory',3,'0',20,'Souza Paulo Victor (7)','2024-12-27 20:39:47',0,'',''),
(826,'ITILCategory',3,'',0,'Souza Paulo Victor (7)','2024-12-27 20:39:59',86,'0','1'),
(827,'ITILCategory',2,'',0,'Souza Paulo Victor (7)','2024-12-27 20:40:08',86,'0','1'),
(830,'TicketTemplate',1,'TicketTemplateMandatoryField',17,'Souza Paulo Victor (7)','2024-12-27 20:46:00',0,'','Título (2)'),
(831,'TicketTemplateMandatoryField',2,'0',20,'Souza Paulo Victor (7)','2024-12-27 20:46:00',0,'',''),
(832,'TicketTemplate',1,'TicketTemplatePredefinedField',17,'Souza Paulo Victor (7)','2024-12-27 20:49:20',0,'','Tipo (1)'),
(834,'TicketTemplate',1,'TicketTemplatePredefinedField',19,'Souza Paulo Victor (7)','2024-12-27 20:49:47',0,'Tipo (1)',''),
(835,'TicketTemplate',1,'TicketTemplateMandatoryField',17,'Souza Paulo Victor (7)','2024-12-27 20:50:41',0,'','Categoria (3)'),
(836,'TicketTemplateMandatoryField',3,'0',20,'Souza Paulo Victor (7)','2024-12-27 20:50:41',0,'',''),
(842,'Entity',2,'0',20,'Souza Paulo Victor (7)','2024-12-27 21:14:54',0,'',''),
(843,'User',9,'Profile',19,'Souza Paulo Victor (7)','2024-12-27 21:15:06',0,'Entidade raiz > Tecnomulti (1), Self-Service (1)',''),
(844,'Profile',1,'User',19,'Souza Paulo Victor (7)','2024-12-27 21:15:06',0,'Teste Cliente (9), Entidade raiz > Tecnomulti (1)',''),
(885,'Entity',2,'',0,'Souza Paulo Victor (7)','2024-12-27 21:19:14',14,'Tecnomulti (cópia)','Tecnomulti'),
(886,'Entity',2,'',0,'Souza Paulo Victor (7)','2024-12-27 21:19:14',1,'Entidade raiz &#62; Tecnomulti (cópia)','Entidade raiz &#62; Tecnomulti'),
(887,'User',9,'',0,'Souza Paulo Victor (7)','2024-12-27 21:22:24',1,'teste-cliente','tecnomulti'),
(888,'User',9,'',0,'Souza Paulo Victor (7)','2024-12-27 21:22:24',34,'Cliente',''),
(889,'User',9,'',0,'Souza Paulo Victor (7)','2024-12-27 21:22:24',9,'Teste','Tecnomulti'),
(890,'User',9,'UserEmail',17,'Souza Paulo Victor (7)','2024-12-27 21:22:24',0,'','suporte@tecnomulti.com (2)'),
(891,'UserEmail',2,'0',20,'Souza Paulo Victor (7)','2024-12-27 21:22:24',0,'',''),
(892,'User',9,'Profile',17,'Souza Paulo Victor (7)','2024-12-27 21:22:58',0,'','Entidade raiz (0), Self-Service (1)'),
(893,'Profile',1,'User',17,'Souza Paulo Victor (7)','2024-12-27 21:22:58',0,'','tecnomulti (9), Entidade raiz (0)'),
(894,'Entity',0,'User',17,'Souza Paulo Victor (7)','2024-12-27 21:22:58',0,'','tecnomulti (9), Self-Service (1)'),
(895,'User',9,'',0,'Souza Paulo Victor (7)','2024-12-27 21:24:14',150,'','68/9_676f1afe2fe68.jpg'),
(904,'Document',2,'0',20,'tecnomulti (9)','2024-12-27 21:50:35',0,'',''),
(905,'Document',2,'ITILFollowup',15,'tecnomulti (9)','2024-12-27 21:50:35',0,'','Acompanhamento (5)'),
(912,'User',8,'Profile',17,'Souza Paulo Victor (7)','2025-01-03 01:21:09',0,'','Entidade raiz (0), Hotliner (5)(R)'),
(913,'Profile',5,'User',17,'Souza Paulo Victor (7)','2025-01-03 01:21:09',0,'','Alex Cruz (8), Entidade raiz (0)(R)'),
(914,'Entity',0,'User',17,'Souza Paulo Victor (7)','2025-01-03 01:21:09',0,'','Alex Cruz (8), Hotliner (5)(R)'),
(915,'Profile',5,'',0,'Souza Paulo Victor (7)','2025-01-03 01:33:28',1,'Hotliner','Wintech'),
(932,'User',9,'Profile',17,'Souza Paulo Victor (7)','2025-01-03 03:21:44',0,'','Entidade raiz > Tecnomulti (2), Self-Service (1)'),
(933,'Profile',1,'User',17,'Souza Paulo Victor (7)','2025-01-03 03:21:44',0,'','tecnomulti (9), Entidade raiz > Tecnomulti (2)'),
(934,'Entity',2,'User',17,'Souza Paulo Victor (7)','2025-01-03 03:21:44',0,'','tecnomulti (9), Self-Service (1)'),
(935,'User',9,'Profile',19,'Souza Paulo Victor (7)','2025-01-03 03:21:49',0,'Entidade raiz (0), Self-Service (1)',''),
(936,'Profile',1,'User',19,'Souza Paulo Victor (7)','2025-01-03 03:21:49',0,'tecnomulti (9), Entidade raiz (0)',''),
(937,'Entity',0,'User',19,'Souza Paulo Victor (7)','2025-01-03 03:21:49',0,'tecnomulti (9), Self-Service (1)',''),
(938,'User',7,'Profile',17,'Souza Paulo Victor (7)','2025-01-03 03:22:34',0,'','Entidade raiz (0), Super-Admin (4)(R)'),
(939,'Profile',4,'User',17,'Souza Paulo Victor (7)','2025-01-03 03:22:34',0,'','Paulo Victor Souza (7), Entidade raiz (0)(R)'),
(940,'Entity',0,'User',17,'Souza Paulo Victor (7)','2025-01-03 03:22:34',0,'','Paulo Victor Souza (7), Super-Admin (4)(R)'),
(943,'User',7,'Profile',19,'Souza Paulo Victor (7)','2025-01-03 03:23:39',0,'Entidade raiz (0), Super-Admin (4)(R)',''),
(944,'Profile',4,'User',19,'Souza Paulo Victor (7)','2025-01-03 03:23:39',0,'Paulo Victor Souza (7), Entidade raiz (0)(R)',''),
(945,'Entity',0,'User',19,'Souza Paulo Victor (7)','2025-01-03 03:23:39',0,'Paulo Victor Souza (7), Super-Admin (4)(R)',''),
(947,'TicketTemplate',1,'TicketTemplateMandatoryField',17,'Souza Paulo Victor (7)','2025-01-03 03:29:30',0,'','Requerente (4)'),
(949,'TicketTemplate',1,'TicketTemplateMandatoryField',19,'Souza Paulo Victor (7)','2025-01-03 03:29:41',0,'Requerente (4)',''),
(950,'TicketTemplate',1,'TicketTemplateMandatoryField',17,'Souza Paulo Victor (7)','2025-01-03 03:31:39',0,'','Requerente (5)'),
(952,'TicketTemplate',1,'TicketTemplateMandatoryField',19,'Souza Paulo Victor (7)','2025-01-03 03:31:57',0,'Requerente (5)',''),
(953,'TicketTemplate',1,'TicketTemplateMandatoryField',17,'Souza Paulo Victor (7)','2025-01-03 03:32:08',0,'','Observador (6)'),
(959,'TicketTemplate',1,'TicketTemplatePredefinedField',17,'Souza Paulo Victor (7)','2025-01-03 04:15:07',0,'','Descrição (2)'),
(960,'TicketTemplatePredefinedField',2,'0',20,'Souza Paulo Victor (7)','2025-01-03 04:15:07',0,'',''),
(961,'User',7,'Profile',17,'Souza Paulo Victor (7)','2025-01-03 04:16:34',0,'','Entidade raiz > Tecnomulti (2), Super-Admin (4)(R)'),
(962,'Profile',4,'User',17,'Souza Paulo Victor (7)','2025-01-03 04:16:34',0,'','Paulo Victor Souza (7), Entidade raiz > Tecnomulti (2)(R)'),
(963,'Entity',2,'User',17,'Souza Paulo Victor (7)','2025-01-03 04:16:34',0,'','Paulo Victor Souza (7), Super-Admin (4)(R)'),
(964,'User',7,'Profile',17,'Souza Paulo Victor (7)','2025-01-03 04:20:25',0,'','Entidade raiz (0), Super-Admin (4)(R)'),
(965,'Profile',4,'User',17,'Souza Paulo Victor (7)','2025-01-03 04:20:25',0,'','Paulo Victor Souza (7), Entidade raiz (0)(R)'),
(966,'Entity',0,'User',17,'Souza Paulo Victor (7)','2025-01-03 04:20:25',0,'','Paulo Victor Souza (7), Super-Admin (4)(R)'),
(967,'User',7,'Profile',19,'Souza Paulo Victor (7)','2025-01-03 04:20:34',0,'Entidade raiz (0), Super-Admin (4)(R)',''),
(968,'Profile',4,'User',19,'Souza Paulo Victor (7)','2025-01-03 04:20:34',0,'Paulo Victor Souza (7), Entidade raiz (0)(R)',''),
(969,'Entity',0,'User',19,'Souza Paulo Victor (7)','2025-01-03 04:20:34',0,'Paulo Victor Souza (7), Super-Admin (4)(R)',''),
(970,'User',7,'Profile',19,'Souza Paulo Victor (7)','2025-01-03 04:23:59',0,'Entidade raiz > Tecnomulti (2), Super-Admin (4)(R)',''),
(971,'Profile',4,'User',19,'Souza Paulo Victor (7)','2025-01-03 04:23:59',0,'Paulo Victor Souza (7), Entidade raiz > Tecnomulti (2)(R)',''),
(972,'Entity',2,'User',19,'Souza Paulo Victor (7)','2025-01-03 04:23:59',0,'Paulo Victor Souza (7), Super-Admin (4)(R)',''),
(973,'Config',1,'',0,'Souza Paulo Victor (7)','2025-01-03 16:19:11',1,'marketplace_replace_plugins ','2'),
(974,'User',8,'',0,'Cruz Alex (8)','2025-01-06 21:24:24',6,'','84998426881'),
(975,'User',8,'UserEmail',17,'Cruz Alex (8)','2025-01-06 21:24:24',0,'','alexcruzfab@hotmail.com (3)'),
(976,'UserEmail',3,'0',20,'Cruz Alex (8)','2025-01-06 21:24:24',0,'',''),
(979,'TicketTemplate',1,'TicketTemplateMandatoryField',19,'Souza Paulo Victor (7)','2025-01-06 21:46:34',0,'Observador (6)',''),
(988,'Config',1,'',0,'Souza Paulo Victor (7)','2025-01-06 22:00:16',1,'default_dashboard_central central','assistance'),
(989,'User',10,'Profile',17,'Souza Paulo Victor (7)','2025-01-06 22:05:37',0,'','Entidade raiz (0), Wintech (5)(R)'),
(990,'Profile',5,'User',17,'Souza Paulo Victor (7)','2025-01-06 22:05:37',0,'','Luan Medeiros (10), Entidade raiz (0)(R)'),
(991,'Entity',0,'User',17,'Souza Paulo Victor (7)','2025-01-06 22:05:37',0,'','Luan Medeiros (10), Wintech (5)(R)'),
(992,'User',10,'0',20,'Souza Paulo Victor (7)','2025-01-06 22:05:37',0,'',''),
(993,'Ticket',17,'User',15,'tecnomulti (9)','2025-01-07 13:39:34',4,'','tecnomulti (9)'),
(994,'Ticket',17,'0',20,'tecnomulti (9)','2025-01-07 13:39:34',0,'',''),
(995,'Ticket',17,'',0,'Cruz Alex (8)','2025-01-07 13:48:56',150,'0','562'),
(996,'Ticket',17,'',0,'Cruz Alex (8)','2025-01-07 13:48:56',64,'tecnomulti (9)','alexcruz (8)'),
(997,'Ticket',17,'ITILFollowup',17,'Cruz Alex (8)','2025-01-07 13:48:56',0,'','9'),
(998,'Ticket',17,'ITILFollowup',12,'Cruz Alex (8)','2025-01-07 13:48:56',0,'','Helpdesk (9)'),
(999,'Ticket',17,'',0,'Cruz Alex (8)','2025-01-07 13:49:27',12,'1','2'),
(1009,'Ticket',18,'User',15,'tecnomulti (9)','2025-01-07 13:56:33',4,'','tecnomulti (9)'),
(1010,'Ticket',18,'0',20,'tecnomulti (9)','2025-01-07 13:56:33',0,'',''),
(1011,'Ticket',18,'',0,'Cruz Alex (8)','2025-01-07 13:57:45',150,'0','72'),
(1012,'Ticket',18,'',0,'Cruz Alex (8)','2025-01-07 13:57:45',64,'tecnomulti (9)','alexcruz (8)'),
(1013,'Ticket',18,'ITILFollowup',17,'Cruz Alex (8)','2025-01-07 13:57:45',0,'','10'),
(1014,'Ticket',18,'ITILFollowup',12,'Cruz Alex (8)','2025-01-07 13:57:45',0,'','Helpdesk (10)'),
(1015,'Ticket',18,'',0,'Cruz Alex (8)','2025-01-07 13:58:07',12,'1','6'),
(1016,'Ticket',18,'',0,'Cruz Alex (8)','2025-01-07 13:58:07',16,'','2025-01-07 10:58:07'),
(1017,'Ticket',18,'',0,'Cruz Alex (8)','2025-01-07 13:58:07',17,'','2025-01-07 10:58:07'),
(1018,'Profile',5,'',0,'Souza Paulo Victor (7)','2025-01-07 15:21:15',162,'0','1'),
(1019,'Ticket',19,'User',15,'tecnomulti (9)','2025-01-08 09:38:38',4,'','tecnomulti (9)'),
(1020,'Ticket',19,'0',20,'tecnomulti (9)','2025-01-08 09:38:38',0,'',''),
(1021,'Document',3,'0',20,'Cruz Alex (8)','2025-01-08 12:22:46',0,'',''),
(1022,'Document',3,'ITILFollowup',15,'Cruz Alex (8)','2025-01-08 12:22:46',0,'','Helpdesk (11)'),
(1023,'Ticket',19,'',0,'Cruz Alex (8)','2025-01-08 12:22:46',150,'0','9848'),
(1024,'Ticket',19,'',0,'Cruz Alex (8)','2025-01-08 12:22:46',64,'tecnomulti (9)','alexcruz (8)'),
(1025,'Ticket',19,'ITILFollowup',17,'Cruz Alex (8)','2025-01-08 12:22:46',0,'','11'),
(1026,'Ticket',19,'ITILFollowup',12,'Cruz Alex (8)','2025-01-08 12:22:46',0,'','Helpdesk (11)'),
(1027,'Ticket',19,'',0,'Cruz Alex (8)','2025-01-08 12:22:58',12,'1','2'),
(1028,'Ticket',17,'',0,'Cruz Alex (8)','2025-01-08 12:28:46',12,'2','6'),
(1029,'Ticket',17,'',0,'Cruz Alex (8)','2025-01-08 12:28:46',16,'','2025-01-08 09:28:46'),
(1030,'Ticket',17,'',0,'Cruz Alex (8)','2025-01-08 12:28:46',17,'','2025-01-08 09:28:46'),
(1031,'Document',4,'0',20,'tecnomulti (9)','2025-01-08 13:21:24',0,'',''),
(1032,'Document',4,'Ticket',15,'tecnomulti (9)','2025-01-08 13:21:24',0,'','ERRO PARA ACESSAR O SAP (20)'),
(1033,'Ticket',20,'Document',15,'tecnomulti (9)','2025-01-08 13:21:24',0,'','Documento do Chamado 20 (4)'),
(1034,'Ticket',20,'User',15,'tecnomulti (9)','2025-01-08 13:21:24',4,'','tecnomulti (9)'),
(1035,'Ticket',20,'0',20,'tecnomulti (9)','2025-01-08 13:21:24',0,'',''),
(1036,'Ticket',20,'',0,'Cruz Alex (8)','2025-01-08 13:26:44',12,'1','2'),
(1037,'Ticket',20,'',0,'Cruz Alex (8)','2025-01-08 13:26:44',64,'tecnomulti (9)','alexcruz (8)'),
(1038,'Ticket',20,'ITILFollowup',17,'Cruz Alex (8)','2025-01-08 13:26:58',0,'','12'),
(1039,'Ticket',20,'ITILFollowup',12,'Cruz Alex (8)','2025-01-08 13:26:58',0,'','Helpdesk (12)'),
(1040,'Ticket',20,'ITILFollowup',17,'Cruz Alex (8)','2025-01-08 13:36:33',0,'','13'),
(1041,'Ticket',20,'ITILFollowup',12,'Cruz Alex (8)','2025-01-08 13:36:33',0,'','Helpdesk (13)'),
(1042,'Ticket',20,'',0,'Cruz Alex (8)','2025-01-08 13:36:39',12,'2','6'),
(1043,'Ticket',20,'',0,'Cruz Alex (8)','2025-01-08 13:36:39',16,'','2025-01-08 10:36:39'),
(1044,'Ticket',20,'',0,'Cruz Alex (8)','2025-01-08 13:36:39',17,'','2025-01-08 10:36:39'),
(1045,'ITILCategory',4,'0',20,'Cruz Alex (8)','2025-01-08 13:47:21',0,'',''),
(1046,'Ticket',21,'User',15,'tecnomulti (9)','2025-01-08 16:36:37',4,'','tecnomulti (9)'),
(1047,'Ticket',21,'0',20,'tecnomulti (9)','2025-01-08 16:36:37',0,'',''),
(1048,'Ticket',21,'',0,'Cruz Alex (8)','2025-01-08 20:03:48',14,'2','1'),
(1049,'Ticket',21,'',0,'Cruz Alex (8)','2025-01-08 20:03:48',12,'1','2'),
(1050,'Ticket',21,'',0,'Cruz Alex (8)','2025-01-08 20:03:48',64,'tecnomulti (9)','alexcruz (8)'),
(1051,'Ticket',21,'ITILFollowup',17,'Cruz Alex (8)','2025-01-08 20:04:08',0,'','14'),
(1052,'Ticket',21,'ITILFollowup',12,'Cruz Alex (8)','2025-01-08 20:04:08',0,'','Helpdesk (14)'),
(1053,'ITILCategory',5,'0',20,'Cruz Alex (8)','2025-01-08 20:05:13',0,'',''),
(1054,'Ticket',21,'',0,'Cruz Alex (8)','2025-01-08 20:06:12',7,'Rede/Internet (2)','Sistema Operacional/Programas (5)'),
(1055,'ITILCategory',4,'',0,'Cruz Alex (8)','2025-01-08 20:06:44',86,'0','1'),
(1056,'Ticket',19,'',0,'Cruz Alex (8)','2025-01-08 20:15:05',12,'2','5'),
(1057,'Ticket',19,'',0,'Cruz Alex (8)','2025-01-08 20:15:05',17,'','2025-01-08 17:15:05'),
(1058,'Document',5,'0',20,'Cruz Alex (8)','2025-01-08 20:42:42',0,'',''),
(1059,'Document',5,'ITILFollowup',15,'Cruz Alex (8)','2025-01-08 20:42:42',0,'','Helpdesk (15)'),
(1060,'Ticket',21,'ITILFollowup',17,'Cruz Alex (8)','2025-01-08 20:42:42',0,'','15'),
(1061,'Ticket',21,'ITILFollowup',12,'Cruz Alex (8)','2025-01-08 20:42:42',0,'','Helpdesk (15)'),
(1062,'Ticket',21,'',0,'Cruz Alex (8)','2025-01-08 20:42:50',12,'2','6'),
(1063,'Ticket',21,'',0,'Cruz Alex (8)','2025-01-08 20:42:50',16,'','2025-01-08 17:42:50'),
(1064,'Ticket',21,'',0,'Cruz Alex (8)','2025-01-08 20:42:50',17,'','2025-01-08 17:42:50'),
(1065,'Ticket',22,'User',15,'tecnomulti (9)','2025-01-09 17:57:23',4,'','tecnomulti (9)'),
(1066,'Ticket',22,'0',20,'tecnomulti (9)','2025-01-09 17:57:23',0,'',''),
(1067,'Document',6,'0',20,'tecnomulti (9)','2025-01-09 18:02:47',0,'',''),
(1068,'Document',6,'Ticket',15,'tecnomulti (9)','2025-01-09 18:02:47',0,'','Caixa de Email Lotada (23)'),
(1069,'Ticket',23,'Document',15,'tecnomulti (9)','2025-01-09 18:02:47',0,'','Documento do Chamado 23 (6)'),
(1070,'Ticket',23,'User',15,'tecnomulti (9)','2025-01-09 18:02:47',4,'','tecnomulti (9)'),
(1071,'Ticket',23,'0',20,'tecnomulti (9)','2025-01-09 18:02:47',0,'',''),
(1072,'Ticket',22,'',0,'Cruz Alex (8)','2025-01-09 23:59:55',12,'1','2'),
(1073,'Ticket',22,'',0,'Cruz Alex (8)','2025-01-09 23:59:55',64,'tecnomulti (9)','alexcruz (8)'),
(1074,'Ticket',22,'ITILFollowup',17,'Cruz Alex (8)','2025-01-10 00:00:28',0,'','16'),
(1075,'Ticket',22,'ITILFollowup',12,'Cruz Alex (8)','2025-01-10 00:00:28',0,'','Helpdesk (16)'),
(1076,'Ticket',22,'ITILFollowup',17,'Cruz Alex (8)','2025-01-10 00:55:32',0,'','17'),
(1077,'Ticket',22,'ITILFollowup',12,'Cruz Alex (8)','2025-01-10 00:55:32',0,'','Helpdesk (17)'),
(1078,'Ticket',22,'',0,'Cruz Alex (8)','2025-01-10 00:55:36',12,'2','6'),
(1079,'Ticket',22,'',0,'Cruz Alex (8)','2025-01-10 00:55:36',16,'','2025-01-09 21:55:36'),
(1080,'Ticket',22,'',0,'Cruz Alex (8)','2025-01-10 00:55:36',17,'','2025-01-09 21:55:36'),
(1081,'Ticket',19,'',0,'Cruz Alex (8)','2025-01-10 00:56:50',12,'5','6'),
(1082,'Ticket',19,'',0,'Cruz Alex (8)','2025-01-10 00:56:50',16,'','2025-01-09 21:56:50'),
(1083,'Ticket',23,'',0,'Cruz Alex (8)','2025-01-10 01:00:23',150,'0','25056'),
(1084,'Ticket',23,'',0,'Cruz Alex (8)','2025-01-10 01:00:23',64,'tecnomulti (9)','alexcruz (8)'),
(1085,'Ticket',23,'ITILFollowup',17,'Cruz Alex (8)','2025-01-10 01:00:23',0,'','18'),
(1086,'Ticket',23,'ITILFollowup',12,'Cruz Alex (8)','2025-01-10 01:00:23',0,'','Helpdesk (18)'),
(1087,'Ticket',23,'',0,'Cruz Alex (8)','2025-01-10 01:00:29',12,'1','4'),
(1088,'Ticket',23,'ITILFollowup',17,'tecnomulti (9)','2025-01-10 11:35:30',0,'','19'),
(1089,'Ticket',23,'',0,'tecnomulti (9)','2025-01-10 11:35:30',12,'4','1'),
(1090,'Ticket',23,'ITILFollowup',12,'tecnomulti (9)','2025-01-10 11:35:30',0,'','Acompanhamento (19)'),
(1091,'Ticket',24,'User',15,'tecnomulti (9)','2025-01-10 16:41:54',4,'','tecnomulti (9)'),
(1092,'Ticket',24,'0',20,'tecnomulti (9)','2025-01-10 16:41:54',0,'',''),
(1093,'Ticket',25,'User',15,'tecnomulti (9)','2025-01-10 16:45:39',4,'','tecnomulti (9)'),
(1094,'Ticket',25,'0',20,'tecnomulti (9)','2025-01-10 16:45:39',0,'',''),
(1095,'Ticket',26,'User',15,'tecnomulti (9)','2025-01-10 16:45:54',4,'','tecnomulti (9)'),
(1096,'Ticket',26,'0',20,'tecnomulti (9)','2025-01-10 16:45:54',0,'',''),
(1097,'Ticket',27,'User',15,'tecnomulti (9)','2025-01-10 16:46:13',4,'','tecnomulti (9)'),
(1098,'Ticket',27,'0',20,'tecnomulti (9)','2025-01-10 16:46:13',0,'',''),
(1099,'Ticket',23,'ITILFollowup',17,'Cruz Alex (8)','2025-01-10 20:54:27',0,'','20'),
(1100,'Ticket',23,'ITILFollowup',12,'Cruz Alex (8)','2025-01-10 20:54:27',0,'','Helpdesk (20)'),
(1101,'Ticket',23,'',0,'Cruz Alex (8)','2025-01-10 20:54:39',12,'1','2'),
(1102,'Config',1,'',0,'Souza Paulo Victor (7)','2025-01-10 21:18:06',1,'glpinetwork_registration_key ********','********'),
(1103,'Config',1,'',0,'Souza Paulo Victor (7)','2025-01-10 21:18:06',1,'glpi_network_uuid ','IklXoZMBVSFHAPUoLhOEjIZE3BIAScxSANE1woMi'),
(1104,'CronTask',44,'0',20,'Souza Paulo Victor (7)','2025-01-10 21:20:07',0,'',''),
(1105,'NotificationTemplate',29,'0',20,'Souza Paulo Victor (7)','2025-01-10 21:20:07',0,'',''),
(1106,'NotificationTemplate',29,'NotificationTemplateTranslation',17,'Souza Paulo Victor (7)','2025-01-10 21:20:07',0,'','Tradução padrão (29)'),
(1107,'NotificationTemplateTranslation',29,'0',20,'Souza Paulo Victor (7)','2025-01-10 21:20:07',0,'',''),
(1108,'Notification',73,'0',20,'Souza Paulo Victor (7)','2025-01-10 21:20:07',0,'',''),
(1109,'Notification',73,'NotificationTemplate',15,'Souza Paulo Victor (7)','2025-01-10 21:20:07',0,'','Formulário criado (29)'),
(1110,'NotificationTemplate',29,'Notification',15,'Souza Paulo Victor (7)','2025-01-10 21:20:07',0,'','Formulário criado (73)'),
(1111,'Notification',73,'NotificationTarget',17,'Souza Paulo Victor (7)','2025-01-10 21:20:07',0,'','N/A (141)'),
(1112,'NotificationTarget',141,'0',20,'Souza Paulo Victor (7)','2025-01-10 21:20:07',0,'',''),
(1113,'NotificationTemplate',30,'0',20,'Souza Paulo Victor (7)','2025-01-10 21:20:07',0,'',''),
(1114,'NotificationTemplate',30,'NotificationTemplateTranslation',17,'Souza Paulo Victor (7)','2025-01-10 21:20:07',0,'','Tradução padrão (30)'),
(1115,'NotificationTemplateTranslation',30,'0',20,'Souza Paulo Victor (7)','2025-01-10 21:20:07',0,'',''),
(1116,'Notification',74,'0',20,'Souza Paulo Victor (7)','2025-01-10 21:20:07',0,'',''),
(1117,'Notification',74,'NotificationTemplate',15,'Souza Paulo Victor (7)','2025-01-10 21:20:07',0,'','Um formulário precisa de validação (30)'),
(1118,'NotificationTemplate',30,'Notification',15,'Souza Paulo Victor (7)','2025-01-10 21:20:07',0,'','Um formulário precisa de validação (74)'),
(1119,'Notification',74,'NotificationTarget',17,'Souza Paulo Victor (7)','2025-01-10 21:20:07',0,'','N/A (142)'),
(1120,'NotificationTarget',142,'0',20,'Souza Paulo Victor (7)','2025-01-10 21:20:07',0,'',''),
(1121,'NotificationTemplate',31,'0',20,'Souza Paulo Victor (7)','2025-01-10 21:20:07',0,'',''),
(1122,'NotificationTemplate',31,'NotificationTemplateTranslation',17,'Souza Paulo Victor (7)','2025-01-10 21:20:07',0,'','Tradução padrão (31)'),
(1123,'NotificationTemplateTranslation',31,'0',20,'Souza Paulo Victor (7)','2025-01-10 21:20:07',0,'',''),
(1124,'Notification',75,'0',20,'Souza Paulo Victor (7)','2025-01-10 21:20:07',0,'',''),
(1125,'Notification',75,'NotificationTemplate',15,'Souza Paulo Victor (7)','2025-01-10 21:20:07',0,'','Formulário rejeitado (31)'),
(1126,'NotificationTemplate',31,'Notification',15,'Souza Paulo Victor (7)','2025-01-10 21:20:07',0,'','Formulário rejeitado (75)'),
(1127,'Notification',75,'NotificationTarget',17,'Souza Paulo Victor (7)','2025-01-10 21:20:07',0,'','N/A (143)'),
(1128,'NotificationTarget',143,'0',20,'Souza Paulo Victor (7)','2025-01-10 21:20:07',0,'',''),
(1129,'NotificationTemplate',32,'0',20,'Souza Paulo Victor (7)','2025-01-10 21:20:07',0,'',''),
(1130,'NotificationTemplate',32,'NotificationTemplateTranslation',17,'Souza Paulo Victor (7)','2025-01-10 21:20:07',0,'','Tradução padrão (32)'),
(1131,'NotificationTemplateTranslation',32,'0',20,'Souza Paulo Victor (7)','2025-01-10 21:20:07',0,'',''),
(1132,'Notification',76,'0',20,'Souza Paulo Victor (7)','2025-01-10 21:20:07',0,'',''),
(1133,'Notification',76,'NotificationTemplate',15,'Souza Paulo Victor (7)','2025-01-10 21:20:07',0,'','Formulário aceito (32)'),
(1134,'NotificationTemplate',32,'Notification',15,'Souza Paulo Victor (7)','2025-01-10 21:20:07',0,'','Formulário aceito (76)'),
(1135,'Notification',76,'NotificationTarget',17,'Souza Paulo Victor (7)','2025-01-10 21:20:07',0,'','N/A (144)'),
(1136,'NotificationTarget',144,'0',20,'Souza Paulo Victor (7)','2025-01-10 21:20:07',0,'',''),
(1137,'NotificationTemplate',33,'0',20,'Souza Paulo Victor (7)','2025-01-10 21:20:07',0,'',''),
(1138,'NotificationTemplate',33,'NotificationTemplateTranslation',17,'Souza Paulo Victor (7)','2025-01-10 21:20:07',0,'','Tradução padrão (33)'),
(1139,'NotificationTemplateTranslation',33,'0',20,'Souza Paulo Victor (7)','2025-01-10 21:20:07',0,'',''),
(1140,'Notification',77,'0',20,'Souza Paulo Victor (7)','2025-01-10 21:20:07',0,'',''),
(1141,'Notification',77,'NotificationTemplate',15,'Souza Paulo Victor (7)','2025-01-10 21:20:07',0,'','Formulário deletado (33)'),
(1142,'NotificationTemplate',33,'Notification',15,'Souza Paulo Victor (7)','2025-01-10 21:20:07',0,'','Formulário deletado (77)'),
(1143,'Notification',77,'NotificationTarget',17,'Souza Paulo Victor (7)','2025-01-10 21:20:07',0,'','N/A (145)'),
(1144,'NotificationTarget',145,'0',20,'Souza Paulo Victor (7)','2025-01-10 21:20:07',0,'',''),
(1145,'Config',1,'',0,'Souza Paulo Victor (7)','2025-01-10 21:20:07',1,'schema_version (formcreator) ','2.13'),
(1146,'PluginFormcreatorForm',1,'0',20,'Souza Paulo Victor (7)','2025-01-10 21:37:19',0,'',''),
(1147,'Ticket',24,'',0,'Cruz Alex (8)','2025-01-13 11:37:26',150,'0','240932'),
(1148,'Ticket',24,'',0,'Cruz Alex (8)','2025-01-13 11:37:26',64,'tecnomulti (9)','alexcruz (8)'),
(1149,'Ticket',24,'ITILFollowup',17,'Cruz Alex (8)','2025-01-13 11:37:26',0,'','21'),
(1150,'Ticket',24,'ITILFollowup',12,'Cruz Alex (8)','2025-01-13 11:37:26',0,'','Helpdesk (21)'),
(1151,'Ticket',24,'',0,'Cruz Alex (8)','2025-01-13 11:37:37',12,'1','4'),
(1152,'Ticket',25,'',0,'Cruz Alex (8)','2025-01-13 11:38:17',150,'0','240758'),
(1153,'Ticket',25,'',0,'Cruz Alex (8)','2025-01-13 11:38:17',64,'tecnomulti (9)','alexcruz (8)'),
(1154,'Ticket',25,'ITILFollowup',17,'Cruz Alex (8)','2025-01-13 11:38:17',0,'','22'),
(1155,'Ticket',25,'ITILFollowup',12,'Cruz Alex (8)','2025-01-13 11:38:17',0,'','Helpdesk (22)'),
(1156,'Ticket',25,'',0,'Cruz Alex (8)','2025-01-13 11:38:27',12,'1','4'),
(1157,'Ticket',27,'',0,'Cruz Alex (8)','2025-01-13 11:39:16',150,'0','240783'),
(1158,'Ticket',27,'',0,'Cruz Alex (8)','2025-01-13 11:39:16',64,'tecnomulti (9)','alexcruz (8)'),
(1159,'Ticket',27,'ITILFollowup',17,'Cruz Alex (8)','2025-01-13 11:39:16',0,'','23'),
(1160,'Ticket',27,'ITILFollowup',12,'Cruz Alex (8)','2025-01-13 11:39:16',0,'','Helpdesk (23)'),
(1161,'Ticket',26,'',0,'Cruz Alex (8)','2025-01-13 11:39:55',150,'0','240841'),
(1162,'Ticket',26,'',0,'Cruz Alex (8)','2025-01-13 11:39:55',64,'tecnomulti (9)','alexcruz (8)'),
(1163,'Ticket',26,'ITILFollowup',17,'Cruz Alex (8)','2025-01-13 11:39:55',0,'','24'),
(1164,'Ticket',26,'ITILFollowup',12,'Cruz Alex (8)','2025-01-13 11:39:55',0,'','Helpdesk (24)'),
(1165,'Ticket',26,'',0,'Cruz Alex (8)','2025-01-13 11:40:00',12,'1','4'),
(1166,'Ticket',27,'',0,'Cruz Alex (8)','2025-01-13 11:40:20',12,'1','4'),
(1167,'Ticket',23,'',0,'Cruz Alex (8)','2025-01-13 11:40:41',12,'2','6'),
(1168,'Ticket',23,'',0,'Cruz Alex (8)','2025-01-13 11:40:41',16,'','2025-01-13 08:40:41'),
(1169,'Ticket',23,'',0,'Cruz Alex (8)','2025-01-13 11:40:41',17,'','2025-01-13 08:40:41'),
(1170,'Document',7,'0',20,'tecnomulti (9)','2025-01-13 12:35:41',0,'',''),
(1171,'Document',7,'Ticket',15,'tecnomulti (9)','2025-01-13 12:35:41',0,'','Barra de pesquisa (28)'),
(1172,'Ticket',28,'Document',15,'tecnomulti (9)','2025-01-13 12:35:41',0,'','Documento do Chamado 28 (7)'),
(1173,'Ticket',28,'User',15,'tecnomulti (9)','2025-01-13 12:35:41',4,'','tecnomulti (9)'),
(1174,'Ticket',28,'0',20,'tecnomulti (9)','2025-01-13 12:35:41',0,'',''),
(1175,'Ticket',28,'',0,'Cruz Alex (8)','2025-01-13 12:37:33',150,'0','112'),
(1176,'Ticket',28,'',0,'Cruz Alex (8)','2025-01-13 12:37:33',64,'tecnomulti (9)','alexcruz (8)'),
(1177,'Ticket',28,'ITILFollowup',17,'Cruz Alex (8)','2025-01-13 12:37:33',0,'','25'),
(1178,'Ticket',28,'ITILFollowup',12,'Cruz Alex (8)','2025-01-13 12:37:33',0,'','Helpdesk (25)'),
(1179,'Ticket',28,'ITILFollowup',17,'tecnomulti (9)','2025-01-13 12:39:20',0,'','26'),
(1180,'Ticket',28,'ITILFollowup',12,'tecnomulti (9)','2025-01-13 12:39:20',0,'','Acompanhamento (26)'),
(1181,'Ticket',28,'',0,'Cruz Alex (8)','2025-01-13 12:39:22',12,'1','2'),
(1182,'Ticket',28,'',0,'Cruz Alex (8)','2025-01-13 12:39:22',64,'tecnomulti (9)','alexcruz (8)'),
(1183,'Ticket',28,'ITILFollowup',17,'Cruz Alex (8)','2025-01-13 12:40:07',0,'','27'),
(1184,'Ticket',28,'ITILFollowup',12,'Cruz Alex (8)','2025-01-13 12:40:07',0,'','Helpdesk (27)'),
(1185,'Ticket',28,'ITILFollowup',17,'tecnomulti (9)','2025-01-13 12:41:55',0,'','28'),
(1186,'Ticket',28,'ITILFollowup',12,'tecnomulti (9)','2025-01-13 12:41:55',0,'','Acompanhamento (28)'),
(1187,'Ticket',29,'User',15,'tecnomulti (9)','2025-01-13 12:51:07',4,'','tecnomulti (9)'),
(1188,'Ticket',29,'0',20,'tecnomulti (9)','2025-01-13 12:51:07',0,'',''),
(1189,'Ticket',29,'',0,'Cruz Alex (8)','2025-01-13 12:56:24',150,'0','317'),
(1190,'Ticket',29,'',0,'Cruz Alex (8)','2025-01-13 12:56:24',64,'tecnomulti (9)','alexcruz (8)'),
(1191,'Ticket',29,'ITILFollowup',17,'Cruz Alex (8)','2025-01-13 12:56:24',0,'','29'),
(1192,'Ticket',29,'ITILFollowup',12,'Cruz Alex (8)','2025-01-13 12:56:24',0,'','Helpdesk (29)'),
(1193,'Ticket',29,'',0,'Cruz Alex (8)','2025-01-13 12:56:29',12,'1','2'),
(1194,'Ticket',29,'ITILFollowup',17,'Cruz Alex (8)','2025-01-13 13:29:54',0,'','30'),
(1195,'Ticket',29,'ITILFollowup',12,'Cruz Alex (8)','2025-01-13 13:29:54',0,'','Helpdesk (30)'),
(1196,'Ticket',29,'',0,'Cruz Alex (8)','2025-01-13 13:31:06',12,'2','6'),
(1197,'Ticket',29,'',0,'Cruz Alex (8)','2025-01-13 13:31:06',16,'','2025-01-13 10:31:06'),
(1198,'Ticket',29,'',0,'Cruz Alex (8)','2025-01-13 13:31:06',17,'','2025-01-13 10:31:06'),
(1199,'Ticket',28,'ITILFollowup',17,'Cruz Alex (8)','2025-01-13 13:42:54',0,'','31'),
(1200,'Ticket',28,'ITILFollowup',12,'Cruz Alex (8)','2025-01-13 13:42:54',0,'','Helpdesk (31)'),
(1201,'Ticket',28,'',0,'Cruz Alex (8)','2025-01-13 13:43:05',12,'2','6'),
(1202,'Ticket',28,'',0,'Cruz Alex (8)','2025-01-13 13:43:05',16,'','2025-01-13 10:43:05'),
(1203,'Ticket',28,'',0,'Cruz Alex (8)','2025-01-13 13:43:05',17,'','2025-01-13 10:43:05'),
(1204,'Ticket',30,'User',15,'tecnomulti (9)','2025-01-14 14:18:23',4,'','tecnomulti (9)'),
(1205,'Ticket',30,'0',20,'tecnomulti (9)','2025-01-14 14:18:23',0,'',''),
(1206,'Ticket',30,'',0,'Cruz Alex (8)','2025-01-14 15:33:04',150,'0','4481'),
(1207,'Ticket',30,'',0,'Cruz Alex (8)','2025-01-14 15:33:04',64,'tecnomulti (9)','alexcruz (8)'),
(1208,'Ticket',30,'ITILFollowup',17,'Cruz Alex (8)','2025-01-14 15:33:04',0,'','32'),
(1209,'Ticket',30,'ITILFollowup',12,'Cruz Alex (8)','2025-01-14 15:33:04',0,'','Helpdesk (32)'),
(1210,'Ticket',30,'',0,'Cruz Alex (8)','2025-01-14 15:33:14',12,'1','2'),
(1211,'Ticket',24,'ITILFollowup',17,'Cruz Alex (8)','2025-01-14 15:38:20',0,'','33'),
(1212,'Ticket',24,'ITILFollowup',12,'Cruz Alex (8)','2025-01-14 15:38:20',0,'','Helpdesk (33)'),
(1213,'Ticket',24,'',0,'Cruz Alex (8)','2025-01-14 15:38:26',12,'4','6'),
(1214,'Ticket',24,'',0,'Cruz Alex (8)','2025-01-14 15:38:26',16,'','2025-01-14 12:38:26'),
(1215,'Ticket',24,'',0,'Cruz Alex (8)','2025-01-14 15:38:26',17,'','2025-01-14 12:38:26'),
(1216,'Ticket',27,'ITILFollowup',17,'Cruz Alex (8)','2025-01-14 15:38:37',0,'','34'),
(1217,'Ticket',27,'ITILFollowup',12,'Cruz Alex (8)','2025-01-14 15:38:37',0,'','Helpdesk (34)'),
(1218,'Ticket',27,'',0,'Cruz Alex (8)','2025-01-14 15:38:44',12,'4','6'),
(1219,'Ticket',27,'',0,'Cruz Alex (8)','2025-01-14 15:38:44',16,'','2025-01-14 12:38:44'),
(1220,'Ticket',27,'',0,'Cruz Alex (8)','2025-01-14 15:38:44',17,'','2025-01-14 12:38:44'),
(1221,'Ticket',25,'ITILFollowup',17,'Cruz Alex (8)','2025-01-14 15:38:55',0,'','35'),
(1222,'Ticket',25,'ITILFollowup',12,'Cruz Alex (8)','2025-01-14 15:38:55',0,'','Helpdesk (35)'),
(1223,'Ticket',25,'',0,'Cruz Alex (8)','2025-01-14 15:39:01',12,'4','6'),
(1224,'Ticket',25,'',0,'Cruz Alex (8)','2025-01-14 15:39:01',16,'','2025-01-14 12:39:01'),
(1225,'Ticket',25,'',0,'Cruz Alex (8)','2025-01-14 15:39:01',17,'','2025-01-14 12:39:01'),
(1226,'Ticket',26,'ITILFollowup',17,'Cruz Alex (8)','2025-01-14 15:39:13',0,'','36'),
(1227,'Ticket',26,'ITILFollowup',12,'Cruz Alex (8)','2025-01-14 15:39:13',0,'','Helpdesk (36)'),
(1228,'Ticket',26,'',0,'Cruz Alex (8)','2025-01-14 15:39:17',12,'4','6'),
(1229,'Ticket',26,'',0,'Cruz Alex (8)','2025-01-14 15:39:17',16,'','2025-01-14 12:39:17'),
(1230,'Ticket',26,'',0,'Cruz Alex (8)','2025-01-14 15:39:17',17,'','2025-01-14 12:39:17'),
(1231,'Ticket',30,'ITILFollowup',17,'tecnomulti (9)','2025-01-14 16:40:01',0,'','37'),
(1232,'Ticket',30,'ITILFollowup',12,'tecnomulti (9)','2025-01-14 16:40:01',0,'','Acompanhamento (37)'),
(1233,'Ticket',30,'ITILFollowup',17,'Medeiros Luan (10)','2025-01-14 18:42:21',0,'','38'),
(1234,'Ticket',30,'ITILFollowup',12,'Medeiros Luan (10)','2025-01-14 18:42:21',0,'','Helpdesk (38)'),
(1235,'Ticket',31,'User',15,'tecnomulti (9)','2025-01-14 18:57:19',4,'','tecnomulti (9)'),
(1236,'Ticket',31,'0',20,'tecnomulti (9)','2025-01-14 18:57:19',0,'',''),
(1237,'Ticket',30,'ITILFollowup',17,'Cruz Alex (8)','2025-01-14 19:35:18',0,'','39'),
(1238,'Ticket',30,'ITILFollowup',12,'Cruz Alex (8)','2025-01-14 19:35:18',0,'','Helpdesk (39)'),
(1239,'Ticket',30,'',0,'Cruz Alex (8)','2025-01-14 19:35:24',12,'2','6'),
(1240,'Ticket',30,'',0,'Cruz Alex (8)','2025-01-14 19:35:24',16,'','2025-01-14 16:35:24'),
(1241,'Ticket',30,'',0,'Cruz Alex (8)','2025-01-14 19:35:24',17,'','2025-01-14 16:35:24'),
(1242,'Ticket',32,'User',15,'tecnomulti (9)','2025-01-14 19:40:44',4,'','tecnomulti (9)'),
(1243,'Ticket',32,'0',20,'tecnomulti (9)','2025-01-14 19:40:44',0,'',''),
(1244,'Ticket',31,'',0,'Medeiros Luan (10)','2025-01-14 19:58:44',150,'0','3685'),
(1245,'Ticket',31,'',0,'Medeiros Luan (10)','2025-01-14 19:58:44',64,'tecnomulti (9)','luanmedeiros (10)'),
(1246,'Ticket',31,'ITILFollowup',17,'Medeiros Luan (10)','2025-01-14 19:58:44',0,'','40'),
(1247,'Ticket',31,'ITILFollowup',12,'Medeiros Luan (10)','2025-01-14 19:58:44',0,'','Helpdesk (40)'),
(1248,'Ticket',31,'ITILFollowup',18,'Medeiros Luan (10)','2025-01-14 19:58:58',0,'','40'),
(1249,'Ticket',31,'ITILFollowup',12,'Medeiros Luan (10)','2025-01-14 19:58:58',0,'&#60;p&#62;Boa tarde a solicitação de VPN tem que ser solicitada também por email para o supervisor responsável. Lembrar de colocar em cópia o email do suporte(suporte@tecnomulti.c','&#60;p&#62;Boa tarde, a solicitação de VPN tem que ser solicitada também por email para o supervisor responsável. Lembrar de colocar em cópia o email do suporte(suporte@tecnomulti.'),
(1250,'Ticket',31,'ITILFollowup',12,'Medeiros Luan (10)','2025-01-14 19:58:58',0,'0','10'),
(1251,'Ticket',31,'',0,'Medeiros Luan (10)','2025-01-14 20:01:17',12,'1','4'),
(1252,'Ticket',32,'',0,'Medeiros Luan (10)','2025-01-14 20:07:08',150,'0','1584'),
(1253,'Ticket',32,'',0,'Medeiros Luan (10)','2025-01-14 20:07:08',64,'tecnomulti (9)','luanmedeiros (10)'),
(1254,'Ticket',32,'ITILFollowup',17,'Medeiros Luan (10)','2025-01-14 20:07:08',0,'','41'),
(1255,'Ticket',32,'ITILFollowup',12,'Medeiros Luan (10)','2025-01-14 20:07:08',0,'','Helpdesk (41)'),
(1256,'Ticket',32,'',0,'Cruz Alex (8)','2025-01-14 20:09:39',64,'luanmedeiros (10)','alexcruz (8)'),
(1257,'Notification',2,'NotificationTargetTicket',17,'Souza Paulo Victor (7)','2025-01-14 20:44:33',0,'','Perfil: Wintech (146)'),
(1258,'NotificationTargetTicket',146,'0',20,'Souza Paulo Victor (7)','2025-01-14 20:44:33',0,'',''),
(1266,'NotificationTargetTicket',147,'0',20,'Souza Paulo Victor (7)','2025-01-14 20:51:52',0,'',''),
(1268,'NotificationTargetTicket',148,'0',20,'Souza Paulo Victor (7)','2025-01-14 20:51:52',0,'',''),
(1269,'Notification',2,'NotificationTemplate',15,'Souza Paulo Victor (7)','2025-01-14 20:56:49',0,'','Tickets (4)'),
(1270,'NotificationTemplate',4,'Notification',15,'Souza Paulo Victor (7)','2025-01-14 20:56:49',0,'','New Ticket (2)'),
(1272,'Config',1,'',0,'Souza Paulo Victor (7)','2025-01-14 21:26:48',1,'refresh_views 0','1'),
(1274,'Config',1,'',0,'tecnomulti (9)','2025-01-14 21:27:27',1,'notification_uuid ','Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn'),
(1276,'Config',1,'',0,'Souza Paulo Victor (7)','2025-01-14 21:30:33',1,'url_base http://localhost/glpi','https://oswintech.ddns.net'),
(1277,'Config',1,'',0,'Souza Paulo Victor (7)','2025-01-14 21:32:52',1,'notifications_ajax_sound sound_a','sound_b'),
(1278,'Config',1,'',0,'Souza Paulo Victor (7)','2025-01-14 21:33:05',1,'notifications_ajax_sound sound_b','sound_c'),
(1279,'Config',1,'',0,'Souza Paulo Victor (7)','2025-01-14 21:33:17',1,'notifications_ajax_sound sound_c','sound_d'),
(1280,'Config',1,'',0,'Souza Paulo Victor (7)','2025-01-14 21:33:29',1,'notifications_ajax_sound sound_d','sound_c'),
(1285,'NotificationTemplate',4,'NotificationTemplateTranslation',17,'Souza Paulo Victor (7)','2025-01-14 21:40:17',0,'','Português do Brasil (36)'),
(1289,'NotificationTemplate',4,'NotificationTemplateTranslation',17,'Souza Paulo Victor (7)','2025-01-14 21:44:46',0,'','Tradução padrão (37)'),
(1291,'Config',1,'',0,'Souza Paulo Victor (7)','2025-01-14 21:46:00',1,'notifications_mailing 0','1'),
(1292,'NotificationTemplate',4,'NotificationTemplateTranslation',19,'Souza Paulo Victor (7)','2025-01-14 21:48:18',0,'Português do Brasil (36)',''),
(1293,'NotificationTemplate',4,'NotificationTemplateTranslation',19,'Souza Paulo Victor (7)','2025-01-14 21:48:18',0,'Tradução padrão (37)',''),
(1294,'Notification',2,'NotificationTargetTicket',17,'Souza Paulo Victor (7)','2025-01-14 21:49:08',0,'','Perfil: Super-Admin (149)'),
(1295,'NotificationTargetTicket',149,'0',20,'Souza Paulo Victor (7)','2025-01-14 21:49:08',0,'',''),
(1304,'Config',1,'',0,'Souza Paulo Victor (7)','2025-01-14 21:59:25',1,'instance_uuid ','BOySSqnrtnZqeQY2jfczJ5y5Y0RWygGstv5BN5Xk'),
(1305,'Ticket',36,'User',15,'tecnomulti (9)','2025-01-15 19:02:56',4,'','tecnomulti (9)'),
(1306,'Ticket',36,'0',20,'tecnomulti (9)','2025-01-15 19:02:56',0,'',''),
(1307,'PluginFormcreatorCategory',1,'0',20,'Souza Paulo Victor (7)','2025-01-15 23:53:23',0,'',''),
(1308,'PluginFormcreatorForm',1,'',0,'Souza Paulo Victor (7)','2025-01-15 23:54:10',1,'teste','Formulário para chamado'),
(1309,'PluginFormcreatorForm',1,'',0,'Souza Paulo Victor (7)','2025-01-15 23:54:10',10,'&nbsp; (0)','Chamado (1)'),
(1310,'PluginFormcreatorForm',1,'',0,'Souza Paulo Victor (7)','2025-01-15 23:59:12',30,'0','1'),
(1311,'PluginFormcreatorForm',1,'PluginFormcreatorForm_Language',17,'Souza Paulo Victor (7)','2025-01-16 00:14:42',0,'','pt_BR (1)'),
(1312,'PluginFormcreatorForm',1,'',0,'Souza Paulo Victor (7)','2025-01-16 00:16:05',8,'0','1'),
(1313,'PluginFormcreatorForm',1,'',0,'Souza Paulo Victor (7)','2025-01-16 00:16:05',35,'0','1'),
(1314,'Config',1,'',0,'Souza Paulo Victor (7)','2025-01-16 00:32:29',1,'keep_tickets_on_delete 0','1'),
(1315,'Config',1,'',0,'Souza Paulo Victor (7)','2025-01-16 00:33:08',1,'auto_create_infocoms 0','1'),
(1316,'Config',1,'',0,'Souza Paulo Victor (7)','2025-01-16 00:33:08',1,'_update_devices_in_menu ','1'),
(1322,'PluginFormcreatorForm',1,'',0,'Souza Paulo Victor (7)','2025-01-16 00:43:01',31,'0','fas fa-ticket-alt'),
(1326,'Document',8,'0',20,'tecnomulti (9)','2025-01-16 00:52:50',0,'',''),
(1327,'Document',8,'PluginFormcreatorFormAnswer',15,'tecnomulti (9)','2025-01-16 00:52:50',0,'','Novo chamado (2)'),
(1329,'Document',8,'',0,'tecnomulti (9)','2025-01-16 00:52:50',3,'62bc835aafc688.68301584image_paste1933703.png','image_paste.png'),
(1330,'Document',8,'Ticket',15,'tecnomulti (9)','2025-01-16 00:52:50',0,'','ativar windows (38)'),
(1337,'RequestType',7,'',0,'Souza Paulo Victor (7)','2025-01-16 00:57:44',14,'0','1'),
(1339,'PluginFormcreatorFormAnswer',2,'Ticket',16,'Souza Paulo Victor (7)','2025-01-16 00:58:48',0,'ativar windows (38)',''),
(1347,'Config',1,'',0,'Souza Paulo Victor (7)','2025-01-16 01:14:28',1,'show_jobs_at_login 0','1'),
(1348,'Config',1,'',0,'Souza Paulo Victor (7)','2025-01-16 01:14:28',1,'default_requesttypes_id 1','7'),
(1349,'User',9,'',0,'Souza Paulo Victor (7)','2025-01-16 01:17:34',80,'Entidade raiz (0)','Entidade raiz &#62; Tecnomulti (2)'),
(1350,'Profile',1,'',0,'Souza Paulo Victor (7)','2025-01-16 01:21:16',5,'helpdesk','central'),
(1352,'Profile',1,'',0,'Souza Paulo Victor (7)','2025-01-16 01:26:11',5,'central','helpdesk'),
(1353,'Config',1,'',0,'Souza Paulo Victor (7)','2025-01-16 01:26:53',1,'default_requesttypes_id 7','1'),
(1354,'Profile',1,'',0,'Souza Paulo Victor (7)','2025-01-16 01:48:54',1,'Self-Service','Usuário Padrão'),
(1355,'Profile',1,'',0,'Souza Paulo Victor (7)','2025-01-16 01:49:35',87,'[\"Computer\",\"Monitor\",\"NetworkEquipment\",\"Peripheral\",\"Phone\",\"Printer\",\"Software\", \"DCRoom\", \"Rack\", \"Enclosure\", \"Database\"]','[\"Computer\",\"Monitor\",\"NetworkEquipment\",\"Peripheral\",\"Phone\",\"Printer\",\"Software\",\"DCRoom\",\"Rack\",\"Enclosure\",\"Database\"]'),
(1356,'Profile',1,'',0,'Souza Paulo Victor (7)','2025-01-16 01:49:35',102,'5','1'),
(1359,'Ticket',38,'',0,'Souza Paulo Victor (7)','2025-01-16 01:50:56',19,'2025-01-15 22:50:49','2025-01-15 22:50:56'),
(1360,'Ticket',38,'',0,'Souza Paulo Victor (7)','2025-01-16 01:50:56',21,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Formulário para chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;ativar windows&#60;/div&#62','&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Formulário para chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;ativar windows&#60;/div&#62'),
(1373,'Entity',3,'0',20,'Souza Paulo Victor (7)','2025-01-16 01:54:14',0,'',''),
(1374,'Entity',2,'',0,'Souza Paulo Victor (7)','2025-01-16 01:54:27',1,'Entidade raiz &#62; Tecnomulti','Entidade raiz &#62; Wintech &#62; Tecnomulti'),
(1375,'Entity',0,'Entity',19,'Souza Paulo Victor (7)','2025-01-16 01:54:27',0,'Tecnomulti (2)',''),
(1376,'Entity',3,'Entity',17,'Souza Paulo Victor (7)','2025-01-16 01:54:27',0,'','Tecnomulti (2)'),
(1377,'Entity',2,'Entity',18,'Souza Paulo Victor (7)','2025-01-16 01:54:27',0,'Entidade raiz (0)','Wintech (3)'),
(1378,'PluginFormcreatorEntityconfig',3,'0',20,'tecnomulti (9)','2025-01-16 01:56:37',0,'',''),
(1384,'Config',1,'',0,'Souza Paulo Victor (7)','2025-01-16 02:01:31',1,'show_jobs_at_login 1','0'),
(1394,'PluginFormcreatorForm',1,'',0,'Souza Paulo Victor (7)','2025-01-16 02:07:40',1,'Formulário para chamado','Abertura de chamado'),
(1395,'Profile',1,'',0,'Souza Paulo Victor (7)','2025-01-16 03:05:46',36,'1024','0'),
(1396,'Profile',1,'',0,'Souza Paulo Victor (7)','2025-01-16 03:05:46',120,'1','0'),
(1397,'Profile',1,'',0,'Souza Paulo Victor (7)','2025-01-16 03:06:29',34,'2048','0'),
(1398,'Ticket',43,'User',15,'tecnomulti (9)','2025-01-16 10:59:30',4,'','tecnomulti (9)'),
(1399,'Ticket',43,'0',20,'tecnomulti (9)','2025-01-16 10:59:30',0,'',''),
(1400,'Ticket',43,'PluginFormcreatorFormAnswer',15,'tecnomulti (9)','2025-01-16 10:59:30',0,'','Novo chamado (7)'),
(1401,'PluginFormcreatorFormAnswer',7,'Ticket',15,'tecnomulti (9)','2025-01-16 10:59:30',0,'','Lentidão jose.carmo@tecnomulti.com (43)'),
(1402,'PluginFormcreatorFormAnswer',7,'0',20,'tecnomulti (9)','2025-01-16 10:59:30',0,'',''),
(1403,'Ticket',43,'',0,'Cruz Alex (8)','2025-01-16 12:47:46',150,'0','6496'),
(1404,'Ticket',43,'',0,'Cruz Alex (8)','2025-01-16 12:47:46',64,'tecnomulti (9)','alexcruz (8)'),
(1405,'Ticket',43,'ITILFollowup',17,'Cruz Alex (8)','2025-01-16 12:47:46',0,'','42'),
(1406,'Ticket',43,'ITILFollowup',12,'Cruz Alex (8)','2025-01-16 12:47:46',0,'','Helpdesk (42)'),
(1407,'Ticket',43,'',0,'Cruz Alex (8)','2025-01-16 12:47:58',12,'1','3'),
(1408,'Document',9,'0',20,'Cruz Alex (8)','2025-01-16 13:14:20',0,'',''),
(1409,'Document',9,'ITILFollowup',15,'Cruz Alex (8)','2025-01-16 13:14:20',0,'','Helpdesk (43)'),
(1410,'Ticket',43,'ITILFollowup',17,'Cruz Alex (8)','2025-01-16 13:14:20',0,'','43'),
(1411,'Ticket',43,'ITILFollowup',12,'Cruz Alex (8)','2025-01-16 13:14:20',0,'','Helpdesk (43)'),
(1412,'Ticket',43,'ITILFollowup',17,'Cruz Alex (8)','2025-01-16 13:21:48',0,'','44'),
(1413,'Ticket',43,'ITILFollowup',12,'Cruz Alex (8)','2025-01-16 13:21:48',0,'','Helpdesk (44)'),
(1414,'Ticket',43,'',0,'Cruz Alex (8)','2025-01-16 13:21:59',12,'3','5'),
(1415,'Ticket',43,'',0,'Cruz Alex (8)','2025-01-16 13:21:59',17,'','2025-01-16 10:21:59'),
(1416,'Ticket',43,'',0,'Cruz Alex (8)','2025-01-17 12:02:32',12,'5','6'),
(1417,'Ticket',43,'',0,'Cruz Alex (8)','2025-01-17 12:02:32',16,'','2025-01-17 09:02:32'),
(1418,'Ticket',36,'',0,'Cruz Alex (8)','2025-01-17 12:03:23',150,'0','147627'),
(1419,'Ticket',36,'',0,'Cruz Alex (8)','2025-01-17 12:03:23',64,'tecnomulti (9)','alexcruz (8)'),
(1420,'Ticket',36,'ITILFollowup',17,'Cruz Alex (8)','2025-01-17 12:03:23',0,'','45'),
(1421,'Ticket',36,'ITILFollowup',12,'Cruz Alex (8)','2025-01-17 12:03:23',0,'','Helpdesk (45)'),
(1422,'Ticket',36,'',0,'Cruz Alex (8)','2025-01-17 12:03:35',12,'1','6'),
(1423,'Ticket',36,'',0,'Cruz Alex (8)','2025-01-17 12:03:35',16,'','2025-01-17 09:03:35'),
(1424,'Ticket',36,'',0,'Cruz Alex (8)','2025-01-17 12:03:35',17,'','2025-01-17 09:03:35'),
(1425,'Ticket',32,'',0,'Cruz Alex (8)','2025-01-17 12:38:32',12,'1','4'),
(1426,'Ticket',44,'User',15,'tecnomulti (9)','2025-01-17 14:47:06',4,'','tecnomulti (9)'),
(1427,'Ticket',44,'0',20,'tecnomulti (9)','2025-01-17 14:47:06',0,'',''),
(1428,'Ticket',44,'PluginFormcreatorFormAnswer',15,'tecnomulti (9)','2025-01-17 14:47:06',0,'','Novo chamado (8)'),
(1429,'PluginFormcreatorFormAnswer',8,'Ticket',15,'tecnomulti (9)','2025-01-17 14:47:06',0,'','Problema no email. jayana.monte@tecnomulti.com (44)'),
(1430,'PluginFormcreatorFormAnswer',8,'0',20,'tecnomulti (9)','2025-01-17 14:47:06',0,'',''),
(1431,'Ticket',44,'',0,'Medeiros Luan (10)','2025-01-17 17:57:43',150,'0','11437'),
(1432,'Ticket',44,'',0,'Medeiros Luan (10)','2025-01-17 17:57:43',64,'tecnomulti (9)','luanmedeiros (10)'),
(1433,'Ticket',44,'ITILFollowup',17,'Medeiros Luan (10)','2025-01-17 17:57:43',0,'','46'),
(1434,'Ticket',44,'ITILFollowup',12,'Medeiros Luan (10)','2025-01-17 17:57:43',0,'','Helpdesk (46)'),
(1435,'Ticket',44,'',0,'Medeiros Luan (10)','2025-01-17 18:00:59',12,'1','2'),
(1436,'Ticket',45,'User',15,'tecnomulti (9)','2025-01-17 18:01:10',4,'','tecnomulti (9)'),
(1437,'Ticket',45,'0',20,'tecnomulti (9)','2025-01-17 18:01:10',0,'',''),
(1438,'Ticket',45,'PluginFormcreatorFormAnswer',15,'tecnomulti (9)','2025-01-17 18:01:10',0,'','Novo chamado (9)'),
(1439,'PluginFormcreatorFormAnswer',9,'Ticket',15,'tecnomulti (9)','2025-01-17 18:01:10',0,'','Eu já desinstalei o aplicativo da impressora e já instalei novamente e a impressora não conecta karla.minelly@tecnomulti.com (45)'),
(1440,'PluginFormcreatorFormAnswer',9,'0',20,'tecnomulti (9)','2025-01-17 18:01:10',0,'',''),
(1441,'Entity',3,'Entity',17,'Souza Paulo Victor (7)','2025-01-19 04:48:46',0,'','test (4)'),
(1443,'Entity',3,'Entity',19,'Souza Paulo Victor (7)','2025-01-19 04:52:08',0,'test (4)',''),
(1444,'UserCategory',1,'0',20,'Souza Paulo Victor (7)','2025-01-19 04:55:51',0,'',''),
(1445,'Profile',1,'',0,'Souza Paulo Victor (7)','2025-01-19 04:59:02',118,'0','1'),
(1446,'Profile',1,'',0,'Souza Paulo Victor (7)','2025-01-19 04:59:41',118,'1','0'),
(1447,'Config',1,'',0,'Souza Paulo Victor (7)','2025-01-19 05:01:59',1,'entities_id_default (inventory) 0','3'),
(1448,'Config',1,'',0,'Souza Paulo Victor (7)','2025-01-19 05:02:30',1,'default_requesttypes_id 1','7'),
(1449,'Profile',1,'',0,'Souza Paulo Victor (7)','2025-01-19 05:04:37',118,'0','1'),
(1451,'User',7,'',0,'Souza Paulo Victor (7)','2025-01-19 05:23:25',20,'&nbsp; (0)','Super-Admin (4)'),
(1452,'User',7,'Profile',17,'Souza Paulo Victor (7)','2025-01-19 05:23:57',0,'','Entidade raiz > Wintech (3), Wintech (5)(R)'),
(1453,'Profile',5,'User',17,'Souza Paulo Victor (7)','2025-01-19 05:23:57',0,'','Paulo Victor Souza (7), Entidade raiz > Wintech (3)(R)'),
(1454,'Entity',3,'User',17,'Souza Paulo Victor (7)','2025-01-19 05:23:57',0,'','Paulo Victor Souza (7), Wintech (5)(R)'),
(1455,'User',7,'Profile',17,'Souza Paulo Victor (7)','2025-01-19 05:28:34',0,'','Entidade raiz > Wintech (3), Super-Admin (4)(R)'),
(1456,'Profile',4,'User',17,'Souza Paulo Victor (7)','2025-01-19 05:28:34',0,'','Paulo Victor Souza (7), Entidade raiz > Wintech (3)(R)'),
(1457,'Entity',3,'User',17,'Souza Paulo Victor (7)','2025-01-19 05:28:34',0,'','Paulo Victor Souza (7), Super-Admin (4)(R)'),
(1458,'TicketTemplate',1,'TicketTemplateHiddenField',19,'Souza Paulo Victor (7)','2025-01-19 05:44:15',0,'Grupo observador (3)',''),
(1459,'Config',1,'',0,'Souza Paulo Victor (7)','2025-01-19 05:54:49',1,'default_requesttypes_id 7','1'),
(1460,'Ticket',45,'',0,'Medeiros Luan (10)','2025-01-20 11:08:13',150,'0','234423'),
(1461,'Ticket',45,'',0,'Medeiros Luan (10)','2025-01-20 11:08:13',64,'tecnomulti (9)','luanmedeiros (10)'),
(1462,'Ticket',45,'ITILFollowup',17,'Medeiros Luan (10)','2025-01-20 11:08:13',0,'','47'),
(1463,'Ticket',45,'ITILFollowup',12,'Medeiros Luan (10)','2025-01-20 11:08:13',0,'','Helpdesk (47)'),
(1464,'Ticket',45,'',0,'Medeiros Luan (10)','2025-01-20 11:14:42',12,'1','2'),
(1465,'Ticket',46,'User',15,'tecnomulti (9)','2025-01-20 11:22:02',4,'','tecnomulti (9)'),
(1466,'Ticket',46,'0',20,'tecnomulti (9)','2025-01-20 11:22:02',0,'',''),
(1467,'Ticket',46,'PluginFormcreatorFormAnswer',15,'tecnomulti (9)','2025-01-20 11:22:02',0,'','karla.minelly@tecnomulti.com (10)'),
(1468,'PluginFormcreatorFormAnswer',10,'Ticket',15,'tecnomulti (9)','2025-01-20 11:22:02',0,'','KARLA KINELLY DE AQUINO ALEXANDRE (46)'),
(1469,'PluginFormcreatorFormAnswer',10,'0',20,'tecnomulti (9)','2025-01-20 11:22:02',0,'',''),
(1470,'Ticket',46,'',0,'Cruz Alex (8)','2025-01-20 11:23:38',150,'0','96'),
(1471,'Ticket',46,'',0,'Cruz Alex (8)','2025-01-20 11:23:38',64,'tecnomulti (9)','alexcruz (8)'),
(1472,'Ticket',46,'ITILFollowup',17,'Cruz Alex (8)','2025-01-20 11:23:38',0,'','48'),
(1473,'Ticket',46,'ITILFollowup',12,'Cruz Alex (8)','2025-01-20 11:23:38',0,'','Helpdesk (48)'),
(1474,'Ticket',46,'',0,'Cruz Alex (8)','2025-01-20 11:23:46',12,'1','2'),
(1475,'Ticket',44,'',0,'Cruz Alex (8)','2025-01-20 11:47:29',12,'2','6'),
(1476,'Ticket',44,'',0,'Cruz Alex (8)','2025-01-20 11:47:29',64,'luanmedeiros (10)','alexcruz (8)'),
(1477,'Ticket',44,'',0,'Cruz Alex (8)','2025-01-20 11:47:29',16,'','2025-01-20 08:47:29'),
(1478,'Ticket',44,'',0,'Cruz Alex (8)','2025-01-20 11:47:29',17,'','2025-01-20 08:47:29'),
(1479,'Ticket',32,'ITILFollowup',17,'Cruz Alex (8)','2025-01-20 13:30:58',0,'','49'),
(1480,'Ticket',32,'ITILFollowup',12,'Cruz Alex (8)','2025-01-20 13:30:58',0,'','Helpdesk (49)'),
(1481,'Ticket',32,'',0,'Cruz Alex (8)','2025-01-20 13:31:02',12,'4','6'),
(1482,'Ticket',32,'',0,'Cruz Alex (8)','2025-01-20 13:31:02',16,'','2025-01-20 10:31:02'),
(1483,'Ticket',32,'',0,'Cruz Alex (8)','2025-01-20 13:31:02',17,'','2025-01-20 10:31:02'),
(1484,'Ticket',47,'User',15,'tecnomulti (9)','2025-01-20 13:39:01',4,'','tecnomulti (9)'),
(1485,'Ticket',47,'0',20,'tecnomulti (9)','2025-01-20 13:39:01',0,'',''),
(1486,'Ticket',47,'PluginFormcreatorFormAnswer',15,'tecnomulti (9)','2025-01-20 13:39:01',0,'','gilberto.silva@tecnomulti.com (11)'),
(1487,'PluginFormcreatorFormAnswer',11,'Ticket',15,'tecnomulti (9)','2025-01-20 13:39:01',0,'','Instalação de vpn (47)'),
(1488,'PluginFormcreatorFormAnswer',11,'0',20,'tecnomulti (9)','2025-01-20 13:39:01',0,'',''),
(1489,'Document',10,'0',20,'tecnomulti (9)','2025-01-20 14:05:41',0,'',''),
(1490,'Document',10,'PluginFormcreatorFormAnswer',15,'tecnomulti (9)','2025-01-20 14:05:41',0,'','graciane.coelho@tecnomulti.com (12)'),
(1491,'PluginFormcreatorFormAnswer',12,'Document',15,'tecnomulti (9)','2025-01-20 14:05:41',0,'','62c23c156bed8c.39372227image_paste6345625.png (10)'),
(1492,'Document',10,'',0,'tecnomulti (9)','2025-01-20 14:05:41',3,'62c23c156bed8c.39372227image_paste6345625.png','image_paste.png'),
(1493,'Document',10,'Ticket',15,'tecnomulti (9)','2025-01-20 14:05:41',0,'','CAIXA DE EMAIL CHEIA  (48)'),
(1494,'Ticket',48,'Document',15,'tecnomulti (9)','2025-01-20 14:05:41',0,'','62c23c156bed8c.39372227image_paste6345625.png (10)'),
(1495,'Ticket',48,'User',15,'tecnomulti (9)','2025-01-20 14:05:41',4,'','tecnomulti (9)'),
(1496,'Ticket',48,'0',20,'tecnomulti (9)','2025-01-20 14:05:41',0,'',''),
(1497,'Ticket',48,'PluginFormcreatorFormAnswer',15,'tecnomulti (9)','2025-01-20 14:05:41',0,'','graciane.coelho@tecnomulti.com (12)'),
(1498,'PluginFormcreatorFormAnswer',12,'Ticket',15,'tecnomulti (9)','2025-01-20 14:05:41',0,'','CAIXA DE EMAIL CHEIA  (48)'),
(1499,'PluginFormcreatorFormAnswer',12,'0',20,'tecnomulti (9)','2025-01-20 14:05:41',0,'',''),
(1500,'Ticket',46,'ITILFollowup',17,'Cruz Alex (8)','2025-01-20 14:21:01',0,'','50'),
(1501,'Ticket',46,'ITILFollowup',12,'Cruz Alex (8)','2025-01-20 14:21:01',0,'','Helpdesk (50)'),
(1502,'Ticket',46,'',0,'Cruz Alex (8)','2025-01-20 14:21:10',12,'2','6'),
(1503,'Ticket',46,'',0,'Cruz Alex (8)','2025-01-20 14:21:10',16,'','2025-01-20 11:21:10'),
(1504,'Ticket',46,'',0,'Cruz Alex (8)','2025-01-20 14:21:10',17,'','2025-01-20 11:21:10'),
(1505,'Ticket',45,'ITILFollowup',17,'Cruz Alex (8)','2025-01-20 14:21:50',0,'','51'),
(1506,'Ticket',45,'ITILFollowup',12,'Cruz Alex (8)','2025-01-20 14:21:50',0,'','Helpdesk (51)'),
(1507,'Ticket',45,'',0,'Cruz Alex (8)','2025-01-20 14:21:56',12,'2','6'),
(1508,'Ticket',45,'',0,'Cruz Alex (8)','2025-01-20 14:21:56',16,'','2025-01-20 11:21:56'),
(1509,'Ticket',45,'',0,'Cruz Alex (8)','2025-01-20 14:21:56',17,'','2025-01-20 11:21:56'),
(1510,'Ticket',47,'',0,'Cruz Alex (8)','2025-01-20 14:23:36',150,'0','2675'),
(1511,'Ticket',47,'',0,'Cruz Alex (8)','2025-01-20 14:23:36',64,'tecnomulti (9)','alexcruz (8)'),
(1512,'Ticket',47,'ITILFollowup',17,'Cruz Alex (8)','2025-01-20 14:23:36',0,'','52'),
(1513,'Ticket',47,'ITILFollowup',12,'Cruz Alex (8)','2025-01-20 14:23:36',0,'','Helpdesk (52)'),
(1514,'Ticket',47,'',0,'Cruz Alex (8)','2025-01-20 14:23:41',12,'1','2'),
(1515,'Ticket',47,'ITILFollowup',17,'Cruz Alex (8)','2025-01-20 14:32:58',0,'','53'),
(1516,'Ticket',47,'ITILFollowup',12,'Cruz Alex (8)','2025-01-20 14:32:58',0,'','Helpdesk (53)'),
(1517,'Ticket',47,'',0,'Cruz Alex (8)','2025-01-20 14:33:05',12,'2','6'),
(1518,'Ticket',47,'',0,'Cruz Alex (8)','2025-01-20 14:33:05',16,'','2025-01-20 11:33:05'),
(1519,'Ticket',47,'',0,'Cruz Alex (8)','2025-01-20 14:33:05',17,'','2025-01-20 11:33:05'),
(1520,'Ticket',48,'',0,'Cruz Alex (8)','2025-01-20 14:35:46',150,'0','1805'),
(1521,'Ticket',48,'',0,'Cruz Alex (8)','2025-01-20 14:35:46',64,'tecnomulti (9)','alexcruz (8)'),
(1522,'Ticket',48,'ITILFollowup',17,'Cruz Alex (8)','2025-01-20 14:35:46',0,'','54'),
(1523,'Ticket',48,'ITILFollowup',12,'Cruz Alex (8)','2025-01-20 14:35:46',0,'','Helpdesk (54)'),
(1524,'Ticket',48,'',0,'Cruz Alex (8)','2025-01-20 14:35:54',12,'1','2'),
(1525,'Document',11,'0',20,'tecnomulti (9)','2025-01-21 00:18:58',0,'',''),
(1526,'Document',11,'PluginFormcreatorFormAnswer',15,'tecnomulti (9)','2025-01-21 00:18:58',0,'','suporte@tecnomulti.com (13)'),
(1527,'PluginFormcreatorFormAnswer',13,'Document',15,'tecnomulti (9)','2025-01-21 00:18:58',0,'','62c2c5226dfa28.92593855image_paste688105.png (11)'),
(1528,'Document',11,'',0,'tecnomulti (9)','2025-01-21 00:18:58',3,'62c2c5226dfa28.92593855image_paste688105.png','image_paste.png'),
(1529,'Document',11,'Ticket',15,'tecnomulti (9)','2025-01-21 00:18:58',0,'','Erro navegador (49)'),
(1534,'PluginFormcreatorFormAnswer',13,'Ticket',15,'tecnomulti (9)','2025-01-21 00:18:58',0,'','Erro navegador (49)'),
(1535,'PluginFormcreatorFormAnswer',13,'0',20,'tecnomulti (9)','2025-01-21 00:18:58',0,'',''),
(1545,'Ticket',49,'',0,'Cruz Alex (8)','2025-01-21 11:13:42',21,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Erro navegador&#60;/div&#62;&#60;div&#','&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Erro navegador&#60;/div&#62;&#60;div&#'),
(1546,'Document',12,'0',20,'tecnomulti (9)','2025-01-21 11:27:28',0,'',''),
(1547,'Document',12,'PluginFormcreatorFormAnswer',15,'tecnomulti (9)','2025-01-21 11:27:28',0,'','lucia.gomes@tecnomulti.com (14)'),
(1548,'PluginFormcreatorFormAnswer',14,'Document',15,'tecnomulti (9)','2025-01-21 11:27:28',0,'','62c35a052f90fc.14011958image_paste3781659.png (12)'),
(1549,'Document',12,'',0,'tecnomulti (9)','2025-01-21 11:27:28',3,'62c35a052f90fc.14011958image_paste3781659.png','image_paste.png'),
(1550,'Document',12,'Ticket',15,'tecnomulti (9)','2025-01-21 11:27:28',0,'','CONECTAR IMPRESSORA NO PC (50)'),
(1551,'Ticket',50,'Document',15,'tecnomulti (9)','2025-01-21 11:27:28',0,'','62c35a052f90fc.14011958image_paste3781659.png (12)'),
(1552,'Ticket',50,'User',15,'tecnomulti (9)','2025-01-21 11:27:28',4,'','tecnomulti (9)'),
(1553,'Ticket',50,'0',20,'tecnomulti (9)','2025-01-21 11:27:28',0,'',''),
(1554,'Ticket',50,'PluginFormcreatorFormAnswer',15,'tecnomulti (9)','2025-01-21 11:27:28',0,'','lucia.gomes@tecnomulti.com (14)'),
(1555,'PluginFormcreatorFormAnswer',14,'Ticket',15,'tecnomulti (9)','2025-01-21 11:27:28',0,'','CONECTAR IMPRESSORA NO PC (50)'),
(1556,'PluginFormcreatorFormAnswer',14,'0',20,'tecnomulti (9)','2025-01-21 11:27:28',0,'',''),
(1557,'Ticket',50,'',0,'Cruz Alex (8)','2025-01-21 12:19:43',150,'0','3135'),
(1558,'Ticket',50,'',0,'Cruz Alex (8)','2025-01-21 12:19:43',64,'tecnomulti (9)','alexcruz (8)'),
(1559,'Ticket',50,'ITILFollowup',17,'Cruz Alex (8)','2025-01-21 12:19:43',0,'','56'),
(1560,'Ticket',50,'ITILFollowup',12,'Cruz Alex (8)','2025-01-21 12:19:43',0,'','Helpdesk (56)'),
(1561,'Ticket',50,'ITILFollowup',17,'Medeiros Luan (10)','2025-01-21 12:19:45',0,'','57'),
(1562,'Ticket',50,'ITILFollowup',12,'Medeiros Luan (10)','2025-01-21 12:19:45',0,'','Helpdesk (57)'),
(1563,'Ticket',50,'',0,'Cruz Alex (8)','2025-01-21 12:19:48',12,'1','2'),
(1564,'Ticket',50,'',0,'Cruz Alex (8)','2025-01-21 12:19:48',64,'luanmedeiros (10)','alexcruz (8)'),
(1565,'Ticket',50,'ITILFollowup',19,'Cruz Alex (8)','2025-01-21 12:20:09',0,'','56'),
(1566,'Document',13,'0',20,'tecnomulti (9)','2025-01-21 13:02:41',0,'',''),
(1567,'Document',13,'PluginFormcreatorFormAnswer',15,'tecnomulti (9)','2025-01-21 13:02:41',0,'','arthur.abreu@tecnomulti.com (15)'),
(1568,'PluginFormcreatorFormAnswer',15,'Document',15,'tecnomulti (9)','2025-01-21 13:02:41',0,'','62c36fb07f530c.03703187image_paste1041686.png (13)'),
(1569,'Document',13,'',0,'tecnomulti (9)','2025-01-21 13:02:41',3,'62c36fb07f530c.03703187image_paste1041686.png','image_paste.png'),
(1570,'Document',13,'Ticket',15,'tecnomulti (9)','2025-01-21 13:02:41',0,'','Expansão - Memória interna ssd + RAM (51)'),
(1571,'Ticket',51,'Document',15,'tecnomulti (9)','2025-01-21 13:02:41',0,'','62c36fb07f530c.03703187image_paste1041686.png (13)'),
(1572,'Ticket',51,'User',15,'tecnomulti (9)','2025-01-21 13:02:41',4,'','tecnomulti (9)'),
(1573,'Ticket',51,'0',20,'tecnomulti (9)','2025-01-21 13:02:41',0,'',''),
(1574,'Ticket',51,'PluginFormcreatorFormAnswer',15,'tecnomulti (9)','2025-01-21 13:02:41',0,'','arthur.abreu@tecnomulti.com (15)'),
(1575,'PluginFormcreatorFormAnswer',15,'Ticket',15,'tecnomulti (9)','2025-01-21 13:02:41',0,'','Expansão - Memória interna ssd + RAM (51)'),
(1576,'PluginFormcreatorFormAnswer',15,'0',20,'tecnomulti (9)','2025-01-21 13:02:41',0,'',''),
(1577,'Ticket',52,'User',15,'tecnomulti (9)','2025-01-21 13:50:24',4,'','tecnomulti (9)'),
(1578,'Ticket',52,'0',20,'tecnomulti (9)','2025-01-21 13:50:24',0,'',''),
(1579,'Ticket',52,'PluginFormcreatorFormAnswer',15,'tecnomulti (9)','2025-01-21 13:50:24',0,'','Gerson.Lima@tecnimulti.com (16)'),
(1580,'PluginFormcreatorFormAnswer',16,'Ticket',15,'tecnomulti (9)','2025-01-21 13:50:24',0,'','Excell (52)'),
(1581,'PluginFormcreatorFormAnswer',16,'0',20,'tecnomulti (9)','2025-01-21 13:50:24',0,'',''),
(1582,'Ticket',52,'',0,'Cruz Alex (8)','2025-01-21 14:27:29',150,'0','2225'),
(1583,'Ticket',52,'',0,'Cruz Alex (8)','2025-01-21 14:27:29',64,'tecnomulti (9)','alexcruz (8)'),
(1584,'Ticket',52,'ITILFollowup',17,'Cruz Alex (8)','2025-01-21 14:27:29',0,'','58'),
(1585,'Ticket',52,'ITILFollowup',12,'Cruz Alex (8)','2025-01-21 14:27:29',0,'','Helpdesk (58)'),
(1586,'Ticket',52,'',0,'Cruz Alex (8)','2025-01-21 14:27:34',12,'1','2'),
(1587,'User',8,'',0,'Cruz Alexsandro (8)','2025-01-21 14:29:00',9,'Alex','Alexsandro'),
(1588,'Ticket',52,'ITILFollowup',17,'tecnomulti (9)','2025-01-21 14:31:24',0,'','59'),
(1589,'Ticket',52,'ITILFollowup',12,'tecnomulti (9)','2025-01-21 14:31:24',0,'','Acompanhamento (59)'),
(1590,'Ticket',52,'ITILFollowup',17,'tecnomulti (9)','2025-01-21 14:33:36',0,'','60'),
(1591,'Ticket',52,'ITILFollowup',12,'tecnomulti (9)','2025-01-21 14:33:36',0,'','Acompanhamento (60)'),
(1592,'Ticket',52,'ITILFollowup',17,'Cruz Alexsandro (8)','2025-01-21 14:40:49',0,'','61'),
(1593,'Ticket',52,'ITILFollowup',12,'Cruz Alexsandro (8)','2025-01-21 14:40:49',0,'','Helpdesk (61)'),
(1594,'Ticket',52,'',0,'Cruz Alexsandro (8)','2025-01-21 14:40:55',12,'2','6'),
(1595,'Ticket',52,'',0,'Cruz Alexsandro (8)','2025-01-21 14:40:55',16,'','2025-01-21 11:40:55'),
(1596,'Ticket',52,'',0,'Cruz Alexsandro (8)','2025-01-21 14:40:55',17,'','2025-01-21 11:40:55'),
(1597,'Ticket',51,'',0,'Medeiros Luan (10)','2025-01-21 14:46:45',150,'0','6244'),
(1598,'Ticket',51,'',0,'Medeiros Luan (10)','2025-01-21 14:46:45',64,'tecnomulti (9)','luanmedeiros (10)'),
(1599,'Ticket',51,'ITILFollowup',17,'Medeiros Luan (10)','2025-01-21 14:46:45',0,'','62'),
(1600,'Ticket',51,'ITILFollowup',12,'Medeiros Luan (10)','2025-01-21 14:46:45',0,'','Helpdesk (62)'),
(1601,'Ticket',52,'',0,'Cruz Alexsandro (8)','2025-01-21 15:04:57',12,'6','2'),
(1602,'Ticket',52,'',0,'Cruz Alexsandro (8)','2025-01-21 15:04:57',17,'2025-01-21 11:40:55',NULL),
(1603,'Ticket',52,'',0,'Cruz Alexsandro (8)','2025-01-21 15:04:57',16,'2025-01-21 11:40:55',NULL),
(1604,'Ticket',52,'ITILFollowup',17,'Cruz Alexsandro (8)','2025-01-21 15:05:39',0,'','63'),
(1605,'Ticket',52,'ITILFollowup',12,'Cruz Alexsandro (8)','2025-01-21 15:05:39',0,'','Helpdesk (63)'),
(1606,'Ticket',50,'ITILFollowup',17,'Cruz Alexsandro (8)','2025-01-21 15:06:11',0,'','64'),
(1607,'Ticket',50,'ITILFollowup',12,'Cruz Alexsandro (8)','2025-01-21 15:06:11',0,'','Helpdesk (64)'),
(1608,'Ticket',50,'',0,'Cruz Alexsandro (8)','2025-01-21 15:06:20',12,'2','6'),
(1609,'Ticket',50,'',0,'Cruz Alexsandro (8)','2025-01-21 15:06:20',16,'','2025-01-21 12:06:20'),
(1610,'Ticket',50,'',0,'Cruz Alexsandro (8)','2025-01-21 15:06:20',17,'','2025-01-21 12:06:20'),
(1611,'Ticket',52,'ITILFollowup',17,'Cruz Alexsandro (8)','2025-01-21 15:27:09',0,'','65'),
(1612,'Ticket',52,'ITILFollowup',12,'Cruz Alexsandro (8)','2025-01-21 15:27:09',0,'','Helpdesk (65)'),
(1613,'Ticket',52,'',0,'Cruz Alexsandro (8)','2025-01-21 15:27:14',12,'2','6'),
(1614,'Ticket',52,'',0,'Cruz Alexsandro (8)','2025-01-21 15:27:14',16,'','2025-01-21 12:27:14'),
(1615,'Ticket',52,'',0,'Cruz Alexsandro (8)','2025-01-21 15:27:14',17,'','2025-01-21 12:27:14'),
(1616,'Document',14,'0',20,'tecnomulti (9)','2025-01-22 11:00:46',0,'',''),
(1617,'Document',14,'PluginFormcreatorFormAnswer',15,'tecnomulti (9)','2025-01-22 11:00:46',0,'','vinicius.silveira@tecnomulti.com (17)'),
(1618,'PluginFormcreatorFormAnswer',17,'Document',15,'tecnomulti (9)','2025-01-22 11:00:46',0,'','62c49675e91ec0.86768743image_paste7866656.png (14)'),
(1619,'Document',14,'',0,'tecnomulti (9)','2025-01-22 11:00:46',3,'62c49675e91ec0.86768743image_paste7866656.png','image_paste.png'),
(1620,'Document',14,'Ticket',15,'tecnomulti (9)','2025-01-22 11:00:46',0,'','Caixa de Email Cheia (53)'),
(1621,'Ticket',53,'Document',15,'tecnomulti (9)','2025-01-22 11:00:46',0,'','62c49675e91ec0.86768743image_paste7866656.png (14)'),
(1622,'Ticket',53,'User',15,'tecnomulti (9)','2025-01-22 11:00:46',4,'','tecnomulti (9)'),
(1623,'Ticket',53,'0',20,'tecnomulti (9)','2025-01-22 11:00:46',0,'',''),
(1624,'Ticket',53,'PluginFormcreatorFormAnswer',15,'tecnomulti (9)','2025-01-22 11:00:46',0,'','vinicius.silveira@tecnomulti.com (17)'),
(1625,'PluginFormcreatorFormAnswer',17,'Ticket',15,'tecnomulti (9)','2025-01-22 11:00:46',0,'','Caixa de Email Cheia (53)'),
(1626,'PluginFormcreatorFormAnswer',17,'0',20,'tecnomulti (9)','2025-01-22 11:00:46',0,'',''),
(1627,'Ticket',54,'User',15,'tecnomulti (9)','2025-01-22 11:12:01',4,'','tecnomulti (9)'),
(1628,'Ticket',54,'0',20,'tecnomulti (9)','2025-01-22 11:12:01',0,'',''),
(1629,'Ticket',54,'PluginFormcreatorFormAnswer',15,'tecnomulti (9)','2025-01-22 11:12:01',0,'','arthur.abreu@tecnomulti.com (18)'),
(1630,'PluginFormcreatorFormAnswer',18,'Ticket',15,'tecnomulti (9)','2025-01-22 11:12:01',0,'','Notebook perdendo sinal de Wi FI (54)'),
(1631,'PluginFormcreatorFormAnswer',18,'0',20,'tecnomulti (9)','2025-01-22 11:12:01',0,'',''),
(1632,'Ticket',54,'',0,'Cruz Alexsandro (8)','2025-01-22 16:52:44',150,'0','20443'),
(1633,'Ticket',54,'',0,'Cruz Alexsandro (8)','2025-01-22 16:52:44',64,'tecnomulti (9)','alexcruz (8)'),
(1634,'Ticket',54,'ITILFollowup',17,'Cruz Alexsandro (8)','2025-01-22 16:52:44',0,'','66'),
(1635,'Ticket',54,'ITILFollowup',12,'Cruz Alexsandro (8)','2025-01-22 16:52:44',0,'','Helpdesk (66)'),
(1636,'Ticket',54,'',0,'Cruz Alexsandro (8)','2025-01-22 16:52:53',12,'1','6'),
(1637,'Ticket',54,'',0,'Cruz Alexsandro (8)','2025-01-22 16:52:53',16,'','2025-01-22 13:52:53'),
(1638,'Ticket',54,'',0,'Cruz Alexsandro (8)','2025-01-22 16:52:53',17,'','2025-01-22 13:52:53'),
(1639,'Ticket',53,'',0,'Cruz Alexsandro (8)','2025-01-22 16:58:17',150,'0','21451'),
(1640,'Ticket',53,'',0,'Cruz Alexsandro (8)','2025-01-22 16:58:17',64,'tecnomulti (9)','alexcruz (8)'),
(1641,'Ticket',53,'ITILFollowup',17,'Cruz Alexsandro (8)','2025-01-22 16:58:17',0,'','67'),
(1642,'Ticket',53,'ITILFollowup',12,'Cruz Alexsandro (8)','2025-01-22 16:58:17',0,'','Helpdesk (67)'),
(1643,'Ticket',53,'',0,'Cruz Alexsandro (8)','2025-01-22 16:58:28',12,'1','2'),
(1644,'Ticket',51,'ITILFollowup',17,'Cruz Alexsandro (8)','2025-01-22 16:59:24',0,'','68'),
(1645,'Ticket',51,'ITILFollowup',12,'Cruz Alexsandro (8)','2025-01-22 16:59:24',0,'','Helpdesk (68)'),
(1646,'Ticket',51,'',0,'Cruz Alexsandro (8)','2025-01-22 16:59:29',12,'1','6'),
(1647,'Ticket',51,'',0,'Cruz Alexsandro (8)','2025-01-22 16:59:29',16,'','2025-01-22 13:59:29'),
(1648,'Ticket',51,'',0,'Cruz Alexsandro (8)','2025-01-22 16:59:29',17,'','2025-01-22 13:59:29'),
(1649,'Ticket',55,'User',15,'tecnomulti (9)','2025-01-23 13:02:02',4,'','tecnomulti (9)'),
(1650,'Ticket',55,'0',20,'tecnomulti (9)','2025-01-23 13:02:02',0,'',''),
(1651,'Ticket',55,'PluginFormcreatorFormAnswer',15,'tecnomulti (9)','2025-01-23 13:02:02',0,'','anacristina.araujo@tecnomulti.com (19)'),
(1652,'PluginFormcreatorFormAnswer',19,'Ticket',15,'tecnomulti (9)','2025-01-23 13:02:02',0,'','SAP COM PROBLEMA  (55)'),
(1653,'PluginFormcreatorFormAnswer',19,'0',20,'tecnomulti (9)','2025-01-23 13:02:02',0,'',''),
(1654,'Ticket',55,'',0,'Cruz Alexsandro (8)','2025-01-23 13:06:27',150,'0','265'),
(1655,'Ticket',55,'',0,'Cruz Alexsandro (8)','2025-01-23 13:06:27',64,'tecnomulti (9)','alexcruz (8)'),
(1656,'Ticket',55,'ITILFollowup',17,'Cruz Alexsandro (8)','2025-01-23 13:06:27',0,'','69'),
(1657,'Ticket',55,'ITILFollowup',12,'Cruz Alexsandro (8)','2025-01-23 13:06:27',0,'','Helpdesk (69)'),
(1658,'Ticket',55,'',0,'Cruz Alexsandro (8)','2025-01-23 13:06:31',12,'1','2'),
(1659,'Document',15,'0',20,'tecnomulti (9)','2025-01-23 13:20:37',0,'',''),
(1660,'Document',15,'ITILFollowup',15,'tecnomulti (9)','2025-01-23 13:20:37',0,'','Acompanhamento (70)'),
(1661,'Ticket',55,'ITILFollowup',17,'tecnomulti (9)','2025-01-23 13:20:37',0,'','70'),
(1662,'Ticket',55,'ITILFollowup',12,'tecnomulti (9)','2025-01-23 13:20:37',0,'','Acompanhamento (70)'),
(1663,'Ticket',55,'ITILFollowup',17,'Cruz Alexsandro (8)','2025-01-23 13:39:21',0,'','71'),
(1664,'Ticket',55,'ITILFollowup',12,'Cruz Alexsandro (8)','2025-01-23 13:39:21',0,'','Helpdesk (71)'),
(1665,'Ticket',55,'',0,'Cruz Alexsandro (8)','2025-01-23 13:39:28',12,'2','6'),
(1666,'Ticket',55,'',0,'Cruz Alexsandro (8)','2025-01-23 13:39:28',16,'','2025-01-23 10:39:28'),
(1667,'Ticket',55,'',0,'Cruz Alexsandro (8)','2025-01-23 13:39:28',17,'','2025-01-23 10:39:28'),
(1668,'Ticket',48,'ITILFollowup',17,'Cruz Alexsandro (8)','2025-01-24 11:59:34',0,'','72'),
(1669,'Ticket',48,'ITILFollowup',12,'Cruz Alexsandro (8)','2025-01-24 11:59:34',0,'','Helpdesk (72)'),
(1670,'Ticket',48,'',0,'Cruz Alexsandro (8)','2025-01-24 11:59:40',12,'2','6'),
(1671,'Ticket',48,'',0,'Cruz Alexsandro (8)','2025-01-24 11:59:40',16,'','2025-01-24 08:59:40'),
(1672,'Ticket',48,'',0,'Cruz Alexsandro (8)','2025-01-24 11:59:40',17,'','2025-01-24 08:59:40'),
(1673,'Ticket',53,'ITILFollowup',17,'Cruz Alexsandro (8)','2025-01-24 12:00:17',0,'','73'),
(1674,'Ticket',53,'ITILFollowup',12,'Cruz Alexsandro (8)','2025-01-24 12:00:17',0,'','Helpdesk (73)'),
(1675,'Ticket',53,'',0,'Cruz Alexsandro (8)','2025-01-24 12:00:22',12,'2','6'),
(1676,'Ticket',53,'',0,'Cruz Alexsandro (8)','2025-01-24 12:00:22',16,'','2025-01-24 09:00:22'),
(1677,'Ticket',53,'',0,'Cruz Alexsandro (8)','2025-01-24 12:00:22',17,'','2025-01-24 09:00:22'),
(1678,'Ticket',56,'User',15,'tecnomulti (9)','2025-01-27 18:40:14',4,'','tecnomulti (9)'),
(1679,'Ticket',56,'0',20,'tecnomulti (9)','2025-01-27 18:40:14',0,'',''),
(1680,'Ticket',56,'PluginFormcreatorFormAnswer',15,'tecnomulti (9)','2025-01-27 18:40:14',0,'','graciane.coelho@tecnomulti.com (20)'),
(1681,'PluginFormcreatorFormAnswer',20,'Ticket',15,'tecnomulti (9)','2025-01-27 18:40:14',0,'','CAIXA DE EMAIL CHEIA  (56)'),
(1682,'PluginFormcreatorFormAnswer',20,'0',20,'tecnomulti (9)','2025-01-27 18:40:14',0,'',''),
(1683,'Ticket',57,'User',15,'tecnomulti (9)','2025-01-28 11:11:21',4,'','tecnomulti (9)'),
(1684,'Ticket',57,'0',20,'tecnomulti (9)','2025-01-28 11:11:21',0,'',''),
(1685,'Ticket',57,'PluginFormcreatorFormAnswer',15,'tecnomulti (9)','2025-01-28 11:11:21',0,'','graciane.coelho@tecnomulti.com (21)'),
(1686,'PluginFormcreatorFormAnswer',21,'Ticket',15,'tecnomulti (9)','2025-01-28 11:11:21',0,'','CAIXA DE EMAIL CHEIA  (57)'),
(1687,'PluginFormcreatorFormAnswer',21,'0',20,'tecnomulti (9)','2025-01-28 11:11:21',0,'',''),
(1688,'Ticket',56,'',0,'Cruz Alexsandro (8)','2025-01-28 11:17:26',150,'0','59832'),
(1689,'Ticket',56,'',0,'Cruz Alexsandro (8)','2025-01-28 11:17:26',64,'tecnomulti (9)','alexcruz (8)'),
(1690,'Ticket',56,'ITILFollowup',17,'Cruz Alexsandro (8)','2025-01-28 11:17:26',0,'','74'),
(1691,'Ticket',56,'ITILFollowup',12,'Cruz Alexsandro (8)','2025-01-28 11:17:26',0,'','Helpdesk (74)'),
(1692,'Ticket',56,'',0,'Cruz Alexsandro (8)','2025-01-28 11:17:31',12,'1','2'),
(1693,'Ticket',56,'ITILFollowup',17,'Cruz Alexsandro (8)','2025-01-28 11:19:49',0,'','75'),
(1694,'Ticket',56,'ITILFollowup',12,'Cruz Alexsandro (8)','2025-01-28 11:19:49',0,'','Helpdesk (75)'),
(1695,'Ticket',57,'',0,'Cruz Alexsandro (8)','2025-01-28 11:41:16',150,'0','1795'),
(1696,'Ticket',57,'',0,'Cruz Alexsandro (8)','2025-01-28 11:41:16',64,'tecnomulti (9)','alexcruz (8)'),
(1697,'Ticket',57,'ITILFollowup',17,'Cruz Alexsandro (8)','2025-01-28 11:41:16',0,'','76'),
(1698,'Ticket',57,'ITILFollowup',12,'Cruz Alexsandro (8)','2025-01-28 11:41:16',0,'','Helpdesk (76)'),
(1699,'Ticket',57,'',0,'Cruz Alexsandro (8)','2025-01-28 11:41:20',12,'1','6'),
(1700,'Ticket',57,'',0,'Cruz Alexsandro (8)','2025-01-28 11:41:20',16,'','2025-01-28 08:41:20'),
(1701,'Ticket',57,'',0,'Cruz Alexsandro (8)','2025-01-28 11:41:20',17,'','2025-01-28 08:41:20'),
(1702,'Ticket',58,'User',15,'tecnomulti (9)','2025-01-28 12:39:13',4,'','tecnomulti (9)'),
(1703,'Ticket',58,'0',20,'tecnomulti (9)','2025-01-28 12:39:13',0,'',''),
(1704,'Ticket',58,'PluginFormcreatorFormAnswer',15,'tecnomulti (9)','2025-01-28 12:39:13',0,'','selma.belizario@tecnomulti.com (22)'),
(1705,'PluginFormcreatorFormAnswer',22,'Ticket',15,'tecnomulti (9)','2025-01-28 12:39:13',0,'','OSP control não está abrindo e ativar o e-mail  (58)'),
(1706,'PluginFormcreatorFormAnswer',22,'0',20,'tecnomulti (9)','2025-01-28 12:39:13',0,'',''),
(1707,'Ticket',56,'ITILFollowup',17,'Cruz Alexsandro (8)','2025-01-28 12:51:31',0,'','77'),
(1708,'Ticket',56,'ITILFollowup',12,'Cruz Alexsandro (8)','2025-01-28 12:51:31',0,'','Helpdesk (77)'),
(1709,'Ticket',56,'',0,'Cruz Alexsandro (8)','2025-01-28 12:51:41',12,'2','6'),
(1710,'Ticket',56,'',0,'Cruz Alexsandro (8)','2025-01-28 12:51:41',16,'','2025-01-28 09:51:41'),
(1711,'Ticket',56,'',0,'Cruz Alexsandro (8)','2025-01-28 12:51:41',17,'','2025-01-28 09:51:41'),
(1712,'Ticket',59,'User',15,'tecnomulti (9)','2025-01-28 13:46:40',4,'','tecnomulti (9)'),
(1713,'Ticket',59,'0',20,'tecnomulti (9)','2025-01-28 13:46:40',0,'',''),
(1714,'Ticket',59,'PluginFormcreatorFormAnswer',15,'tecnomulti (9)','2025-01-28 13:46:40',0,'','gerson.lima@tecnomulti.com (23)'),
(1715,'PluginFormcreatorFormAnswer',23,'Ticket',15,'tecnomulti (9)','2025-01-28 13:46:40',0,'','GOOGLE HEART (59)'),
(1716,'PluginFormcreatorFormAnswer',23,'0',20,'tecnomulti (9)','2025-01-28 13:46:40',0,'',''),
(1717,'Ticket',60,'User',15,'tecnomulti (9)','2025-01-28 13:53:54',4,'','tecnomulti (9)'),
(1718,'Ticket',60,'0',20,'tecnomulti (9)','2025-01-28 13:53:54',0,'',''),
(1719,'Ticket',60,'PluginFormcreatorFormAnswer',15,'tecnomulti (9)','2025-01-28 13:53:54',0,'','monalisa.furtado@tecnomulti.com (24)'),
(1720,'PluginFormcreatorFormAnswer',24,'Ticket',15,'tecnomulti (9)','2025-01-28 13:53:54',0,'','PASTA DE REDE / FROTA (60)'),
(1721,'PluginFormcreatorFormAnswer',24,'0',20,'tecnomulti (9)','2025-01-28 13:53:54',0,'',''),
(1722,'Ticket',60,'',0,'Cruz Alexsandro (8)','2025-01-28 13:58:47',150,'0','293'),
(1723,'Ticket',60,'',0,'Cruz Alexsandro (8)','2025-01-28 13:58:47',64,'tecnomulti (9)','alexcruz (8)'),
(1724,'Ticket',60,'ITILFollowup',17,'Cruz Alexsandro (8)','2025-01-28 13:58:47',0,'','78'),
(1725,'Ticket',60,'ITILFollowup',12,'Cruz Alexsandro (8)','2025-01-28 13:58:47',0,'','Helpdesk (78)'),
(1726,'Ticket',60,'',0,'Cruz Alexsandro (8)','2025-01-28 13:58:52',12,'1','6'),
(1727,'Ticket',60,'',0,'Cruz Alexsandro (8)','2025-01-28 13:58:52',16,'','2025-01-28 10:58:52'),
(1728,'Ticket',60,'',0,'Cruz Alexsandro (8)','2025-01-28 13:58:52',17,'','2025-01-28 10:58:52'),
(1729,'Ticket',61,'User',15,'tecnomulti (9)','2025-01-28 13:59:04',4,'','tecnomulti (9)'),
(1730,'Ticket',61,'0',20,'tecnomulti (9)','2025-01-28 13:59:04',0,'',''),
(1731,'Ticket',61,'PluginFormcreatorFormAnswer',15,'tecnomulti (9)','2025-01-28 13:59:04',0,'','monalisa.furtado@tecnomulti.com (25)'),
(1732,'PluginFormcreatorFormAnswer',25,'Ticket',15,'tecnomulti (9)','2025-01-28 13:59:04',0,'','PASTA DE REDE / FROTA (61)'),
(1733,'PluginFormcreatorFormAnswer',25,'0',20,'tecnomulti (9)','2025-01-28 13:59:04',0,'',''),
(1734,'Ticket',59,'',0,'Cruz Alexsandro (8)','2025-01-28 13:59:29',150,'0','769'),
(1735,'Ticket',59,'',0,'Cruz Alexsandro (8)','2025-01-28 13:59:29',64,'tecnomulti (9)','alexcruz (8)'),
(1736,'Ticket',59,'ITILFollowup',17,'Cruz Alexsandro (8)','2025-01-28 13:59:29',0,'','79'),
(1737,'Ticket',59,'ITILFollowup',12,'Cruz Alexsandro (8)','2025-01-28 13:59:29',0,'','Helpdesk (79)'),
(1738,'Ticket',59,'',0,'Cruz Alexsandro (8)','2025-01-28 13:59:33',12,'1','2'),
(1739,'Ticket',61,'',0,'Cruz Alexsandro (8)','2025-01-28 14:01:08',7,'Sistema Operacional/Programas (5)','Rede/Internet (2)'),
(1740,'Ticket',61,'',0,'Cruz Alexsandro (8)','2025-01-28 14:01:08',64,'tecnomulti (9)','alexcruz (8)'),
(1741,'Ticket',61,'',0,'Cruz Alexsandro (8)','2025-01-28 14:02:01',150,'0','177'),
(1742,'Ticket',61,'ITILFollowup',17,'Cruz Alexsandro (8)','2025-01-28 14:02:01',0,'','80'),
(1743,'Ticket',61,'ITILFollowup',12,'Cruz Alexsandro (8)','2025-01-28 14:02:01',0,'','Helpdesk (80)'),
(1744,'Ticket',61,'',0,'Cruz Alexsandro (8)','2025-01-28 14:02:05',12,'1','6'),
(1745,'Ticket',61,'',0,'Cruz Alexsandro (8)','2025-01-28 14:02:05',16,'','2025-01-28 11:02:05'),
(1746,'Ticket',61,'',0,'Cruz Alexsandro (8)','2025-01-28 14:02:05',17,'','2025-01-28 11:02:05'),
(1747,'Ticket',62,'User',15,'tecnomulti (9)','2025-01-28 14:02:27',4,'','tecnomulti (9)'),
(1748,'Ticket',62,'0',20,'tecnomulti (9)','2025-01-28 14:02:27',0,'',''),
(1749,'Ticket',62,'PluginFormcreatorFormAnswer',15,'tecnomulti (9)','2025-01-28 14:02:27',0,'','laryssa.felix@tecnomulti.com (26)'),
(1750,'PluginFormcreatorFormAnswer',26,'Ticket',15,'tecnomulti (9)','2025-01-28 14:02:27',0,'','PASTA FROTA (62)'),
(1751,'PluginFormcreatorFormAnswer',26,'0',20,'tecnomulti (9)','2025-01-28 14:02:27',0,'',''),
(1752,'Ticket',63,'User',15,'tecnomulti (9)','2025-01-28 14:04:55',4,'','tecnomulti (9)'),
(1753,'Ticket',63,'0',20,'tecnomulti (9)','2025-01-28 14:04:55',0,'',''),
(1754,'Ticket',63,'PluginFormcreatorFormAnswer',15,'tecnomulti (9)','2025-01-28 14:04:55',0,'','joaopaulo.leite@tecnomulti.com (27)'),
(1755,'PluginFormcreatorFormAnswer',27,'Ticket',15,'tecnomulti (9)','2025-01-28 14:04:55',0,'','PASTA DE REDE / FROTA (63)'),
(1756,'PluginFormcreatorFormAnswer',27,'0',20,'tecnomulti (9)','2025-01-28 14:04:55',0,'',''),
(1757,'Ticket',62,'',0,'Cruz Alexsandro (8)','2025-01-28 14:05:13',150,'0','166'),
(1758,'Ticket',62,'',0,'Cruz Alexsandro (8)','2025-01-28 14:05:13',64,'tecnomulti (9)','alexcruz (8)'),
(1759,'Ticket',62,'ITILFollowup',17,'Cruz Alexsandro (8)','2025-01-28 14:05:13',0,'','81'),
(1760,'Ticket',62,'ITILFollowup',12,'Cruz Alexsandro (8)','2025-01-28 14:05:13',0,'','Helpdesk (81)'),
(1761,'Ticket',62,'',0,'Cruz Alexsandro (8)','2025-01-28 14:05:20',12,'1','6'),
(1762,'Ticket',62,'',0,'Cruz Alexsandro (8)','2025-01-28 14:05:20',16,'','2025-01-28 11:05:20'),
(1763,'Ticket',62,'',0,'Cruz Alexsandro (8)','2025-01-28 14:05:20',17,'','2025-01-28 11:05:20'),
(1764,'Ticket',64,'User',15,'tecnomulti (9)','2025-01-28 14:06:03',4,'','tecnomulti (9)'),
(1765,'Ticket',64,'0',20,'tecnomulti (9)','2025-01-28 14:06:03',0,'',''),
(1766,'Ticket',64,'PluginFormcreatorFormAnswer',15,'tecnomulti (9)','2025-01-28 14:06:03',0,'','arthur.abreu@tecnomulti.com (28)'),
(1767,'PluginFormcreatorFormAnswer',28,'Ticket',15,'tecnomulti (9)','2025-01-28 14:06:03',0,'','PASTA DE REDE / FROTA (64)'),
(1768,'PluginFormcreatorFormAnswer',28,'0',20,'tecnomulti (9)','2025-01-28 14:06:03',0,'',''),
(1769,'Ticket',63,'',0,'Cruz Alexsandro (8)','2025-01-28 14:06:10',150,'0','75'),
(1770,'Ticket',63,'',0,'Cruz Alexsandro (8)','2025-01-28 14:06:10',64,'tecnomulti (9)','alexcruz (8)'),
(1771,'Ticket',63,'ITILFollowup',17,'Cruz Alexsandro (8)','2025-01-28 14:06:10',0,'','82'),
(1772,'Ticket',63,'ITILFollowup',12,'Cruz Alexsandro (8)','2025-01-28 14:06:10',0,'','Helpdesk (82)'),
(1773,'Ticket',59,'ITILFollowup',17,'tecnomulti (9)','2025-01-28 14:06:51',0,'','83'),
(1774,'Ticket',59,'ITILFollowup',12,'tecnomulti (9)','2025-01-28 14:06:51',0,'','Acompanhamento (83)'),
(1775,'Ticket',63,'',0,'Cruz Alexsandro (8)','2025-01-28 14:11:39',12,'1','6'),
(1776,'Ticket',63,'',0,'Cruz Alexsandro (8)','2025-01-28 14:11:39',16,'','2025-01-28 11:11:39'),
(1777,'Ticket',63,'',0,'Cruz Alexsandro (8)','2025-01-28 14:11:39',17,'','2025-01-28 11:11:39'),
(1778,'Ticket',64,'',0,'Cruz Alexsandro (8)','2025-01-28 14:13:32',150,'0','449'),
(1779,'Ticket',64,'',0,'Cruz Alexsandro (8)','2025-01-28 14:13:32',64,'tecnomulti (9)','alexcruz (8)'),
(1780,'Ticket',64,'ITILFollowup',17,'Cruz Alexsandro (8)','2025-01-28 14:13:32',0,'','84'),
(1781,'Ticket',64,'ITILFollowup',12,'Cruz Alexsandro (8)','2025-01-28 14:13:32',0,'','Helpdesk (84)'),
(1782,'Ticket',64,'',0,'Cruz Alexsandro (8)','2025-01-28 14:13:35',12,'1','6'),
(1783,'Ticket',64,'',0,'Cruz Alexsandro (8)','2025-01-28 14:13:35',16,'','2025-01-28 11:13:35'),
(1784,'Ticket',64,'',0,'Cruz Alexsandro (8)','2025-01-28 14:13:35',17,'','2025-01-28 11:13:35'),
(1785,'Ticket',65,'User',15,'tecnomulti (9)','2025-01-28 14:16:01',4,'','tecnomulti (9)'),
(1786,'Ticket',65,'0',20,'tecnomulti (9)','2025-01-28 14:16:01',0,'',''),
(1787,'Ticket',65,'PluginFormcreatorFormAnswer',15,'tecnomulti (9)','2025-01-28 14:16:01',0,'','gilmar.lourenco@tecnomulti.com (29)'),
(1788,'PluginFormcreatorFormAnswer',29,'Ticket',15,'tecnomulti (9)','2025-01-28 14:16:01',0,'','PASTA DE REDE / FROTA (65)'),
(1789,'PluginFormcreatorFormAnswer',29,'0',20,'tecnomulti (9)','2025-01-28 14:16:01',0,'',''),
(1790,'Ticket',66,'User',15,'tecnomulti (9)','2025-01-28 14:31:35',4,'','tecnomulti (9)'),
(1791,'Ticket',66,'0',20,'tecnomulti (9)','2025-01-28 14:31:35',0,'',''),
(1792,'Ticket',66,'PluginFormcreatorFormAnswer',15,'tecnomulti (9)','2025-01-28 14:31:35',0,'','jose.carmo@tecnomulti.com (30)'),
(1793,'PluginFormcreatorFormAnswer',30,'Ticket',15,'tecnomulti (9)','2025-01-28 14:31:35',0,'','Configurar o SAP  (66)'),
(1794,'PluginFormcreatorFormAnswer',30,'0',20,'tecnomulti (9)','2025-01-28 14:31:35',0,'',''),
(1795,'Ticket',31,'ITILFollowup',17,'Medeiros Luan (10)','2025-01-28 14:40:22',0,'','85'),
(1796,'Ticket',31,'ITILFollowup',12,'Medeiros Luan (10)','2025-01-28 14:40:22',0,'','Helpdesk (85)'),
(1797,'Ticket',31,'',0,'Medeiros Luan (10)','2025-01-28 14:40:30',12,'4','6'),
(1798,'Ticket',31,'',0,'Medeiros Luan (10)','2025-01-28 14:40:30',16,'','2025-01-28 11:40:30'),
(1799,'Ticket',31,'',0,'Medeiros Luan (10)','2025-01-28 14:40:30',17,'','2025-01-28 11:40:30'),
(1800,'Ticket',58,'',0,'Medeiros Luan (10)','2025-01-28 14:42:25',150,'0','7392'),
(1801,'Ticket',58,'',0,'Medeiros Luan (10)','2025-01-28 14:42:25',64,'tecnomulti (9)','luanmedeiros (10)'),
(1802,'Ticket',58,'ITILFollowup',17,'Medeiros Luan (10)','2025-01-28 14:42:25',0,'','86'),
(1803,'Ticket',58,'ITILFollowup',12,'Medeiros Luan (10)','2025-01-28 14:42:25',0,'','Helpdesk (86)'),
(1804,'Ticket',58,'',0,'Medeiros Luan (10)','2025-01-28 14:44:09',12,'1','2'),
(1805,'Ticket',59,'ITILFollowup',17,'tecnomulti (9)','2025-01-28 14:46:04',0,'','87'),
(1806,'Ticket',59,'ITILFollowup',12,'tecnomulti (9)','2025-01-28 14:46:04',0,'','Acompanhamento (87)'),
(1807,'Ticket',65,'',0,'Medeiros Luan (10)','2025-01-28 14:49:25',150,'0','2004'),
(1808,'Ticket',65,'',0,'Medeiros Luan (10)','2025-01-28 14:49:25',64,'tecnomulti (9)','luanmedeiros (10)'),
(1809,'Ticket',65,'ITILFollowup',17,'Medeiros Luan (10)','2025-01-28 14:49:25',0,'','88'),
(1810,'Ticket',65,'ITILFollowup',12,'Medeiros Luan (10)','2025-01-28 14:49:25',0,'','Helpdesk (88)'),
(1811,'Ticket',65,'',0,'Medeiros Luan (10)','2025-01-28 14:49:48',12,'1','6'),
(1812,'Ticket',65,'',0,'Medeiros Luan (10)','2025-01-28 14:49:48',16,'','2025-01-28 11:49:48'),
(1813,'Ticket',65,'',0,'Medeiros Luan (10)','2025-01-28 14:49:48',17,'','2025-01-28 11:49:48'),
(1814,'Ticket',66,'',0,'Medeiros Luan (10)','2025-01-28 14:52:26',150,'0','1251'),
(1815,'Ticket',66,'',0,'Medeiros Luan (10)','2025-01-28 14:52:26',64,'tecnomulti (9)','luanmedeiros (10)'),
(1816,'Ticket',66,'ITILFollowup',17,'Medeiros Luan (10)','2025-01-28 14:52:26',0,'','89'),
(1817,'Ticket',66,'ITILFollowup',12,'Medeiros Luan (10)','2025-01-28 14:52:26',0,'','Helpdesk (89)'),
(1818,'Ticket',66,'',0,'Medeiros Luan (10)','2025-01-28 14:52:57',12,'1','2'),
(1819,'Ticket',59,'ITILFollowup',17,'tecnomulti (9)','2025-01-28 14:53:00',0,'','90'),
(1820,'Ticket',59,'ITILFollowup',12,'tecnomulti (9)','2025-01-28 14:53:00',0,'','Acompanhamento (90)'),
(1821,'Ticket',67,'User',15,'tecnomulti (9)','2025-01-28 15:12:53',4,'','tecnomulti (9)'),
(1822,'Ticket',67,'0',20,'tecnomulti (9)','2025-01-28 15:12:53',0,'',''),
(1823,'Ticket',67,'PluginFormcreatorFormAnswer',15,'tecnomulti (9)','2025-01-28 15:12:53',0,'','elton.jorge@tecnomulti.com (31)'),
(1824,'PluginFormcreatorFormAnswer',31,'Ticket',15,'tecnomulti (9)','2025-01-28 15:12:53',0,'','CONECTAR IMPRESSORA NO PC (67)'),
(1825,'PluginFormcreatorFormAnswer',31,'0',20,'tecnomulti (9)','2025-01-28 15:12:53',0,'',''),
(1826,'Ticket',67,'',0,'Medeiros Luan (10)','2025-01-28 15:22:05',150,'0','552'),
(1827,'Ticket',67,'',0,'Medeiros Luan (10)','2025-01-28 15:22:05',64,'tecnomulti (9)','luanmedeiros (10)'),
(1828,'Ticket',67,'ITILFollowup',17,'Medeiros Luan (10)','2025-01-28 15:22:05',0,'','91'),
(1829,'Ticket',67,'ITILFollowup',12,'Medeiros Luan (10)','2025-01-28 15:22:05',0,'','Helpdesk (91)'),
(1830,'Ticket',67,'',0,'Medeiros Luan (10)','2025-01-28 15:22:10',12,'1','2'),
(1831,'Ticket',66,'ITILFollowup',17,'tecnomulti (9)','2025-01-28 16:46:27',0,'','92'),
(1832,'Ticket',66,'ITILFollowup',12,'tecnomulti (9)','2025-01-28 16:46:27',0,'','Acompanhamento (92)'),
(1833,'Ticket',59,'ITILFollowup',17,'tecnomulti (9)','2025-01-28 17:02:03',0,'','93'),
(1834,'Ticket',59,'ITILFollowup',12,'tecnomulti (9)','2025-01-28 17:02:03',0,'','Acompanhamento (93)'),
(1835,'Ticket',59,'ITILFollowup',17,'Medeiros Luan (10)','2025-01-28 18:15:44',0,'','94'),
(1836,'Ticket',59,'ITILFollowup',12,'Medeiros Luan (10)','2025-01-28 18:15:44',0,'','Helpdesk (94)'),
(1837,'Ticket',59,'ITILFollowup',17,'tecnomulti (9)','2025-01-28 18:17:02',0,'','95'),
(1838,'Ticket',59,'ITILFollowup',12,'tecnomulti (9)','2025-01-28 18:17:02',0,'','Acompanhamento (95)'),
(1839,'Ticket',59,'ITILFollowup',17,'tecnomulti (9)','2025-01-28 18:18:38',0,'','96'),
(1840,'Ticket',59,'ITILFollowup',12,'tecnomulti (9)','2025-01-28 18:18:38',0,'','Acompanhamento (96)'),
(1841,'Ticket',68,'User',15,'tecnomulti (9)','2025-01-28 18:47:27',4,'','tecnomulti (9)'),
(1842,'Ticket',68,'0',20,'tecnomulti (9)','2025-01-28 18:47:27',0,'',''),
(1843,'Ticket',68,'PluginFormcreatorFormAnswer',15,'tecnomulti (9)','2025-01-28 18:47:27',0,'','vinicius.silveira@tecnomulti.com (32)'),
(1844,'PluginFormcreatorFormAnswer',32,'Ticket',15,'tecnomulti (9)','2025-01-28 18:47:27',0,'','Caixa de E-mail Lotada (68)'),
(1845,'PluginFormcreatorFormAnswer',32,'0',20,'tecnomulti (9)','2025-01-28 18:47:27',0,'',''),
(1846,'Ticket',59,'ITILFollowup',17,'Medeiros Luan (10)','2025-01-28 18:53:51',0,'','97'),
(1847,'Ticket',59,'ITILFollowup',12,'Medeiros Luan (10)','2025-01-28 18:53:51',0,'','Helpdesk (97)'),
(1848,'Ticket',59,'ITILFollowup',17,'Medeiros Luan (10)','2025-01-28 18:56:08',0,'','98'),
(1849,'Ticket',59,'ITILFollowup',12,'Medeiros Luan (10)','2025-01-28 18:56:08',0,'','Helpdesk (98)'),
(1850,'Ticket',59,'',0,'Medeiros Luan (10)','2025-01-28 19:27:19',12,'2','6'),
(1851,'Ticket',59,'',0,'Medeiros Luan (10)','2025-01-28 19:27:19',16,'','2025-01-28 16:27:19'),
(1852,'Ticket',59,'',0,'Medeiros Luan (10)','2025-01-28 19:27:19',17,'','2025-01-28 16:27:19'),
(1853,'Ticket',68,'',0,'Cruz Alexsandro (8)','2025-01-28 20:17:22',150,'0','5395'),
(1854,'Ticket',68,'',0,'Cruz Alexsandro (8)','2025-01-28 20:17:22',64,'tecnomulti (9)','alexcruz (8)'),
(1855,'Ticket',68,'ITILFollowup',17,'Cruz Alexsandro (8)','2025-01-28 20:17:22',0,'','99'),
(1856,'Ticket',68,'ITILFollowup',12,'Cruz Alexsandro (8)','2025-01-28 20:17:22',0,'','Helpdesk (99)'),
(1857,'Ticket',68,'',0,'Cruz Alexsandro (8)','2025-01-28 20:17:28',12,'1','6'),
(1858,'Ticket',68,'',0,'Cruz Alexsandro (8)','2025-01-28 20:17:28',16,'','2025-01-28 17:17:28'),
(1859,'Ticket',68,'',0,'Cruz Alexsandro (8)','2025-01-28 20:17:28',17,'','2025-01-28 17:17:28'),
(1860,'Ticket',67,'ITILFollowup',17,'Cruz Alexsandro (8)','2025-01-28 20:18:35',0,'','100'),
(1861,'Ticket',67,'ITILFollowup',12,'Cruz Alexsandro (8)','2025-01-28 20:18:35',0,'','Helpdesk (100)'),
(1862,'Ticket',67,'',0,'Cruz Alexsandro (8)','2025-01-28 20:18:45',12,'2','6'),
(1863,'Ticket',67,'',0,'Cruz Alexsandro (8)','2025-01-28 20:18:45',16,'','2025-01-28 17:18:45'),
(1864,'Ticket',67,'',0,'Cruz Alexsandro (8)','2025-01-28 20:18:45',17,'','2025-01-28 17:18:45'),
(1865,'Ticket',66,'ITILFollowup',17,'Cruz Alexsandro (8)','2025-01-28 20:20:25',0,'','101'),
(1866,'Ticket',66,'ITILFollowup',12,'Cruz Alexsandro (8)','2025-01-28 20:20:25',0,'','Helpdesk (101)'),
(1867,'Ticket',66,'',0,'Cruz Alexsandro (8)','2025-01-28 20:20:30',12,'2','6'),
(1868,'Ticket',66,'',0,'Cruz Alexsandro (8)','2025-01-28 20:20:30',16,'','2025-01-28 17:20:30'),
(1869,'Ticket',66,'',0,'Cruz Alexsandro (8)','2025-01-28 20:20:30',17,'','2025-01-28 17:20:30'),
(1870,'Notification',3,'',0,'Souza Paulo Victor (7)','2025-01-29 02:50:37',6,'0','1'),
(1871,'Notification',3,'NotificationTemplate',15,'Souza Paulo Victor (7)','2025-01-29 02:54:33',0,'','Tickets (4)'),
(1872,'NotificationTemplate',4,'Notification',15,'Souza Paulo Victor (7)','2025-01-29 02:54:33',0,'','Update Ticket (3)'),
(1873,'Notification',3,'NotificationTargetTicket',17,'Souza Paulo Victor (7)','2025-01-29 02:55:31',0,'','Perfil: Super-Admin (150)'),
(1875,'Notification',3,'NotificationTargetTicket',17,'Souza Paulo Victor (7)','2025-01-29 02:55:31',0,'','Perfil: Usuário Padrão (151)'),
(1876,'NotificationTargetTicket',151,'0',20,'Souza Paulo Victor (7)','2025-01-29 02:55:31',0,'',''),
(1880,'PluginFormcreatorFormAnswer',33,'Ticket',15,'tecnomulti (9)','2025-01-29 02:56:40',0,'','teste (69)'),
(1881,'PluginFormcreatorFormAnswer',33,'0',20,'tecnomulti (9)','2025-01-29 02:56:40',0,'',''),
(1897,'Notification',5,'NotificationTemplate',15,'Souza Paulo Victor (7)','2025-01-29 03:03:44',0,'','Tickets (4)'),
(1898,'NotificationTemplate',4,'Notification',15,'Souza Paulo Victor (7)','2025-01-29 03:03:44',0,'','Add Followup (5)'),
(1902,'Notification',5,'NotificationTargetTicket',17,'Souza Paulo Victor (7)','2025-01-29 03:04:52',0,'','Técnico encarregado do chamado (152)'),
(1903,'NotificationTargetTicket',152,'0',20,'Souza Paulo Victor (7)','2025-01-29 03:04:52',0,'',''),
(1904,'Notification',5,'NotificationTargetTicket',17,'Souza Paulo Victor (7)','2025-01-29 03:04:52',0,'','Perfil: Super-Admin (153)'),
(1917,'Notification',5,'NotificationTargetTicket',17,'Souza Paulo Victor (7)','2025-01-29 03:08:15',0,'','Perfil: Usuário Padrão (154)'),
(1918,'NotificationTargetTicket',154,'0',20,'Souza Paulo Victor (7)','2025-01-29 03:08:15',0,'',''),
(1943,'Profile',1,'',0,'Souza Paulo Victor (7)','2025-01-29 03:17:03',118,'1','0'),
(1950,'Notification',3,'NotificationTargetTicket',19,'Souza Paulo Victor (7)','2025-01-29 03:20:32',0,'Perfil: Super-Admin (150)',''),
(1951,'Notification',5,'NotificationTargetTicket',17,'Souza Paulo Victor (7)','2025-01-29 03:21:33',0,'','Perfil: Wintech (155)'),
(1952,'NotificationTargetTicket',155,'0',20,'Souza Paulo Victor (7)','2025-01-29 03:21:33',0,'',''),
(1953,'Notification',5,'NotificationTargetTicket',19,'Souza Paulo Victor (7)','2025-01-29 03:21:33',0,'Perfil: Super-Admin (153)',''),
(1954,'Ticket',70,'User',15,'tecnomulti (9)','2025-01-29 11:52:14',4,'','tecnomulti (9)'),
(1955,'Ticket',70,'0',20,'tecnomulti (9)','2025-01-29 11:52:14',0,'',''),
(1956,'Ticket',70,'PluginFormcreatorFormAnswer',15,'tecnomulti (9)','2025-01-29 11:52:14',0,'','geimisson.marques@tecnomulti.com (34)'),
(1957,'PluginFormcreatorFormAnswer',34,'Ticket',15,'tecnomulti (9)','2025-01-29 11:52:14',0,'','Email - Alexandre Onassis (70)'),
(1958,'PluginFormcreatorFormAnswer',34,'0',20,'tecnomulti (9)','2025-01-29 11:52:14',0,'',''),
(1959,'Ticket',70,'',0,'Cruz Alexsandro (8)','2025-01-29 11:53:33',150,'0','79'),
(1960,'Ticket',70,'',0,'Cruz Alexsandro (8)','2025-01-29 11:53:33',64,'tecnomulti (9)','alexcruz (8)'),
(1961,'Ticket',70,'ITILFollowup',17,'Cruz Alexsandro (8)','2025-01-29 11:53:33',0,'','118'),
(1962,'Ticket',70,'ITILFollowup',12,'Cruz Alexsandro (8)','2025-01-29 11:53:33',0,'','Helpdesk (118)'),
(1963,'Ticket',70,'',0,'Cruz Alexsandro (8)','2025-01-29 11:53:46',12,'1','2'),
(1964,'Ticket',70,'ITILFollowup',17,'tecnomulti (9)','2025-01-29 11:55:13',0,'','119'),
(1965,'Ticket',70,'ITILFollowup',12,'tecnomulti (9)','2025-01-29 11:55:13',0,'','Acompanhamento (119)'),
(1966,'Ticket',71,'User',15,'tecnomulti (9)','2025-01-29 11:59:27',4,'','tecnomulti (9)'),
(1967,'Ticket',71,'0',20,'tecnomulti (9)','2025-01-29 11:59:27',0,'',''),
(1968,'Ticket',71,'PluginFormcreatorFormAnswer',15,'tecnomulti (9)','2025-01-29 11:59:27',0,'','Sebastiao.clesio@tecnomulti.com (35)'),
(1969,'PluginFormcreatorFormAnswer',35,'Ticket',15,'tecnomulti (9)','2025-01-29 11:59:27',0,'','configurar VPN (71)'),
(1970,'PluginFormcreatorFormAnswer',35,'0',20,'tecnomulti (9)','2025-01-29 11:59:27',0,'',''),
(1971,'Ticket',70,'ITILFollowup',17,'Cruz Alexsandro (8)','2025-01-29 12:01:09',0,'','120'),
(1972,'Ticket',70,'ITILFollowup',12,'Cruz Alexsandro (8)','2025-01-29 12:01:09',0,'','Helpdesk (120)'),
(1973,'Ticket',70,'',0,'Cruz Alexsandro (8)','2025-01-29 12:01:16',12,'2','6'),
(1974,'Ticket',70,'',0,'Cruz Alexsandro (8)','2025-01-29 12:01:16',16,'','2025-01-29 09:01:16'),
(1975,'Ticket',70,'',0,'Cruz Alexsandro (8)','2025-01-29 12:01:16',17,'','2025-01-29 09:01:16'),
(1976,'Ticket',71,'',0,'Cruz Alexsandro (8)','2025-01-29 12:06:20',150,'0','413'),
(1977,'Ticket',71,'',0,'Cruz Alexsandro (8)','2025-01-29 12:06:20',64,'tecnomulti (9)','alexcruz (8)'),
(1978,'Ticket',71,'ITILFollowup',17,'Cruz Alexsandro (8)','2025-01-29 12:06:20',0,'','121'),
(1979,'Ticket',71,'ITILFollowup',12,'Cruz Alexsandro (8)','2025-01-29 12:06:20',0,'','Helpdesk (121)'),
(1980,'Ticket',71,'',0,'Cruz Alexsandro (8)','2025-01-29 12:06:26',12,'1','6'),
(1981,'Ticket',71,'',0,'Cruz Alexsandro (8)','2025-01-29 12:06:26',16,'','2025-01-29 09:06:26'),
(1982,'Ticket',71,'',0,'Cruz Alexsandro (8)','2025-01-29 12:06:26',17,'','2025-01-29 09:06:26'),
(1983,'Ticket',72,'User',15,'tecnomulti (9)','2025-01-30 11:24:45',4,'','tecnomulti (9)'),
(1984,'Ticket',72,'0',20,'tecnomulti (9)','2025-01-30 11:24:45',0,'',''),
(1985,'Ticket',72,'PluginFormcreatorFormAnswer',15,'tecnomulti (9)','2025-01-30 11:24:45',0,'','lorenalarissa88@gmail.com (36)'),
(1986,'PluginFormcreatorFormAnswer',36,'Ticket',15,'tecnomulti (9)','2025-01-30 11:24:45',0,'','sistema sap não fica com o acesso (72)'),
(1987,'PluginFormcreatorFormAnswer',36,'0',20,'tecnomulti (9)','2025-01-30 11:24:45',0,'',''),
(1988,'Ticket',72,'',0,'Cruz Alexsandro (8)','2025-01-30 11:45:58',150,'0','1273'),
(1989,'Ticket',72,'',0,'Cruz Alexsandro (8)','2025-01-30 11:45:58',64,'tecnomulti (9)','alexcruz (8)'),
(1990,'Ticket',72,'ITILFollowup',17,'Cruz Alexsandro (8)','2025-01-30 11:45:58',0,'','122'),
(1991,'Ticket',72,'ITILFollowup',12,'Cruz Alexsandro (8)','2025-01-30 11:45:58',0,'','Helpdesk (122)'),
(1992,'Ticket',72,'',0,'Cruz Alexsandro (8)','2025-01-30 11:46:08',12,'1','2'),
(1993,'Ticket',72,'ITILFollowup',17,'Cruz Alexsandro (8)','2025-01-30 11:51:01',0,'','123'),
(1994,'Ticket',72,'ITILFollowup',12,'Cruz Alexsandro (8)','2025-01-30 11:51:01',0,'','Helpdesk (123)'),
(1995,'Ticket',72,'',0,'Cruz Alexsandro (8)','2025-01-30 11:51:10',12,'2','6'),
(1996,'Ticket',72,'',0,'Cruz Alexsandro (8)','2025-01-30 11:51:10',16,'','2025-01-30 08:51:10'),
(1997,'Ticket',72,'',0,'Cruz Alexsandro (8)','2025-01-30 11:51:10',17,'','2025-01-30 08:51:10'),
(1998,'Document',16,'0',20,'tecnomulti (9)','2025-01-30 13:44:22',0,'',''),
(1999,'Document',16,'PluginFormcreatorFormAnswer',15,'tecnomulti (9)','2025-01-30 13:44:22',0,'','lanna1457@gmail.com (37)'),
(2000,'PluginFormcreatorFormAnswer',37,'Document',15,'tecnomulti (9)','2025-01-30 13:44:22',0,'','62cec9b0a6d018.94592529image_paste1600066.png (16)'),
(2001,'Document',16,'',0,'tecnomulti (9)','2025-01-30 13:44:22',3,'62cec9b0a6d018.94592529image_paste1600066.png','image_paste.png'),
(2002,'Document',16,'Ticket',15,'tecnomulti (9)','2025-01-30 13:44:22',0,'','PROBLEMA AO ACESSAR SAP / CITRIX (73)'),
(2003,'Ticket',73,'Document',15,'tecnomulti (9)','2025-01-30 13:44:22',0,'','62cec9b0a6d018.94592529image_paste1600066.png (16)'),
(2004,'Ticket',73,'User',15,'tecnomulti (9)','2025-01-30 13:44:22',4,'','tecnomulti (9)'),
(2005,'Ticket',73,'0',20,'tecnomulti (9)','2025-01-30 13:44:22',0,'',''),
(2006,'Ticket',73,'PluginFormcreatorFormAnswer',15,'tecnomulti (9)','2025-01-30 13:44:22',0,'','lanna1457@gmail.com (37)'),
(2007,'PluginFormcreatorFormAnswer',37,'Ticket',15,'tecnomulti (9)','2025-01-30 13:44:22',0,'','PROBLEMA AO ACESSAR SAP / CITRIX (73)'),
(2008,'PluginFormcreatorFormAnswer',37,'0',20,'tecnomulti (9)','2025-01-30 13:44:22',0,'',''),
(2009,'Ticket',73,'',0,'Cruz Alexsandro (8)','2025-01-30 15:36:30',150,'0','6728'),
(2010,'Ticket',73,'',0,'Cruz Alexsandro (8)','2025-01-30 15:36:30',64,'tecnomulti (9)','alexcruz (8)'),
(2011,'Ticket',73,'ITILFollowup',17,'Cruz Alexsandro (8)','2025-01-30 15:36:30',0,'','124'),
(2012,'Ticket',73,'ITILFollowup',12,'Cruz Alexsandro (8)','2025-01-30 15:36:30',0,'','Helpdesk (124)'),
(2013,'Ticket',73,'',0,'Cruz Alexsandro (8)','2025-01-30 15:37:07',12,'1','2'),
(2014,'Ticket',58,'',0,'Cruz Alexsandro (8)','2025-01-30 15:41:34',64,'luanmedeiros (10)','alexcruz (8)'),
(2015,'Ticket',58,'User',15,'Cruz Alexsandro (8)','2025-01-30 15:41:34',5,'','Alexsandro Cruz (8)'),
(2016,'Ticket',58,'ITILFollowup',17,'tecnomulti (9)','2025-01-30 16:49:36',0,'','125'),
(2017,'Ticket',58,'ITILFollowup',12,'tecnomulti (9)','2025-01-30 16:49:36',0,'','Acompanhamento (125)'),
(2018,'Ticket',74,'User',15,'tecnomulti (9)','2025-01-30 17:53:59',4,'','tecnomulti (9)'),
(2019,'Ticket',74,'0',20,'tecnomulti (9)','2025-01-30 17:53:59',0,'',''),
(2020,'Ticket',74,'PluginFormcreatorFormAnswer',15,'tecnomulti (9)','2025-01-30 17:53:59',0,'','flavia.chagas@tecnomulti.com (38)'),
(2021,'PluginFormcreatorFormAnswer',38,'Ticket',15,'tecnomulti (9)','2025-01-30 17:53:59',0,'','EMAIL (74)'),
(2022,'PluginFormcreatorFormAnswer',38,'0',20,'tecnomulti (9)','2025-01-30 17:53:59',0,'',''),
(2023,'Ticket',74,'ITILFollowup',17,'tecnomulti (9)','2025-01-30 18:05:36',0,'','126'),
(2024,'Ticket',74,'ITILFollowup',12,'tecnomulti (9)','2025-01-30 18:05:36',0,'','Acompanhamento (126)'),
(2025,'Ticket',75,'User',15,'tecnomulti (9)','2025-01-30 18:41:10',4,'','tecnomulti (9)'),
(2026,'Ticket',75,'0',20,'tecnomulti (9)','2025-01-30 18:41:10',0,'',''),
(2027,'Ticket',75,'PluginFormcreatorFormAnswer',15,'tecnomulti (9)','2025-01-30 18:41:10',0,'','denilson.marques@tecnomulti.com (39)'),
(2028,'PluginFormcreatorFormAnswer',39,'Ticket',15,'tecnomulti (9)','2025-01-30 18:41:10',0,'','INSTALAR NOBREAK (75)'),
(2029,'PluginFormcreatorFormAnswer',39,'0',20,'tecnomulti (9)','2025-01-30 18:41:10',0,'',''),
(2030,'Ticket',74,'',0,'Cruz Alexsandro (8)','2025-01-30 18:50:29',150,'0','3390'),
(2031,'Ticket',74,'',0,'Cruz Alexsandro (8)','2025-01-30 18:50:29',64,'tecnomulti (9)','alexcruz (8)'),
(2032,'Ticket',74,'ITILFollowup',17,'Cruz Alexsandro (8)','2025-01-30 18:50:29',0,'','127'),
(2033,'Ticket',74,'ITILFollowup',12,'Cruz Alexsandro (8)','2025-01-30 18:50:29',0,'','Helpdesk (127)'),
(2034,'Ticket',74,'',0,'Cruz Alexsandro (8)','2025-01-30 18:50:35',12,'1','2'),
(2035,'Ticket',73,'ITILFollowup',17,'Cruz Alexsandro (8)','2025-01-30 18:52:09',0,'','128'),
(2036,'Ticket',73,'ITILFollowup',12,'Cruz Alexsandro (8)','2025-01-30 18:52:09',0,'','Helpdesk (128)'),
(2037,'Ticket',73,'',0,'Cruz Alexsandro (8)','2025-01-30 18:52:14',12,'2','6'),
(2038,'Ticket',73,'',0,'Cruz Alexsandro (8)','2025-01-30 18:52:14',16,'','2025-01-30 15:52:14'),
(2039,'Ticket',73,'',0,'Cruz Alexsandro (8)','2025-01-30 18:52:14',17,'','2025-01-30 15:52:14'),
(2040,'Ticket',74,'ITILFollowup',17,'Cruz Alexsandro (8)','2025-01-30 18:58:24',0,'','129'),
(2041,'Ticket',74,'ITILFollowup',12,'Cruz Alexsandro (8)','2025-01-30 18:58:24',0,'','Helpdesk (129)'),
(2042,'Ticket',75,'',0,'Cruz Alexsandro (8)','2025-01-30 19:14:05',150,'0','1975'),
(2043,'Ticket',75,'',0,'Cruz Alexsandro (8)','2025-01-30 19:14:05',64,'tecnomulti (9)','alexcruz (8)'),
(2044,'Ticket',75,'ITILFollowup',17,'Cruz Alexsandro (8)','2025-01-30 19:14:05',0,'','130'),
(2045,'Ticket',75,'ITILFollowup',12,'Cruz Alexsandro (8)','2025-01-30 19:14:05',0,'','Helpdesk (130)'),
(2046,'Ticket',75,'',0,'Cruz Alexsandro (8)','2025-01-30 19:14:11',12,'1','3'),
(2047,'Ticket',74,'ITILFollowup',17,'Cruz Alexsandro (8)','2025-01-30 19:23:54',0,'','131'),
(2048,'Ticket',74,'ITILFollowup',12,'Cruz Alexsandro (8)','2025-01-30 19:23:54',0,'','Helpdesk (131)'),
(2049,'Ticket',74,'',0,'Cruz Alexsandro (8)','2025-01-30 19:23:58',12,'2','6'),
(2050,'Ticket',74,'',0,'Cruz Alexsandro (8)','2025-01-30 19:23:58',16,'','2025-01-30 16:23:58'),
(2051,'Ticket',74,'',0,'Cruz Alexsandro (8)','2025-01-30 19:23:58',17,'','2025-01-30 16:23:58'),
(2052,'Ticket',76,'User',15,'tecnomulti (9)','2025-02-03 13:18:39',4,'','tecnomulti (9)'),
(2053,'Ticket',76,'0',20,'tecnomulti (9)','2025-02-03 13:18:39',0,'',''),
(2054,'Ticket',76,'PluginFormcreatorFormAnswer',15,'tecnomulti (9)','2025-02-03 13:18:39',0,'','arthur.ulisses@tecnomulti.com (40)'),
(2055,'PluginFormcreatorFormAnswer',40,'Ticket',15,'tecnomulti (9)','2025-02-03 13:18:39',0,'','VPN com problema (76)'),
(2056,'PluginFormcreatorFormAnswer',40,'0',20,'tecnomulti (9)','2025-02-03 13:18:39',0,'',''),
(2057,'Ticket',76,'',0,'Cruz Alexsandro (8)','2025-02-03 13:49:47',150,'0','1868'),
(2058,'Ticket',76,'',0,'Cruz Alexsandro (8)','2025-02-03 13:49:47',64,'tecnomulti (9)','alexcruz (8)'),
(2059,'Ticket',76,'ITILFollowup',17,'Cruz Alexsandro (8)','2025-02-03 13:49:47',0,'','132'),
(2060,'Ticket',76,'ITILFollowup',12,'Cruz Alexsandro (8)','2025-02-03 13:49:47',0,'','Helpdesk (132)'),
(2061,'Ticket',76,'',0,'Cruz Alexsandro (8)','2025-02-03 13:49:52',12,'1','2'),
(2062,'Ticket',76,'ITILFollowup',17,'tecnomulti (9)','2025-02-03 13:51:42',0,'','133'),
(2063,'Ticket',76,'ITILFollowup',12,'tecnomulti (9)','2025-02-03 13:51:42',0,'','Acompanhamento (133)'),
(2064,'Ticket',77,'User',15,'tecnomulti (9)','2025-02-03 17:21:14',4,'','tecnomulti (9)'),
(2065,'Ticket',77,'0',20,'tecnomulti (9)','2025-02-03 17:21:14',0,'',''),
(2066,'Ticket',77,'PluginFormcreatorFormAnswer',15,'tecnomulti (9)','2025-02-03 17:21:14',0,'','danielle.silva@tecnomulti.com (41)'),
(2067,'PluginFormcreatorFormAnswer',41,'Ticket',15,'tecnomulti (9)','2025-02-03 17:21:14',0,'','VPN FIBRASIL (77)'),
(2068,'PluginFormcreatorFormAnswer',41,'0',20,'tecnomulti (9)','2025-02-03 17:21:14',0,'',''),
(2069,'Ticket',78,'User',15,'tecnomulti (9)','2025-02-03 17:44:33',4,'','tecnomulti (9)'),
(2070,'Ticket',78,'0',20,'tecnomulti (9)','2025-02-03 17:44:33',0,'',''),
(2071,'Ticket',78,'PluginFormcreatorFormAnswer',15,'tecnomulti (9)','2025-02-03 17:44:33',0,'','mario.lopes@tecnomulti.com (42)'),
(2072,'PluginFormcreatorFormAnswer',42,'Ticket',15,'tecnomulti (9)','2025-02-03 17:44:33',0,'','Erro Envio de mensagens  (78)'),
(2073,'PluginFormcreatorFormAnswer',42,'0',20,'tecnomulti (9)','2025-02-03 17:44:33',0,'',''),
(2074,'Ticket',78,'',0,'Cruz Alexsandro (8)','2025-02-03 19:50:51',150,'0','7578'),
(2075,'Ticket',78,'',0,'Cruz Alexsandro (8)','2025-02-03 19:50:51',64,'tecnomulti (9)','alexcruz (8)'),
(2076,'Ticket',78,'ITILFollowup',17,'Cruz Alexsandro (8)','2025-02-03 19:50:51',0,'','134'),
(2077,'Ticket',78,'ITILFollowup',12,'Cruz Alexsandro (8)','2025-02-03 19:50:51',0,'','Helpdesk (134)'),
(2078,'Ticket',78,'',0,'Cruz Alexsandro (8)','2025-02-03 19:50:55',12,'1','2'),
(2079,'Ticket',79,'User',15,'tecnomulti (9)','2025-02-03 20:21:54',4,'','tecnomulti (9)'),
(2080,'Ticket',79,'0',20,'tecnomulti (9)','2025-02-03 20:21:54',0,'',''),
(2081,'Ticket',79,'PluginFormcreatorFormAnswer',15,'tecnomulti (9)','2025-02-03 20:21:54',0,'','mario.lopes@tecnomulti.com (43)'),
(2082,'PluginFormcreatorFormAnswer',43,'Ticket',15,'tecnomulti (9)','2025-02-03 20:21:54',0,'','Erro Envio de mensagens  (79)'),
(2083,'PluginFormcreatorFormAnswer',43,'0',20,'tecnomulti (9)','2025-02-03 20:21:54',0,'',''),
(2084,'Ticket',78,'ITILFollowup',17,'Cruz Alexsandro (8)','2025-02-03 20:47:27',0,'','135'),
(2085,'Ticket',78,'ITILFollowup',12,'Cruz Alexsandro (8)','2025-02-03 20:47:27',0,'','Helpdesk (135)'),
(2086,'Ticket',78,'',0,'Cruz Alexsandro (8)','2025-02-03 20:47:33',12,'2','6'),
(2087,'Ticket',78,'',0,'Cruz Alexsandro (8)','2025-02-03 20:47:33',16,'','2025-02-03 17:47:33'),
(2088,'Ticket',78,'',0,'Cruz Alexsandro (8)','2025-02-03 20:47:33',17,'','2025-02-03 17:47:33'),
(2089,'Ticket',79,'',0,'Cruz Alexsandro (8)','2025-02-03 21:01:14',150,'0','2360'),
(2090,'Ticket',79,'',0,'Cruz Alexsandro (8)','2025-02-03 21:01:14',64,'tecnomulti (9)','alexcruz (8)'),
(2091,'Ticket',79,'ITILFollowup',17,'Cruz Alexsandro (8)','2025-02-03 21:01:14',0,'','136'),
(2092,'Ticket',79,'ITILFollowup',12,'Cruz Alexsandro (8)','2025-02-03 21:01:14',0,'','Helpdesk (136)'),
(2093,'Ticket',79,'',0,'Cruz Alexsandro (8)','2025-02-03 21:01:20',12,'1','6'),
(2094,'Ticket',79,'',0,'Cruz Alexsandro (8)','2025-02-03 21:01:20',16,'','2025-02-03 18:01:20'),
(2095,'Ticket',79,'',0,'Cruz Alexsandro (8)','2025-02-03 21:01:20',17,'','2025-02-03 18:01:20'),
(2096,'Ticket',77,'',0,'Cruz Alexsandro (8)','2025-02-04 11:22:32',150,'0','64878'),
(2097,'Ticket',77,'',0,'Cruz Alexsandro (8)','2025-02-04 11:22:32',64,'tecnomulti (9)','alexcruz (8)'),
(2098,'Ticket',77,'ITILFollowup',17,'Cruz Alexsandro (8)','2025-02-04 11:22:32',0,'','137'),
(2099,'Ticket',77,'ITILFollowup',12,'Cruz Alexsandro (8)','2025-02-04 11:22:32',0,'','Helpdesk (137)'),
(2100,'Ticket',77,'',0,'Cruz Alexsandro (8)','2025-02-04 11:22:37',12,'1','6'),
(2101,'Ticket',77,'',0,'Cruz Alexsandro (8)','2025-02-04 11:22:37',16,'','2025-02-04 08:22:37'),
(2102,'Ticket',77,'',0,'Cruz Alexsandro (8)','2025-02-04 11:22:37',17,'','2025-02-04 08:22:37'),
(2103,'Ticket',76,'',0,'Cruz Alexsandro (8)','2025-02-04 11:49:55',12,'2','6'),
(2104,'Ticket',76,'',0,'Cruz Alexsandro (8)','2025-02-04 11:49:55',64,'tecnomulti (9)','alexcruz (8)'),
(2105,'Ticket',76,'',0,'Cruz Alexsandro (8)','2025-02-04 11:49:55',16,'','2025-02-04 08:49:55'),
(2106,'Ticket',76,'',0,'Cruz Alexsandro (8)','2025-02-04 11:49:55',17,'','2025-02-04 08:49:55'),
(2107,'Ticket',80,'User',15,'tecnomulti (9)','2025-02-04 18:37:10',4,'','tecnomulti (9)'),
(2108,'Ticket',80,'0',20,'tecnomulti (9)','2025-02-04 18:37:10',0,'',''),
(2109,'Ticket',80,'PluginFormcreatorFormAnswer',15,'tecnomulti (9)','2025-02-04 18:37:10',0,'','fabiano.melo@tecnomulti.com (44)'),
(2110,'PluginFormcreatorFormAnswer',44,'Ticket',15,'tecnomulti (9)','2025-02-04 18:37:10',0,'','VPN (80)'),
(2111,'PluginFormcreatorFormAnswer',44,'0',20,'tecnomulti (9)','2025-02-04 18:37:10',0,'',''),
(2112,'Ticket',80,'',0,'Cruz Alexsandro (8)','2025-02-04 18:41:05',150,'0','235'),
(2113,'Ticket',80,'',0,'Cruz Alexsandro (8)','2025-02-04 18:41:05',64,'tecnomulti (9)','alexcruz (8)'),
(2114,'Ticket',80,'ITILFollowup',17,'Cruz Alexsandro (8)','2025-02-04 18:41:05',0,'','138'),
(2115,'Ticket',80,'ITILFollowup',12,'Cruz Alexsandro (8)','2025-02-04 18:41:05',0,'','Helpdesk (138)'),
(2116,'Ticket',80,'',0,'Cruz Alexsandro (8)','2025-02-04 18:41:11',12,'1','2'),
(2117,'Ticket',81,'User',15,'tecnomulti (9)','2025-02-04 18:43:15',4,'','tecnomulti (9)'),
(2118,'Ticket',81,'0',20,'tecnomulti (9)','2025-02-04 18:43:15',0,'',''),
(2119,'Ticket',81,'PluginFormcreatorFormAnswer',15,'tecnomulti (9)','2025-02-04 18:43:15',0,'','danielle.silva@tecnomulti.com (45)'),
(2120,'PluginFormcreatorFormAnswer',45,'Ticket',15,'tecnomulti (9)','2025-02-04 18:43:15',0,'','INSTALAÇÃO VPN TECNOMULTI (81)'),
(2121,'PluginFormcreatorFormAnswer',45,'0',20,'tecnomulti (9)','2025-02-04 18:43:15',0,'',''),
(2122,'Ticket',80,'ITILFollowup',17,'Cruz Alexsandro (8)','2025-02-04 19:15:51',0,'','139'),
(2123,'Ticket',80,'ITILFollowup',12,'Cruz Alexsandro (8)','2025-02-04 19:15:51',0,'','Helpdesk (139)'),
(2124,'Ticket',80,'',0,'Cruz Alexsandro (8)','2025-02-04 19:15:58',12,'2','5'),
(2125,'Ticket',80,'',0,'Cruz Alexsandro (8)','2025-02-04 19:15:58',17,'','2025-02-04 16:15:58'),
(2126,'Ticket',81,'',0,'Cruz Alexsandro (8)','2025-02-04 19:16:38',150,'0','2003'),
(2127,'Ticket',81,'',0,'Cruz Alexsandro (8)','2025-02-04 19:16:38',64,'tecnomulti (9)','alexcruz (8)'),
(2128,'Ticket',81,'ITILFollowup',17,'Cruz Alexsandro (8)','2025-02-04 19:16:38',0,'','140'),
(2129,'Ticket',81,'ITILFollowup',12,'Cruz Alexsandro (8)','2025-02-04 19:16:38',0,'','Helpdesk (140)'),
(2130,'Ticket',81,'',0,'Cruz Alexsandro (8)','2025-02-04 19:16:42',12,'1','2'),
(2131,'Ticket',81,'ITILFollowup',17,'Cruz Alexsandro (8)','2025-02-06 14:39:43',0,'','141'),
(2132,'Ticket',81,'ITILFollowup',12,'Cruz Alexsandro (8)','2025-02-06 14:39:43',0,'','Helpdesk (141)'),
(2133,'Ticket',81,'',0,'Cruz Alexsandro (8)','2025-02-06 14:39:48',12,'2','6'),
(2134,'Ticket',81,'',0,'Cruz Alexsandro (8)','2025-02-06 14:39:48',16,'','2025-02-06 11:39:48'),
(2135,'Ticket',81,'',0,'Cruz Alexsandro (8)','2025-02-06 14:39:48',17,'','2025-02-06 11:39:48'),
(2136,'Ticket',80,'',0,'Cruz Alexsandro (8)','2025-02-06 14:41:21',12,'5','6'),
(2137,'Ticket',80,'',0,'Cruz Alexsandro (8)','2025-02-06 14:41:21',16,'','2025-02-06 11:41:21'),
(2138,'Ticket',82,'User',15,'tecnomulti (9)','2025-02-07 14:16:50',4,'','tecnomulti (9)'),
(2139,'Ticket',82,'0',20,'tecnomulti (9)','2025-02-07 14:16:50',0,'',''),
(2140,'Ticket',82,'PluginFormcreatorFormAnswer',15,'tecnomulti (9)','2025-02-07 14:16:50',0,'','fabio.jackson@tecnomulti.com (46)'),
(2141,'PluginFormcreatorFormAnswer',46,'Ticket',15,'tecnomulti (9)','2025-02-07 14:16:50',0,'','PASTA FROTA (82)'),
(2142,'PluginFormcreatorFormAnswer',46,'0',20,'tecnomulti (9)','2025-02-07 14:16:50',0,'',''),
(2143,'Config',1,'',0,'Souza Paulo Victor (7)','2025-02-09 03:59:00',1,'url_base_api http://localhost/glpi/api','https://os.wintech.tecnomulti.com/api'),
(2144,'Config',1,'',0,'Souza Paulo Victor (7)','2025-02-09 03:59:00',1,'enable_api 0','1'),
(2145,'Config',1,'',0,'Souza Paulo Victor (7)','2025-02-09 03:59:00',1,'enable_api_login_credentials 0','1'),
(2146,'Config',1,'',0,'Souza Paulo Victor (7)','2025-02-09 03:59:10',1,'url_base_api https://os.wintech.tecnomulti.com/api','https://os.wintech.tecnomulti.com/glpi/api'),
(2147,'Config',1,'',0,'Souza Paulo Victor (7)','2025-02-09 03:59:44',1,'url_base_api https://os.wintech.tecnomulti.com/glpi/api','https://os.wintech.tecnomulti.com/apirest.php'),
(2148,'APIClient',2,'0',20,'Souza Paulo Victor (7)','2025-02-09 04:00:28',0,'',''),
(2149,'Config',1,'',0,'Souza Paulo Victor (7)','2025-02-09 04:00:45',1,'url_base_api https://os.wintech.tecnomulti.com/apirest.php','https://os.wintech.tecnomulti.com/api'),
(2150,'Config',1,'',0,'Souza Paulo Victor (7)','2025-02-09 04:01:09',1,'url_base_api https://os.wintech.tecnomulti.com/api','https://os.wintech.tecnomulti.com/glpi/api'),
(2151,'Config',1,'',0,'Souza Paulo Victor (7)','2025-02-09 04:01:18',1,'url_base_api https://os.wintech.tecnomulti.com/glpi/api','https://os.wintech.tecnomulti.com/apirest.php'),
(2152,'APIClient',2,'',0,'Souza Paulo Victor (7)','2025-02-09 04:08:01',4,'0','2'),
(2153,'APIClient',2,'',0,'Souza Paulo Victor (7)','2025-02-09 04:08:01',5,'3138646737','82066718'),
(2154,'APIClient',2,'',0,'Souza Paulo Victor (7)','2025-02-09 04:08:01',6,'3138646737','82066718'),
(2155,'APIClient',2,'',0,'Souza Paulo Victor (7)','2025-02-09 04:08:01',8,'TAJeBLPhfzqyV5R2PUYGCfu9Dd9TgghOolkQpgec','7moQfcthNbSzoD3J5RgKmsjjS7hC15aGPavG5qc5'),
(2156,'Ticket',83,'User',15,'tecnomulti (9)','2025-02-10 11:16:41',4,'','tecnomulti (9)'),
(2157,'Ticket',83,'0',20,'tecnomulti (9)','2025-02-10 11:16:41',0,'',''),
(2158,'Ticket',83,'PluginFormcreatorFormAnswer',15,'tecnomulti (9)','2025-02-10 11:16:41',0,'','amanda.moreira@tecnomulti.com (47)'),
(2159,'PluginFormcreatorFormAnswer',47,'Ticket',15,'tecnomulti (9)','2025-02-10 11:16:41',0,'','EMAIL / EXCEL / POWER POINT (83)'),
(2160,'PluginFormcreatorFormAnswer',47,'0',20,'tecnomulti (9)','2025-02-10 11:16:41',0,'',''),
(2161,'Ticket',83,'',0,'Cruz Alexsandro (8)','2025-02-10 11:19:29',150,'0','168'),
(2162,'Ticket',83,'',0,'Cruz Alexsandro (8)','2025-02-10 11:19:29',64,'tecnomulti (9)','alexcruz (8)'),
(2163,'Ticket',83,'ITILFollowup',17,'Cruz Alexsandro (8)','2025-02-10 11:19:29',0,'','142'),
(2164,'Ticket',83,'ITILFollowup',12,'Cruz Alexsandro (8)','2025-02-10 11:19:29',0,'','Helpdesk (142)'),
(2165,'Ticket',83,'',0,'Cruz Alexsandro (8)','2025-02-10 11:19:35',12,'1','2'),
(2166,'Ticket',83,'ITILFollowup',17,'tecnomulti (9)','2025-02-10 11:41:39',0,'','143'),
(2167,'Ticket',83,'ITILFollowup',12,'tecnomulti (9)','2025-02-10 11:41:39',0,'','Acompanhamento (143)'),
(2168,'Ticket',83,'ITILFollowup',17,'Cruz Alexsandro (8)','2025-02-10 11:46:47',0,'','144'),
(2169,'Ticket',83,'ITILFollowup',12,'Cruz Alexsandro (8)','2025-02-10 11:46:47',0,'','Helpdesk (144)'),
(2170,'Ticket',83,'',0,'Cruz Alexsandro (8)','2025-02-10 11:46:54',12,'2','6'),
(2171,'Ticket',83,'',0,'Cruz Alexsandro (8)','2025-02-10 11:46:54',16,'','2025-02-10 08:46:54'),
(2172,'Ticket',83,'',0,'Cruz Alexsandro (8)','2025-02-10 11:46:54',17,'','2025-02-10 08:46:54'),
(2173,'Ticket',82,'',0,'Cruz Alexsandro (8)','2025-02-10 11:47:57',150,'0','250267'),
(2174,'Ticket',82,'',0,'Cruz Alexsandro (8)','2025-02-10 11:47:57',64,'tecnomulti (9)','alexcruz (8)'),
(2175,'Ticket',82,'ITILFollowup',17,'Cruz Alexsandro (8)','2025-02-10 11:47:57',0,'','145'),
(2176,'Ticket',82,'ITILFollowup',12,'Cruz Alexsandro (8)','2025-02-10 11:47:57',0,'','Helpdesk (145)'),
(2177,'Ticket',82,'',0,'Cruz Alexsandro (8)','2025-02-10 11:48:02',12,'1','2'),
(2178,'Ticket',84,'User',15,'tecnomulti (9)','2025-02-11 12:02:54',4,'','tecnomulti (9)'),
(2179,'Ticket',84,'0',20,'tecnomulti (9)','2025-02-11 12:02:54',0,'',''),
(2180,'Ticket',84,'PluginFormcreatorFormAnswer',15,'tecnomulti (9)','2025-02-11 12:02:54',0,'','lorenalarissa88@gmail.com (48)'),
(2181,'PluginFormcreatorFormAnswer',48,'Ticket',15,'tecnomulti (9)','2025-02-11 12:02:54',0,'','sistema sap não fica com o acesso (84)'),
(2182,'PluginFormcreatorFormAnswer',48,'0',20,'tecnomulti (9)','2025-02-11 12:02:54',0,'',''),
(2183,'Ticket',82,'ITILFollowup',17,'Cruz Alexsandro (8)','2025-02-11 12:21:28',0,'','146'),
(2184,'Ticket',82,'ITILFollowup',12,'Cruz Alexsandro (8)','2025-02-11 12:21:28',0,'','Helpdesk (146)'),
(2185,'Ticket',82,'',0,'Cruz Alexsandro (8)','2025-02-11 12:21:34',12,'2','6'),
(2186,'Ticket',82,'',0,'Cruz Alexsandro (8)','2025-02-11 12:21:34',16,'','2025-02-11 09:21:34'),
(2187,'Ticket',82,'',0,'Cruz Alexsandro (8)','2025-02-11 12:21:34',17,'','2025-02-11 09:21:34'),
(2188,'Ticket',85,'User',15,'tecnomulti (9)','2025-02-11 12:41:34',4,'','tecnomulti (9)'),
(2189,'Ticket',85,'0',20,'tecnomulti (9)','2025-02-11 12:41:34',0,'',''),
(2190,'Ticket',85,'PluginFormcreatorFormAnswer',15,'tecnomulti (9)','2025-02-11 12:41:34',0,'','joao.ferreira@tecnomulti.com (49)'),
(2191,'PluginFormcreatorFormAnswer',49,'Ticket',15,'tecnomulti (9)','2025-02-11 12:41:34',0,'','PASTA FROTA (85)'),
(2192,'PluginFormcreatorFormAnswer',49,'0',20,'tecnomulti (9)','2025-02-11 12:41:34',0,'',''),
(2193,'Ticket',85,'',0,'Cruz Alexsandro (8)','2025-02-11 13:07:04',150,'0','1530'),
(2194,'Ticket',85,'',0,'Cruz Alexsandro (8)','2025-02-11 13:07:04',64,'tecnomulti (9)','alexcruz (8)'),
(2195,'Ticket',85,'ITILFollowup',17,'Cruz Alexsandro (8)','2025-02-11 13:07:04',0,'','147'),
(2196,'Ticket',85,'ITILFollowup',12,'Cruz Alexsandro (8)','2025-02-11 13:07:04',0,'','Helpdesk (147)'),
(2197,'Ticket',85,'',0,'Cruz Alexsandro (8)','2025-02-11 13:07:08',12,'1','2'),
(2198,'Ticket',84,'',0,'Cruz Alexsandro (8)','2025-02-11 13:08:39',150,'0','3945'),
(2199,'Ticket',84,'',0,'Cruz Alexsandro (8)','2025-02-11 13:08:39',64,'tecnomulti (9)','alexcruz (8)'),
(2200,'Ticket',84,'ITILFollowup',17,'Cruz Alexsandro (8)','2025-02-11 13:08:39',0,'','148'),
(2201,'Ticket',84,'ITILFollowup',12,'Cruz Alexsandro (8)','2025-02-11 13:08:39',0,'','Helpdesk (148)'),
(2202,'Ticket',84,'',0,'Cruz Alexsandro (8)','2025-02-11 13:08:44',12,'1','6'),
(2203,'Ticket',84,'',0,'Cruz Alexsandro (8)','2025-02-11 13:08:44',16,'','2025-02-11 10:08:44'),
(2204,'Ticket',84,'',0,'Cruz Alexsandro (8)','2025-02-11 13:08:44',17,'','2025-02-11 10:08:44'),
(2205,'Ticket',85,'ITILFollowup',17,'Cruz Alexsandro (8)','2025-02-11 13:14:01',0,'','149'),
(2206,'Ticket',85,'ITILFollowup',12,'Cruz Alexsandro (8)','2025-02-11 13:14:01',0,'','Helpdesk (149)'),
(2207,'Ticket',85,'',0,'Cruz Alexsandro (8)','2025-02-11 13:14:07',12,'2','6'),
(2208,'Ticket',85,'',0,'Cruz Alexsandro (8)','2025-02-11 13:14:07',16,'','2025-02-11 10:14:07'),
(2209,'Ticket',85,'',0,'Cruz Alexsandro (8)','2025-02-11 13:14:07',17,'','2025-02-11 10:14:07'),
(2210,'Ticket',86,'User',15,'tecnomulti (9)','2025-02-11 15:10:17',4,'','tecnomulti (9)'),
(2211,'Ticket',86,'0',20,'tecnomulti (9)','2025-02-11 15:10:17',0,'',''),
(2212,'Ticket',86,'PluginFormcreatorFormAnswer',15,'tecnomulti (9)','2025-02-11 15:10:17',0,'','michele.souza@tecnomulti.com (50)'),
(2213,'PluginFormcreatorFormAnswer',50,'Ticket',15,'tecnomulti (9)','2025-02-11 15:10:17',0,'','Acesso Sistema  (86)'),
(2214,'PluginFormcreatorFormAnswer',50,'0',20,'tecnomulti (9)','2025-02-11 15:10:17',0,'',''),
(2215,'Ticket',86,'',0,'Cruz Alexsandro (8)','2025-02-11 22:20:27',150,'0','25810'),
(2216,'Ticket',86,'',0,'Cruz Alexsandro (8)','2025-02-11 22:20:27',64,'tecnomulti (9)','alexcruz (8)'),
(2217,'Ticket',86,'ITILFollowup',17,'Cruz Alexsandro (8)','2025-02-11 22:20:27',0,'','150'),
(2218,'Ticket',86,'ITILFollowup',12,'Cruz Alexsandro (8)','2025-02-11 22:20:27',0,'','Helpdesk (150)'),
(2219,'Ticket',86,'',0,'Cruz Alexsandro (8)','2025-02-11 22:20:38',12,'1','2'),
(2220,'Ticket',87,'User',15,'tecnomulti (9)','2025-02-12 11:56:10',4,'','tecnomulti (9)'),
(2221,'Ticket',87,'0',20,'tecnomulti (9)','2025-02-12 11:56:10',0,'',''),
(2222,'Ticket',87,'PluginFormcreatorFormAnswer',15,'tecnomulti (9)','2025-02-12 11:56:10',0,'','gilmar.lourenco@tecnomulti.com (51)'),
(2223,'PluginFormcreatorFormAnswer',51,'Ticket',15,'tecnomulti (9)','2025-02-12 11:56:10',0,'','ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK (87)'),
(2224,'PluginFormcreatorFormAnswer',51,'0',20,'tecnomulti (9)','2025-02-12 11:56:10',0,'',''),
(2225,'Ticket',87,'',0,'Cruz Alexsandro (8)','2025-02-12 12:07:07',150,'0','657'),
(2226,'Ticket',87,'',0,'Cruz Alexsandro (8)','2025-02-12 12:07:07',64,'tecnomulti (9)','alexcruz (8)'),
(2227,'Ticket',87,'ITILFollowup',17,'Cruz Alexsandro (8)','2025-02-12 12:07:07',0,'','151'),
(2228,'Ticket',87,'ITILFollowup',12,'Cruz Alexsandro (8)','2025-02-12 12:07:07',0,'','Helpdesk (151)'),
(2229,'Ticket',87,'',0,'Cruz Alexsandro (8)','2025-02-12 12:07:12',12,'1','2'),
(2230,'Ticket',87,'ITILFollowup',17,'Cruz Alexsandro (8)','2025-02-12 12:34:04',0,'','152'),
(2231,'Ticket',87,'ITILFollowup',12,'Cruz Alexsandro (8)','2025-02-12 12:34:04',0,'','Helpdesk (152)'),
(2232,'Ticket',87,'',0,'Cruz Alexsandro (8)','2025-02-12 12:34:09',12,'2','6'),
(2233,'Ticket',87,'',0,'Cruz Alexsandro (8)','2025-02-12 12:34:09',16,'','2025-02-12 09:34:09'),
(2234,'Ticket',87,'',0,'Cruz Alexsandro (8)','2025-02-12 12:34:09',17,'','2025-02-12 09:34:09'),
(2235,'Ticket',86,'ITILFollowup',17,'Cruz Alexsandro (8)','2025-02-13 13:17:04',0,'','153'),
(2236,'Ticket',86,'ITILFollowup',12,'Cruz Alexsandro (8)','2025-02-13 13:17:04',0,'','Helpdesk (153)'),
(2237,'Ticket',86,'',0,'Cruz Alexsandro (8)','2025-02-13 13:17:14',12,'2','6'),
(2238,'Ticket',86,'',0,'Cruz Alexsandro (8)','2025-02-13 13:17:14',16,'','2025-02-13 10:17:14'),
(2239,'Ticket',86,'',0,'Cruz Alexsandro (8)','2025-02-13 13:17:14',17,'','2025-02-13 10:17:14'),
(2240,'Ticket',58,'ITILFollowup',17,'Cruz Alexsandro (8)','2025-02-13 14:01:04',0,'','154'),
(2241,'Ticket',58,'ITILFollowup',12,'Cruz Alexsandro (8)','2025-02-13 14:01:04',0,'','Helpdesk (154)'),
(2242,'Ticket',58,'',0,'Cruz Alexsandro (8)','2025-02-13 14:01:10',12,'2','6'),
(2243,'Ticket',58,'',0,'Cruz Alexsandro (8)','2025-02-13 14:01:10',16,'','2025-02-13 11:01:10'),
(2244,'Ticket',58,'',0,'Cruz Alexsandro (8)','2025-02-13 14:01:10',17,'','2025-02-13 11:01:10'),
(2245,'Ticket',88,'User',15,'tecnomulti (9)','2025-02-17 11:36:06',4,'','tecnomulti (9)'),
(2246,'Ticket',88,'0',20,'tecnomulti (9)','2025-02-17 11:36:06',0,'',''),
(2247,'Ticket',88,'PluginFormcreatorFormAnswer',15,'tecnomulti (9)','2025-02-17 11:36:06',0,'','edson.maykon@tecnomulti.com.pst (52)'),
(2248,'PluginFormcreatorFormAnswer',52,'Ticket',15,'tecnomulti (9)','2025-02-17 11:36:06',0,'','edson maykon (88)'),
(2249,'PluginFormcreatorFormAnswer',52,'0',20,'tecnomulti (9)','2025-02-17 11:36:06',0,'',''),
(2250,'Ticket',89,'User',15,'tecnomulti (9)','2025-02-17 12:35:59',4,'','tecnomulti (9)'),
(2251,'Ticket',89,'0',20,'tecnomulti (9)','2025-02-17 12:35:59',0,'',''),
(2252,'Ticket',89,'PluginFormcreatorFormAnswer',15,'tecnomulti (9)','2025-02-17 12:35:59',0,'','bruno.ciriaco@tecnomulti.com (53)'),
(2253,'PluginFormcreatorFormAnswer',53,'Ticket',15,'tecnomulti (9)','2025-02-17 12:35:59',0,'','INSTALAR E-MAIL OUTLOOK (89)'),
(2254,'PluginFormcreatorFormAnswer',53,'0',20,'tecnomulti (9)','2025-02-17 12:35:59',0,'',''),
(2255,'Ticket',88,'',0,'Medeiros Luan (10)','2025-02-17 13:52:33',150,'0','8187'),
(2256,'Ticket',88,'',0,'Medeiros Luan (10)','2025-02-17 13:52:33',64,'tecnomulti (9)','luanmedeiros (10)'),
(2257,'Ticket',88,'ITILFollowup',17,'Medeiros Luan (10)','2025-02-17 13:52:33',0,'','155'),
(2258,'Ticket',88,'ITILFollowup',12,'Medeiros Luan (10)','2025-02-17 13:52:33',0,'','Helpdesk (155)'),
(2259,'Ticket',88,'ITILFollowup',18,'Cruz Alexsandro (8)','2025-02-17 20:04:30',0,'','155'),
(2260,'Ticket',88,'ITILFollowup',12,'Cruz Alexsandro (8)','2025-02-17 20:04:30',0,'&#60;p&#62;Bom dia, está tentando dessa forma(&#60;span style=\"color: #155210; font-family: inter, -apple-system, blinkmacsystemfont, \'san francisco\', \'segoe ui\', roboto, \'helvetic','&#60;p&#62;Bom dia, está tentando dessa forma(&#60;span style=\\\"color: #155210; font-family: inter, -apple-system, blinkmacsystemfont, \\\'san francisco\\\', \\\'segoe ui\\\', roboto, \\\'he'),
(2261,'Ticket',88,'ITILFollowup',12,'Cruz Alexsandro (8)','2025-02-17 20:04:30',0,'0','8'),
(2262,'Ticket',88,'',0,'Cruz Alexsandro (8)','2025-02-17 20:31:30',12,'1','2'),
(2263,'Document',17,'0',20,'tecnomulti (9)','2025-02-18 17:56:01',0,'',''),
(2264,'Document',17,'PluginFormcreatorFormAnswer',15,'tecnomulti (9)','2025-02-18 17:56:01',0,'','aprendiz.recifela@tecnomult.com (54)'),
(2265,'PluginFormcreatorFormAnswer',54,'Document',15,'tecnomulti (9)','2025-02-18 17:56:01',0,'','62e6e5a4ad31f4.64728719image_paste4652445.png (17)'),
(2266,'Document',17,'',0,'tecnomulti (9)','2025-02-18 17:56:01',3,'62e6e5a4ad31f4.64728719image_paste4652445.png','image_paste.png'),
(2267,'Document',17,'Ticket',15,'tecnomulti (9)','2025-02-18 17:56:01',0,'','não consigo acessar meu outlook (90)'),
(2268,'Ticket',90,'Document',15,'tecnomulti (9)','2025-02-18 17:56:01',0,'','62e6e5a4ad31f4.64728719image_paste4652445.png (17)'),
(2269,'Ticket',90,'User',15,'tecnomulti (9)','2025-02-18 17:56:01',4,'','tecnomulti (9)'),
(2270,'Ticket',90,'0',20,'tecnomulti (9)','2025-02-18 17:56:01',0,'',''),
(2271,'Ticket',90,'PluginFormcreatorFormAnswer',15,'tecnomulti (9)','2025-02-18 17:56:01',0,'','aprendiz.recifela@tecnomult.com (54)'),
(2272,'PluginFormcreatorFormAnswer',54,'Ticket',15,'tecnomulti (9)','2025-02-18 17:56:01',0,'','não consigo acessar meu outlook (90)'),
(2273,'PluginFormcreatorFormAnswer',54,'0',20,'tecnomulti (9)','2025-02-18 17:56:01',0,'',''),
(2274,'Ticket',91,'User',15,'tecnomulti (9)','2025-02-18 17:56:26',4,'','tecnomulti (9)'),
(2275,'Ticket',91,'0',20,'tecnomulti (9)','2025-02-18 17:56:26',0,'',''),
(2276,'Ticket',91,'PluginFormcreatorFormAnswer',15,'tecnomulti (9)','2025-02-18 17:56:26',0,'','raylla.vitoria@tecnomulti.com (55)'),
(2277,'PluginFormcreatorFormAnswer',55,'Ticket',15,'tecnomulti (9)','2025-02-18 17:56:26',0,'','CHAMADO RAYLLA (91)'),
(2278,'PluginFormcreatorFormAnswer',55,'0',20,'tecnomulti (9)','2025-02-18 17:56:26',0,'',''),
(2279,'Ticket',91,'',0,'Cruz Alexsandro (8)','2025-02-18 18:14:21',150,'0','1075'),
(2280,'Ticket',91,'',0,'Cruz Alexsandro (8)','2025-02-18 18:14:21',64,'tecnomulti (9)','alexcruz (8)'),
(2281,'Ticket',91,'ITILFollowup',17,'Cruz Alexsandro (8)','2025-02-18 18:14:21',0,'','156'),
(2282,'Ticket',91,'ITILFollowup',12,'Cruz Alexsandro (8)','2025-02-18 18:14:21',0,'','Helpdesk (156)'),
(2283,'Ticket',91,'',0,'Cruz Alexsandro (8)','2025-02-18 18:14:35',12,'1','2'),
(2284,'Ticket',90,'',0,'Cruz Alexsandro (8)','2025-02-18 18:16:04',150,'0','1203'),
(2285,'Ticket',90,'',0,'Cruz Alexsandro (8)','2025-02-18 18:16:04',64,'tecnomulti (9)','alexcruz (8)'),
(2286,'Ticket',90,'ITILFollowup',17,'Cruz Alexsandro (8)','2025-02-18 18:16:04',0,'','157'),
(2287,'Ticket',90,'ITILFollowup',12,'Cruz Alexsandro (8)','2025-02-18 18:16:04',0,'','Helpdesk (157)'),
(2288,'Ticket',90,'',0,'Cruz Alexsandro (8)','2025-02-18 18:16:39',12,'1','2'),
(2289,'Ticket',90,'ITILFollowup',17,'tecnomulti (9)','2025-02-18 18:17:50',0,'','158'),
(2290,'Ticket',90,'ITILFollowup',12,'tecnomulti (9)','2025-02-18 18:17:50',0,'','Acompanhamento (158)'),
(2291,'Ticket',91,'ITILFollowup',17,'tecnomulti (9)','2025-02-18 18:22:40',0,'','159'),
(2292,'Ticket',91,'ITILFollowup',12,'tecnomulti (9)','2025-02-18 18:22:40',0,'','Acompanhamento (159)'),
(2293,'Ticket',89,'',0,'Cruz Alexsandro (8)','2025-02-18 18:30:33',150,'0','107674'),
(2294,'Ticket',89,'',0,'Cruz Alexsandro (8)','2025-02-18 18:30:33',64,'tecnomulti (9)','alexcruz (8)'),
(2295,'Ticket',89,'ITILFollowup',17,'Cruz Alexsandro (8)','2025-02-18 18:30:33',0,'','160'),
(2296,'Ticket',89,'ITILFollowup',12,'Cruz Alexsandro (8)','2025-02-18 18:30:33',0,'','Helpdesk (160)'),
(2297,'Ticket',89,'',0,'Cruz Alexsandro (8)','2025-02-18 18:30:40',12,'1','2'),
(2298,'Ticket',92,'User',15,'tecnomulti (9)','2025-02-18 18:48:25',4,'','tecnomulti (9)'),
(2299,'Ticket',92,'0',20,'tecnomulti (9)','2025-02-18 18:48:25',0,'',''),
(2300,'Ticket',92,'PluginFormcreatorFormAnswer',15,'tecnomulti (9)','2025-02-18 18:48:25',0,'','evelyn.azevedo@tecnomulti.com (56)'),
(2301,'PluginFormcreatorFormAnswer',56,'Ticket',15,'tecnomulti (9)','2025-02-18 18:48:25',0,'','TROCA DE NOTEBOOK (92)'),
(2302,'PluginFormcreatorFormAnswer',56,'0',20,'tecnomulti (9)','2025-02-18 18:48:25',0,'','');
/*!40000 ALTER TABLE `glpi_logs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_mailcollectors`
--

DROP TABLE IF EXISTS `glpi_mailcollectors`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_mailcollectors` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `host` varchar(255) DEFAULT NULL,
  `login` varchar(255) DEFAULT NULL,
  `filesize_max` int(11) NOT NULL DEFAULT 2097152,
  `is_active` tinyint(4) NOT NULL DEFAULT 1,
  `date_mod` timestamp NULL DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `passwd` varchar(255) DEFAULT NULL,
  `accepted` varchar(255) DEFAULT NULL,
  `refused` varchar(255) DEFAULT NULL,
  `errors` int(11) NOT NULL DEFAULT 0,
  `use_mail_date` tinyint(4) NOT NULL DEFAULT 0,
  `date_creation` timestamp NULL DEFAULT NULL,
  `requester_field` int(11) NOT NULL DEFAULT 0,
  `add_cc_to_observer` tinyint(4) NOT NULL DEFAULT 0,
  `collect_only_unread` tinyint(4) NOT NULL DEFAULT 0,
  `last_collect_date` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `is_active` (`is_active`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`),
  KEY `last_collect_date` (`last_collect_date`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_mailcollectors`
--

LOCK TABLES `glpi_mailcollectors` WRITE;
/*!40000 ALTER TABLE `glpi_mailcollectors` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_mailcollectors` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_manuallinks`
--

DROP TABLE IF EXISTS `glpi_manuallinks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_manuallinks` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `url` varchar(8096) NOT NULL,
  `open_window` tinyint(4) NOT NULL DEFAULT 1,
  `icon` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `items_id` int(10) unsigned NOT NULL DEFAULT 0,
  `itemtype` varchar(255) DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `item` (`itemtype`,`items_id`),
  KEY `items_id` (`items_id`),
  KEY `date_creation` (`date_creation`),
  KEY `date_mod` (`date_mod`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_manuallinks`
--

LOCK TABLES `glpi_manuallinks` WRITE;
/*!40000 ALTER TABLE `glpi_manuallinks` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_manuallinks` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_manufacturers`
--

DROP TABLE IF EXISTS `glpi_manufacturers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_manufacturers` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_manufacturers`
--

LOCK TABLES `glpi_manufacturers` WRITE;
/*!40000 ALTER TABLE `glpi_manufacturers` DISABLE KEYS */;
INSERT INTO `glpi_manufacturers` VALUES
(1,'DELL','','2024-12-27 14:00:32','2024-12-27 14:00:32');
/*!40000 ALTER TABLE `glpi_manufacturers` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_monitormodels`
--

DROP TABLE IF EXISTS `glpi_monitormodels`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_monitormodels` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `product_number` varchar(255) DEFAULT NULL,
  `weight` int(11) NOT NULL DEFAULT 0,
  `required_units` int(11) NOT NULL DEFAULT 1,
  `depth` float NOT NULL DEFAULT 1,
  `power_connections` int(11) NOT NULL DEFAULT 0,
  `power_consumption` int(11) NOT NULL DEFAULT 0,
  `is_half_rack` tinyint(4) NOT NULL DEFAULT 0,
  `picture_front` text DEFAULT NULL,
  `picture_rear` text DEFAULT NULL,
  `pictures` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`),
  KEY `product_number` (`product_number`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_monitormodels`
--

LOCK TABLES `glpi_monitormodels` WRITE;
/*!40000 ALTER TABLE `glpi_monitormodels` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_monitormodels` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_monitors`
--

DROP TABLE IF EXISTS `glpi_monitors`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_monitors` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `name` varchar(255) DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `contact` varchar(255) DEFAULT NULL,
  `contact_num` varchar(255) DEFAULT NULL,
  `users_id_tech` int(10) unsigned NOT NULL DEFAULT 0,
  `groups_id_tech` int(10) unsigned NOT NULL DEFAULT 0,
  `comment` text DEFAULT NULL,
  `serial` varchar(255) DEFAULT NULL,
  `otherserial` varchar(255) DEFAULT NULL,
  `size` decimal(5,2) NOT NULL DEFAULT 0.00,
  `have_micro` tinyint(4) NOT NULL DEFAULT 0,
  `have_speaker` tinyint(4) NOT NULL DEFAULT 0,
  `have_subd` tinyint(4) NOT NULL DEFAULT 0,
  `have_bnc` tinyint(4) NOT NULL DEFAULT 0,
  `have_dvi` tinyint(4) NOT NULL DEFAULT 0,
  `have_pivot` tinyint(4) NOT NULL DEFAULT 0,
  `have_hdmi` tinyint(4) NOT NULL DEFAULT 0,
  `have_displayport` tinyint(4) NOT NULL DEFAULT 0,
  `locations_id` int(10) unsigned NOT NULL DEFAULT 0,
  `monitortypes_id` int(10) unsigned NOT NULL DEFAULT 0,
  `monitormodels_id` int(10) unsigned NOT NULL DEFAULT 0,
  `manufacturers_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_global` tinyint(4) NOT NULL DEFAULT 0,
  `is_deleted` tinyint(4) NOT NULL DEFAULT 0,
  `is_template` tinyint(4) NOT NULL DEFAULT 0,
  `template_name` varchar(255) DEFAULT NULL,
  `users_id` int(10) unsigned NOT NULL DEFAULT 0,
  `groups_id` int(10) unsigned NOT NULL DEFAULT 0,
  `states_id` int(10) unsigned NOT NULL DEFAULT 0,
  `ticket_tco` decimal(20,4) DEFAULT 0.0000,
  `is_dynamic` tinyint(4) NOT NULL DEFAULT 0,
  `autoupdatesystems_id` int(10) unsigned NOT NULL DEFAULT 0,
  `uuid` varchar(255) DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `is_template` (`is_template`),
  KEY `is_global` (`is_global`),
  KEY `entities_id` (`entities_id`),
  KEY `manufacturers_id` (`manufacturers_id`),
  KEY `groups_id` (`groups_id`),
  KEY `users_id` (`users_id`),
  KEY `locations_id` (`locations_id`),
  KEY `monitormodels_id` (`monitormodels_id`),
  KEY `states_id` (`states_id`),
  KEY `users_id_tech` (`users_id_tech`),
  KEY `monitortypes_id` (`monitortypes_id`),
  KEY `is_deleted` (`is_deleted`),
  KEY `groups_id_tech` (`groups_id_tech`),
  KEY `is_dynamic` (`is_dynamic`),
  KEY `autoupdatesystems_id` (`autoupdatesystems_id`),
  KEY `serial` (`serial`),
  KEY `otherserial` (`otherserial`),
  KEY `uuid` (`uuid`),
  KEY `date_creation` (`date_creation`),
  KEY `is_recursive` (`is_recursive`),
  KEY `date_mod` (`date_mod`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_monitors`
--

LOCK TABLES `glpi_monitors` WRITE;
/*!40000 ALTER TABLE `glpi_monitors` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_monitors` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_monitortypes`
--

DROP TABLE IF EXISTS `glpi_monitortypes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_monitortypes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_monitortypes`
--

LOCK TABLES `glpi_monitortypes` WRITE;
/*!40000 ALTER TABLE `glpi_monitortypes` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_monitortypes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_networkaliases`
--

DROP TABLE IF EXISTS `glpi_networkaliases`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_networkaliases` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `networknames_id` int(10) unsigned NOT NULL DEFAULT 0,
  `name` varchar(255) DEFAULT NULL,
  `fqdns_id` int(10) unsigned NOT NULL DEFAULT 0,
  `comment` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `entities_id` (`entities_id`),
  KEY `name` (`name`),
  KEY `networknames_id` (`networknames_id`),
  KEY `fqdns_id` (`fqdns_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_networkaliases`
--

LOCK TABLES `glpi_networkaliases` WRITE;
/*!40000 ALTER TABLE `glpi_networkaliases` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_networkaliases` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_networkequipmentmodels`
--

DROP TABLE IF EXISTS `glpi_networkequipmentmodels`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_networkequipmentmodels` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `product_number` varchar(255) DEFAULT NULL,
  `weight` int(11) NOT NULL DEFAULT 0,
  `required_units` int(11) NOT NULL DEFAULT 1,
  `depth` float NOT NULL DEFAULT 1,
  `power_connections` int(11) NOT NULL DEFAULT 0,
  `power_consumption` int(11) NOT NULL DEFAULT 0,
  `is_half_rack` tinyint(4) NOT NULL DEFAULT 0,
  `picture_front` text DEFAULT NULL,
  `picture_rear` text DEFAULT NULL,
  `pictures` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`),
  KEY `product_number` (`product_number`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_networkequipmentmodels`
--

LOCK TABLES `glpi_networkequipmentmodels` WRITE;
/*!40000 ALTER TABLE `glpi_networkequipmentmodels` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_networkequipmentmodels` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_networkequipments`
--

DROP TABLE IF EXISTS `glpi_networkequipments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_networkequipments` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `name` varchar(255) DEFAULT NULL,
  `ram` int(10) unsigned DEFAULT NULL,
  `serial` varchar(255) DEFAULT NULL,
  `otherserial` varchar(255) DEFAULT NULL,
  `contact` varchar(255) DEFAULT NULL,
  `contact_num` varchar(255) DEFAULT NULL,
  `users_id_tech` int(10) unsigned NOT NULL DEFAULT 0,
  `groups_id_tech` int(10) unsigned NOT NULL DEFAULT 0,
  `date_mod` timestamp NULL DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `locations_id` int(10) unsigned NOT NULL DEFAULT 0,
  `networks_id` int(10) unsigned NOT NULL DEFAULT 0,
  `networkequipmenttypes_id` int(10) unsigned NOT NULL DEFAULT 0,
  `networkequipmentmodels_id` int(10) unsigned NOT NULL DEFAULT 0,
  `manufacturers_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_deleted` tinyint(4) NOT NULL DEFAULT 0,
  `is_template` tinyint(4) NOT NULL DEFAULT 0,
  `template_name` varchar(255) DEFAULT NULL,
  `users_id` int(10) unsigned NOT NULL DEFAULT 0,
  `groups_id` int(10) unsigned NOT NULL DEFAULT 0,
  `states_id` int(10) unsigned NOT NULL DEFAULT 0,
  `ticket_tco` decimal(20,4) DEFAULT 0.0000,
  `is_dynamic` tinyint(4) NOT NULL DEFAULT 0,
  `uuid` varchar(255) DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  `autoupdatesystems_id` int(10) unsigned NOT NULL DEFAULT 0,
  `sysdescr` text DEFAULT NULL,
  `cpu` int(11) NOT NULL DEFAULT 0,
  `uptime` varchar(255) NOT NULL DEFAULT '0',
  `last_inventory_update` timestamp NULL DEFAULT NULL,
  `snmpcredentials_id` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `is_template` (`is_template`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `manufacturers_id` (`manufacturers_id`),
  KEY `groups_id` (`groups_id`),
  KEY `users_id` (`users_id`),
  KEY `locations_id` (`locations_id`),
  KEY `networkequipmentmodels_id` (`networkequipmentmodels_id`),
  KEY `networks_id` (`networks_id`),
  KEY `states_id` (`states_id`),
  KEY `users_id_tech` (`users_id_tech`),
  KEY `networkequipmenttypes_id` (`networkequipmenttypes_id`),
  KEY `is_deleted` (`is_deleted`),
  KEY `date_mod` (`date_mod`),
  KEY `groups_id_tech` (`groups_id_tech`),
  KEY `is_dynamic` (`is_dynamic`),
  KEY `serial` (`serial`),
  KEY `otherserial` (`otherserial`),
  KEY `uuid` (`uuid`),
  KEY `date_creation` (`date_creation`),
  KEY `autoupdatesystems_id` (`autoupdatesystems_id`),
  KEY `snmpcredentials_id` (`snmpcredentials_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_networkequipments`
--

LOCK TABLES `glpi_networkequipments` WRITE;
/*!40000 ALTER TABLE `glpi_networkequipments` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_networkequipments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_networkequipmenttypes`
--

DROP TABLE IF EXISTS `glpi_networkequipmenttypes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_networkequipmenttypes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_networkequipmenttypes`
--

LOCK TABLES `glpi_networkequipmenttypes` WRITE;
/*!40000 ALTER TABLE `glpi_networkequipmenttypes` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_networkequipmenttypes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_networkinterfaces`
--

DROP TABLE IF EXISTS `glpi_networkinterfaces`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_networkinterfaces` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_networkinterfaces`
--

LOCK TABLES `glpi_networkinterfaces` WRITE;
/*!40000 ALTER TABLE `glpi_networkinterfaces` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_networkinterfaces` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_networknames`
--

DROP TABLE IF EXISTS `glpi_networknames`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_networknames` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `items_id` int(10) unsigned NOT NULL DEFAULT 0,
  `itemtype` varchar(100) NOT NULL,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `fqdns_id` int(10) unsigned NOT NULL DEFAULT 0,
  `ipnetworks_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_deleted` tinyint(4) NOT NULL DEFAULT 0,
  `is_dynamic` tinyint(4) NOT NULL DEFAULT 0,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `entities_id` (`entities_id`),
  KEY `FQDN` (`name`,`fqdns_id`),
  KEY `fqdns_id` (`fqdns_id`),
  KEY `is_deleted` (`is_deleted`),
  KEY `is_dynamic` (`is_dynamic`),
  KEY `item` (`itemtype`,`items_id`,`is_deleted`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`),
  KEY `ipnetworks_id` (`ipnetworks_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_networknames`
--

LOCK TABLES `glpi_networknames` WRITE;
/*!40000 ALTER TABLE `glpi_networknames` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_networknames` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_networkportaggregates`
--

DROP TABLE IF EXISTS `glpi_networkportaggregates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_networkportaggregates` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `networkports_id` int(10) unsigned NOT NULL DEFAULT 0,
  `networkports_id_list` text DEFAULT NULL COMMENT 'array of associated networkports_id',
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `networkports_id` (`networkports_id`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_networkportaggregates`
--

LOCK TABLES `glpi_networkportaggregates` WRITE;
/*!40000 ALTER TABLE `glpi_networkportaggregates` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_networkportaggregates` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_networkportaliases`
--

DROP TABLE IF EXISTS `glpi_networkportaliases`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_networkportaliases` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `networkports_id` int(10) unsigned NOT NULL DEFAULT 0,
  `networkports_id_alias` int(10) unsigned NOT NULL DEFAULT 0,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `networkports_id` (`networkports_id`),
  KEY `networkports_id_alias` (`networkports_id_alias`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_networkportaliases`
--

LOCK TABLES `glpi_networkportaliases` WRITE;
/*!40000 ALTER TABLE `glpi_networkportaliases` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_networkportaliases` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_networkportconnectionlogs`
--

DROP TABLE IF EXISTS `glpi_networkportconnectionlogs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_networkportconnectionlogs` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `date` timestamp NULL DEFAULT NULL,
  `connected` tinyint(4) NOT NULL DEFAULT 0,
  `networkports_id_source` int(10) unsigned NOT NULL DEFAULT 0,
  `networkports_id_destination` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `date` (`date`),
  KEY `networkports_id_source` (`networkports_id_source`),
  KEY `networkports_id_destination` (`networkports_id_destination`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_networkportconnectionlogs`
--

LOCK TABLES `glpi_networkportconnectionlogs` WRITE;
/*!40000 ALTER TABLE `glpi_networkportconnectionlogs` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_networkportconnectionlogs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_networkportdialups`
--

DROP TABLE IF EXISTS `glpi_networkportdialups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_networkportdialups` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `networkports_id` int(10) unsigned NOT NULL DEFAULT 0,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `networkports_id` (`networkports_id`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_networkportdialups`
--

LOCK TABLES `glpi_networkportdialups` WRITE;
/*!40000 ALTER TABLE `glpi_networkportdialups` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_networkportdialups` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_networkportethernets`
--

DROP TABLE IF EXISTS `glpi_networkportethernets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_networkportethernets` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `networkports_id` int(10) unsigned NOT NULL DEFAULT 0,
  `items_devicenetworkcards_id` int(10) unsigned NOT NULL DEFAULT 0,
  `type` varchar(10) DEFAULT '' COMMENT 'T, LX, SX',
  `speed` int(11) NOT NULL DEFAULT 10 COMMENT 'Mbit/s: 10, 100, 1000, 10000',
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `networkports_id` (`networkports_id`),
  KEY `card` (`items_devicenetworkcards_id`),
  KEY `type` (`type`),
  KEY `speed` (`speed`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_networkportethernets`
--

LOCK TABLES `glpi_networkportethernets` WRITE;
/*!40000 ALTER TABLE `glpi_networkportethernets` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_networkportethernets` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_networkportfiberchannels`
--

DROP TABLE IF EXISTS `glpi_networkportfiberchannels`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_networkportfiberchannels` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `networkports_id` int(10) unsigned NOT NULL DEFAULT 0,
  `items_devicenetworkcards_id` int(10) unsigned NOT NULL DEFAULT 0,
  `networkportfiberchanneltypes_id` int(10) unsigned NOT NULL DEFAULT 0,
  `wwn` varchar(50) DEFAULT '',
  `speed` int(11) NOT NULL DEFAULT 10 COMMENT 'Mbit/s: 10, 100, 1000, 10000',
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `networkports_id` (`networkports_id`),
  KEY `card` (`items_devicenetworkcards_id`),
  KEY `type` (`networkportfiberchanneltypes_id`),
  KEY `wwn` (`wwn`),
  KEY `speed` (`speed`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_networkportfiberchannels`
--

LOCK TABLES `glpi_networkportfiberchannels` WRITE;
/*!40000 ALTER TABLE `glpi_networkportfiberchannels` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_networkportfiberchannels` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_networkportfiberchanneltypes`
--

DROP TABLE IF EXISTS `glpi_networkportfiberchanneltypes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_networkportfiberchanneltypes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_networkportfiberchanneltypes`
--

LOCK TABLES `glpi_networkportfiberchanneltypes` WRITE;
/*!40000 ALTER TABLE `glpi_networkportfiberchanneltypes` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_networkportfiberchanneltypes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_networkportlocals`
--

DROP TABLE IF EXISTS `glpi_networkportlocals`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_networkportlocals` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `networkports_id` int(10) unsigned NOT NULL DEFAULT 0,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `networkports_id` (`networkports_id`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_networkportlocals`
--

LOCK TABLES `glpi_networkportlocals` WRITE;
/*!40000 ALTER TABLE `glpi_networkportlocals` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_networkportlocals` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_networkportmetrics`
--

DROP TABLE IF EXISTS `glpi_networkportmetrics`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_networkportmetrics` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `date` date DEFAULT NULL,
  `ifinbytes` bigint(20) NOT NULL DEFAULT 0,
  `ifinerrors` bigint(20) NOT NULL DEFAULT 0,
  `ifoutbytes` bigint(20) NOT NULL DEFAULT 0,
  `ifouterrors` bigint(20) NOT NULL DEFAULT 0,
  `networkports_id` int(10) unsigned NOT NULL DEFAULT 0,
  `date_creation` timestamp NULL DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`networkports_id`,`date`),
  KEY `date` (`date`),
  KEY `date_creation` (`date_creation`),
  KEY `date_mod` (`date_mod`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_networkportmetrics`
--

LOCK TABLES `glpi_networkportmetrics` WRITE;
/*!40000 ALTER TABLE `glpi_networkportmetrics` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_networkportmetrics` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_networkports`
--

DROP TABLE IF EXISTS `glpi_networkports`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_networkports` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `items_id` int(10) unsigned NOT NULL DEFAULT 0,
  `itemtype` varchar(100) NOT NULL,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `logical_number` int(11) NOT NULL DEFAULT 0,
  `name` varchar(255) DEFAULT NULL,
  `instantiation_type` varchar(255) DEFAULT NULL,
  `mac` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `is_deleted` tinyint(4) NOT NULL DEFAULT 0,
  `is_dynamic` tinyint(4) NOT NULL DEFAULT 0,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  `ifmtu` int(11) NOT NULL DEFAULT 0,
  `ifspeed` bigint(20) NOT NULL DEFAULT 0,
  `ifinternalstatus` varchar(255) DEFAULT NULL,
  `ifconnectionstatus` int(11) NOT NULL DEFAULT 0,
  `iflastchange` varchar(255) DEFAULT NULL,
  `ifinbytes` bigint(20) NOT NULL DEFAULT 0,
  `ifinerrors` bigint(20) NOT NULL DEFAULT 0,
  `ifoutbytes` bigint(20) NOT NULL DEFAULT 0,
  `ifouterrors` bigint(20) NOT NULL DEFAULT 0,
  `ifstatus` varchar(255) DEFAULT NULL,
  `ifdescr` varchar(255) DEFAULT NULL,
  `ifalias` varchar(255) DEFAULT NULL,
  `portduplex` varchar(255) DEFAULT NULL,
  `trunk` tinyint(4) NOT NULL DEFAULT 0,
  `lastup` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `item` (`itemtype`,`items_id`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `mac` (`mac`),
  KEY `is_deleted` (`is_deleted`),
  KEY `is_dynamic` (`is_dynamic`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_networkports`
--

LOCK TABLES `glpi_networkports` WRITE;
/*!40000 ALTER TABLE `glpi_networkports` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_networkports` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_networkports_networkports`
--

DROP TABLE IF EXISTS `glpi_networkports_networkports`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_networkports_networkports` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `networkports_id_1` int(10) unsigned NOT NULL DEFAULT 0,
  `networkports_id_2` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`networkports_id_1`,`networkports_id_2`),
  KEY `networkports_id_2` (`networkports_id_2`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_networkports_networkports`
--

LOCK TABLES `glpi_networkports_networkports` WRITE;
/*!40000 ALTER TABLE `glpi_networkports_networkports` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_networkports_networkports` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_networkports_vlans`
--

DROP TABLE IF EXISTS `glpi_networkports_vlans`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_networkports_vlans` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `networkports_id` int(10) unsigned NOT NULL DEFAULT 0,
  `vlans_id` int(10) unsigned NOT NULL DEFAULT 0,
  `tagged` tinyint(4) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`networkports_id`,`vlans_id`),
  KEY `vlans_id` (`vlans_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_networkports_vlans`
--

LOCK TABLES `glpi_networkports_vlans` WRITE;
/*!40000 ALTER TABLE `glpi_networkports_vlans` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_networkports_vlans` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_networkporttypes`
--

DROP TABLE IF EXISTS `glpi_networkporttypes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_networkporttypes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `value_decimal` int(11) NOT NULL,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `is_importable` tinyint(4) NOT NULL DEFAULT 0,
  `instantiation_type` varchar(255) DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `value_decimal` (`value_decimal`),
  KEY `name` (`name`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `is_importable` (`is_importable`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB AUTO_INCREMENT=305 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_networkporttypes`
--

LOCK TABLES `glpi_networkporttypes` WRITE;
/*!40000 ALTER TABLE `glpi_networkporttypes` DISABLE KEYS */;
INSERT INTO `glpi_networkporttypes` VALUES
(1,0,0,0,'Name','Description References',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(2,0,0,1,'other','none of the following [RFC1213]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(3,0,0,2,'regular1822','BBN Report 1822 [RFC1213]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(4,0,0,3,'hdh1822','BBN Report 1822 [RFC1213]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(5,0,0,4,'ddn-x25','BBN Report 1822 [RFC1213]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(6,0,0,5,'x25','X.25 [RFC1382]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(7,0,0,6,'ethernet-csmacd','[RFC1213]',1,'NetworkPortEthernet','2024-12-27 05:21:51','2024-12-27 05:21:51'),
(8,0,0,7,'IEEE802.3','DEPRECATED [RFC3635]',1,'NetworkPortEthernet','2024-12-27 05:21:51','2024-12-27 05:21:51'),
(9,0,0,8,'IEEE802.4','Token Bus-like Objects [RFC1239]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(10,0,0,9,'IEEE802.5','Token Ring-like Objects [RFC1748]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(11,0,0,10,'iso88026-man','[RFC1213]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(12,0,0,11,'starLan','DEPRECATED [RFC3635]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(13,0,0,12,'proteon-10Mbit','[RFC1213]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(14,0,0,13,'proteon-80Mbit','[RFC1213]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(15,0,0,14,'hyperchannel','[RFC1213]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(16,0,0,15,'FDDI','FDDI Objects [RFC1512]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(17,0,0,16,'lapb','LAP B [RFC1381]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(18,0,0,17,'sdlc','[RFC1213]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(19,0,0,18,'ds1','T1/E1 Carrier Objects [RFC4805]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(20,0,0,19,'e1','obsolete [RFC4805]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(21,0,0,20,'basicISDN','[RFC1213]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(22,0,0,21,'primaryISDN','[RFC1213]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(23,0,0,22,'propPointToPointSerial','[RFC1213]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(24,0,0,23,'ppp','Point-to-Point Protocol [RFC1213][RFC1471]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(25,0,0,24,'softwareLoopback','[RFC1213]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(26,0,0,25,'eon','[RFC1213]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(27,0,0,26,'ethernet-3Mbit','[RFC1213]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(28,0,0,27,'nsip','[RFC1213]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(29,0,0,28,'slip','[RFC1213]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(30,0,0,29,'ultra','[RFC1213]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(31,0,0,30,'ds3','DS3/E3 Interface Objects [RFC3896]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(32,0,0,31,'sip','SMDS Interface Objects [RFC1694]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(33,0,0,32,'frame-relay','Frame Relay Objects for DTE [RFC2115]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(34,0,0,33,'RS-232','RS-232 Objects [RFC1659]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(35,0,0,34,'Parallel','Parallel Printer Objects [RFC1660]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(36,0,0,35,'arcnet','ARC network',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(37,0,0,36,'arcnet-plus','ARC network plus',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(38,0,0,37,'atm','ATM',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(39,0,0,38,'MIOX25','MIOX25 [RFC1461]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(40,0,0,39,'SONET','SONET or SDH',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(41,0,0,40,'x25ple','X.25 packet level [RFC2127]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(42,0,0,41,'iso88022llc','802.2 LLC',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(43,0,0,42,'localTalk','',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(44,0,0,43,'smds-dxi','SMDS DXI',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(45,0,0,44,'frameRelayService','Frame Relay DCE [RFC2954]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(46,0,0,45,'v35','V.35',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(47,0,0,46,'hssi','HSSI',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(48,0,0,47,'hippi','HIPPI',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(49,0,0,48,'modem','generic modem',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(50,0,0,49,'aal5','AAL5 over ATM',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(51,0,0,50,'sonetPath','',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(52,0,0,51,'sonetVT','',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(53,0,0,52,'smds-icip','SMDS Inter-Carrier Interface Protocol',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(54,0,0,53,'propVirtual','proprietary vitural/internal interface [RFC2863]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(55,0,0,54,'propMultiLink','proprietary multi-link multiplexing [RFC2863]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(56,0,0,55,'ieee80212','100BaseVG',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(57,0,0,56,'fibre-channel','Fibre Channel',1,'NetworkPortFiberchannel','2024-12-27 05:21:51','2024-12-27 05:21:51'),
(58,0,0,57,'hippiInterfaces','HIPPI interfaces [Philip_Cameron]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(59,0,0,58,'FrameRelayInterconnect','Interconnet over FR [Unknown]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(60,0,0,59,'aflane8023','ATM Emulated LAN for 802.3 [Keith_McCloghrie]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(61,0,0,60,'aflane8025','ATM Emulated LAN for 802.5 [Keith_McCloghrie]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(62,0,0,61,'cctEmul','ATM Emulated circuit [Guy_Fedorkow]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(63,0,0,62,'fastEther','DEPRECATED [RFC3635]',1,'NetworkPortEthernet','2024-12-27 05:21:51','2024-12-27 05:21:51'),
(64,0,0,63,'isdn','ISDN and X.25 [RFC1356]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(65,0,0,64,'v11','CCITT V.11/X.21 [Satish_Popat]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(66,0,0,65,'v36','CCITT V.36 [Satish_Popat]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(67,0,0,66,'g703-64k','CCITT G703 at 64Kbps [Satish_Popat]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(68,0,0,67,'g703-2mb','CCITT G703 at 2Mbps [Satish_Popat]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(69,0,0,68,'qllc','SNA QLLC [Satish_Popat]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(70,0,0,69,'fastEtherFX','DEPRECATED [RFC3635]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(71,0,0,70,'channel','channel [Steven_Schwell]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(72,0,0,71,'IEEE802.11','radio spread spectrum [Dawkoon_Paul_Lee]',1,'NetworkPortWifi','2024-12-27 05:21:51','2024-12-27 05:21:51'),
(73,0,0,72,'ibm370parChan','IBM System 360/370 OEMI Channel [Bill_Kwan]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(74,0,0,73,'ESCON','IBM Enterprise Systems Connection [Bill_Kwan]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(75,0,0,74,'DLSw','Data Link Switching [Bill_Kwan]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(76,0,0,75,'ISDNs','ISDN S/T interface [Ed_Alcoff]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(77,0,0,76,'ISDNu','ISDN U interface [Ed_Alcoff]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(78,0,0,77,'lapd','Link Access Protocol D [Ed_Alcoff]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(79,0,0,78,'ip-switch','IP Switching Objects [Joe_Wei]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(80,0,0,79,'rsrb','Remote Source Route Bridging [Bob_Clouston]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(81,0,0,80,'atm-logical','ATM Logical Port [RFC3606]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(82,0,0,81,'ds0','Digital Signal Level 0 [RFC2494]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(83,0,0,82,'ds0Bundle','group of ds0s on the same ds1 [RFC2494]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(84,0,0,83,'bsc','Bisynchronous Protocol [Bill_Kwan]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(85,0,0,84,'async','Asynchronous Protocol [Bill_Kwan]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(86,0,0,85,'cnr','Combat Net Radio [Herb_Jensen]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(87,0,0,86,'iso88025Dtr','ISO 802.5r DTR [Trevor_Warwick]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(88,0,0,87,'eplrs','Enhanced  Pos Loc Report Sys [Herb_Jensen]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(89,0,0,88,'arap','Appletalk Remote Access Protocol [Jim_Halpin]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(90,0,0,89,'propCnls','Proprietary Connectionless Proto. [Robert_Neill]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(91,0,0,90,'hostPad','CCITT-ITU X.29 PAD Protocol [Robert_Neill]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(92,0,0,91,'termPad','CCITT-ITU X.3 PAD Facility [Robert_Neill]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(93,0,0,92,'frameRelayMPI','Multiproto Interconnect over FR [Robert_Neill]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(94,0,0,93,'x213','CCITT-ITU X213 [Robert_Neill]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(95,0,0,94,'adsl','Asymmetric Digital Subscriber Loop [Gregory_Bathrick]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(96,0,0,95,'radsl','Rate-Adapt. Digital Subscriber Loop [Gregory_Bathrick]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(97,0,0,96,'sdsl','Symmetric Digital Subscriber Loop [Gregory_Bathrick]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(98,0,0,97,'vdsl','Very H-Speed Digital Subscrib. Loop [Gregory_Bathrick]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(99,0,0,98,'iso88025CRFPInt','ISO 802.5 CRFP [Trevor_Warwick]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(100,0,0,99,'myrinet','Myricom Myrinet [Bob_Felderman]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(101,0,0,100,'voiceEM','Voice recEive and transMit (E&#38;M) [Bob_Stewart]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(102,0,0,101,'voiceFXO','Voice Foreign Exchange Office [Bob_Stewart]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(103,0,0,102,'voiceFXS','Voice Foreign Exchange Station [Bob_Stewart]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(104,0,0,103,'voiceEncap','Voice encapsulation [Bob_Stewart]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(105,0,0,104,'voiceOverIp','Voice over IP encapsulation [Bob_Stewart]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(106,0,0,105,'atmDxi','ATM DXI [Gary_Hanson]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(107,0,0,106,'atmFuni','ATM FUNI [Gary_Hanson]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(108,0,0,107,'atmIma','ATM IMA [Chris_Martin]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(109,0,0,108,'pppMultilinkBundle','PPP Multilink Bundle [John_Shriver]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(110,0,0,109,'ipOverCdlc','IBM ipOverCdlc [Ken_White]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(111,0,0,110,'ipOverClaw','IBM Common Link Access to Workstn [Ken_White]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(112,0,0,111,'stackToStack','IBM stackToStack [Ken_White]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(113,0,0,112,'virtualIpAddress','IBM VIPA [Ken_White]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(114,0,0,113,'mpc','IBM multi-protocol channel support [Ken_White]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(115,0,0,114,'ipOverAtm','IBM ipOverAtm [RFC2320]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(116,0,0,115,'iso88025Fiber','ISO 802.5j Fiber Token Ring [Kevin_Lingle]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(117,0,0,116,'tdlc','IBM twinaxial data link control [John_Pechacek]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(118,0,0,117,'gigabitEthernet','DEPRECATED [RFC3635]',1,'NetworkPortEthernet','2024-12-27 05:21:51','2024-12-27 05:21:51'),
(119,0,0,118,'hdlc','HDLC [Sebastien_Rosset]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(120,0,0,119,'lapf','LAP F [Sebastien_Rosset]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(121,0,0,120,'v37','V.37 [Sebastien_Rosset]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(122,0,0,121,'x25mlp','Multi-Link Protocol [Sebastien_Rosset]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(123,0,0,122,'x25huntGroup','X25 Hunt Group [Sebastien_Rosset]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(124,0,0,123,'transpHdlc','Transp HDLC [Sebastien_Rosset]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(125,0,0,124,'interleave','Interleave channel [Karmous_Edwards]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(126,0,0,125,'fast','Fast channel [Karmous_Edwards]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(127,0,0,126,'ip','IP (for APPN HPR in IP networks) [Robert_Moore]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(128,0,0,127,'docsCableMaclayer','CATV Mac Layer [Azlina_Palmer]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(129,0,0,128,'docsCableDownstream','CATV Downstream interface [Azlina_Palmer]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(130,0,0,129,'docsCableUpstream','CATV Upstream interface [Azlina_Palmer]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(131,0,0,130,'a12MppSwitch','Avalon Parallel Processor [Ross_Harvey]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(132,0,0,131,'tunnel','Encapsulation interface [Dave_Thaler]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(133,0,0,132,'coffee','coffee pot [RFC2325]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(134,0,0,133,'ces','Circiut Emulation Service [Ron_Carmona]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(135,0,0,134,'atmSubInterface','(x)  ATM Sub Interface [Keith_McCloghrie]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(136,0,0,135,'l2vlan','Layer 2 Virtual LAN using 802.1Q [Mike_MacFaden]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(137,0,0,136,'l3ipvlan','Layer 3 Virtual LAN - IP Protocol [Mike_MacFaden]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(138,0,0,137,'l3ipxvlan','Layer 3 Virtual LAN - IPX Prot. [Mike_MacFaden]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(139,0,0,138,'digitalPowerLine','IP over Power Lines [Hans_Scholtes]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(140,0,0,139,'mediaMailOverIp','(xxx)  Multimedia Mail over IP [Hongchi_Shih]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(141,0,0,140,'dtm','Dynamic synchronous Transfer Mode [Jakob_Ellerstedt]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(142,0,0,141,'dcn','Data Communications Network [James_Card]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(143,0,0,142,'ipForward','IP Forwarding Interface [James_Card]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(144,0,0,143,'msdsl','Multi-rate Symmetric DSL [Gopinath_Durairaj]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(145,0,0,144,'ieee1394     IEEE1394','High Performance Serial Bus [Kenji_Fujisawa]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(146,0,0,145,'if-gsn','HIPPI-6400 [Jean_Michel_Pittet]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(147,0,0,146,'dvbRccMacLayer','DVB-RCC MAC Layer [Maarten_Oelering]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(148,0,0,147,'dvbRccDownstream','DVB-RCC Downstream Channel [Maarten_Oelering]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(149,0,0,148,'dvbRccUpstream','DVB-RCC Upstream Channel [Maarten_Oelering]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(150,0,0,149,'atmVirtual','ATM Virtual Interface [Subrahmanya_Hegde]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(151,0,0,150,'mplsTunnel','MPLS Tunnel Virtual Interface [Cheenu_Srinivasan]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(152,0,0,151,'srp','Spatial Reuse Protocol [Bill_Shetti]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(153,0,0,152,'voiceOverAtm','Voice over ATM [Chris_White]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(154,0,0,153,'voiceOverFrameRelay','Voice Over Frame Relay [Chris_White]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(155,0,0,154,'idsl','Digital Subscriber Loop over ISDN [Patrick_Gili]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(156,0,0,155,'compositeLink','Avici Composite Link Interface [Joseph_Dube]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(157,0,0,156,'ss7SigLink','SS7 Signaling Link [Cheenu_Srinivasan]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(158,0,0,157,'propWirelessP2P','Prop. P2P wireless interface [Joseph_Raja]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(159,0,0,158,'frForward','Frame forward Interface [Subrahmanya_Hegde]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(160,0,0,159,'rfc1483','Multiprotocol over ATM AAL5 [RFC1483]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(161,0,0,160,'USB','USB Interface [Bejamin_Dolnik]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(162,0,0,161,'ieee8023adLag','IEEE 802.3ad Link Aggregate [Les_Bell]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(163,0,0,162,'bgpPolicyAccounting','BGP Policy Accounting [Vinod_B_C]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(164,0,0,163,'frf16MfrBundle','FRF.16 Multilik Frame Relay [Pate_Prayson]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(165,0,0,164,'h323Gatekeeper','H323 Gatekeeper [Chris_White]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(166,0,0,165,'h323Proxy','H323 Voice and Video Proxy [Chris_White]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(167,0,0,166,'mpls','MPLS [Cheenu_Srinivasan]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(168,0,0,167,'mfSigLink','Multi-frequency signaling link [Cheenu_Srinivasan]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(169,0,0,168,'hdsl2','High Bit-Rate DSL, 2nd gen. [Bob_Ray]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(170,0,0,169,'shdsl','Multirate HDSL2 [Bob_Ray]',1,'NetworkPortEthernet','2024-12-27 05:21:51','2024-12-27 05:21:51'),
(171,0,0,170,'ds1FDL','Facility Data Link (4Kbps) on a DS1 [Bill_Kwan]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(172,0,0,171,'POS','Packet over SONET/SDH Interface [Ewart_Tempest]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(173,0,0,172,'dvbAsiIn','DVB-ASI Input [Hezi_Oved]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(174,0,0,173,'dvbAsiOut','DVB-ASI Output [Hezi_Oved]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(175,0,0,174,'plc','Power Line Communications [Andrew_Lunn]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(176,0,0,175,'NFAS','Non-Facility Associated Signaling [Sidney_Antommarchi]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(177,0,0,176,'TR008','TROO8 [Sidney_Antommarchi]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(178,0,0,177,'GR303RDT','Remote Digital Terminal [Sidney_Antommarchi]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(179,0,0,178,'GR303IDT','Integrated Digital Terminal [Sidney_Antommarchi]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(180,0,0,179,'ISUP','ISUP [Sidney_Antommarchi]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(181,0,0,180,'propDocsWirelessMaclayer','Cisco proprietary Maclayer [Joseph_Raja]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(182,0,0,181,'propDocsWirelessDownstream','Cisco proprietary Downstream [Joseph_Raja]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(183,0,0,182,'propDocsWirelessUpstream','Cisco proprietary Upstream [Joseph_Raja]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(184,0,0,183,'hiperlan2','HIPERLAN Type 2 Radio Interface [Jamshid_Khun_Jush]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(185,0,0,184,'propBWAp2Mp','PropBroadbandWirelessAccesspt2Multipt\n(use of this type for IEEE 802.16\nWMAN, interfaces as per IEEE 802.16\nis deprecated and iftype 237 should\nbe used instead) [Zvika_Zilberman]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(186,0,0,185,'sonetOverheadChannel','SONET Overhead Channel [ODSI_Coalition_K_Arv]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(187,0,0,186,'digitalWrapperOverheadChannel','Digital Wrapper\nOverhead [ODSI_Coalition_K_Arv]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(188,0,0,187,'aal2','ATM adaptation layer 2 [K_Ashoka]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(189,0,0,188,'radioMAC','MAC layer over radio links [Daniele_Behar]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(190,0,0,189,'atmRadio','ATM over radio links [Daniele_Behar]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(191,0,0,190,'IMT','Inter-Machine Trunks [Sidney_Antommarchi]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(192,0,0,191,'mvl','Multiple Virtual Lines DSL [Kevin_Baughman]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(193,0,0,192,'reachDSL','Long Reach DSL [Kevin_Baughman]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(194,0,0,193,'frDlciEndPt','Frame Relay DLCI End Point [Robert_Steinberger]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(195,0,0,194,'atmVciEndPt','ATM VCI End Point [Robert_Steinberger]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(196,0,0,195,'opticalChannel','Optical Channel [Mark_Stewart]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(197,0,0,196,'opticalTransport','Optical Transport [Mark_Stewart]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(198,0,0,197,'propAtm','Proprietary ATM [Subrahmanya_Hegde]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(199,0,0,198,'voiceOverCable','Voice Over Cable Interface [Eugene_Nechamkin]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(200,0,0,199,'infiniband','Infiniband [Bill_Strahm]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(201,0,0,200,'teLink','TE Link [Martin_Dubuc]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(202,0,0,201,'q2931','Q.2931 [Sidney_Antommarchi_2]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(203,0,0,202,'virtualTg','Virtual Trunk Group [Sidney_Antommarchi_2]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(204,0,0,203,'sipTg','SIP Trunk Group [Sidney_Antommarchi_2]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(205,0,0,204,'sipSig','SIP Signaling [Sidney_Antommarchi_2]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(206,0,0,205,'docsCableUpstreamChannel','CATV Upstream Channel [Greg_Nakanishi]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(207,0,0,206,'econet','Acorn Econet [Ben_Harris]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(208,0,0,207,'pon155','FSAN 155Mb Symetrical PON interface [Graham_Higgins]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(209,0,0,208,'pon622','FSAN 622Mb Symetrical PON interface [Graham_Higgins]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(210,0,0,209,'bridge','Transparent bridge interface [Yuzo_Watanabe]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(211,0,0,210,'linegroup','Interface common to multiple lines [Yuzo_Watanabe]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(212,0,0,211,'voiceEMFGD','voice E&#38;M Feature Group D [Taher_Shaikh]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(213,0,0,212,'voiceFGDEANA','voice FGD Exchange Access North American [Taher_Shaikh]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(214,0,0,213,'voiceDID','voice Direct Inward Dialing [Taher_Shaikh]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(215,0,0,214,'mpegTransport','MPEG transport interface [Gaurav_Aggarwal]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(216,0,0,215,'sixToFour','6to4 interface  (DEPRECATED) [RFC4087]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(217,0,0,216,'gtp','GTP (GPRS Tunneling Protocol) [Rajesh_M_L]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(218,0,0,217,'pdnEtherLoop1','Paradyne EtherLoop 1 [Shu_Dong]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(219,0,0,218,'pdnEtherLoop2','Paradyne EtherLoop 2 [Shu_Dong]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(220,0,0,219,'opticalChannelGroup','Optical Channel Group [Hing_Kam_Lam]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(221,0,0,220,'homepna','HomePNA ITU-T G.989 [Stephen_Palm]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(222,0,0,221,'gfp','Generic Framing Procedure (GFP) [Italo_Busi]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(223,0,0,222,'ciscoISLvlan','Layer 2 Virtual LAN using Cisco ISL [Sandeep_Raghavendra]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(224,0,0,223,'actelisMetaLOOP','Acteleis proprietary MetaLOOP\nHigh Speed Link [Edward_Beili]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(225,0,0,224,'fcipLink','FCIP Link [Anil_Rijhsinghani]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(226,0,0,225,'rpr','Resilient Packet Ring Interface Type [IEEE 802.17]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(227,0,0,226,'qam','RF Qam Interface [Jeyachitra_Alagar]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(228,0,0,227,'lmp','Link Management Protocol [RFC4327]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(229,0,0,228,'cblVectaStar','Cambridge Broadband Networks Limited\nVectaStar [John_Naylon]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(230,0,0,229,'docsCableMCmtsDownstream','CATV Modular CMTS Downstream\nInterface [Eduardo_Cardona][\"Data-Over-Cable Service Interface Specifications:\nM-CMTS Operations Support System Interface Specification,\nCM-SP-M-OSSI-I01-050805\", DOCSIS, August 2005.][http://www.cablemodem.com/specifications][https://www.cablelabs.com/specifications/archives/docsis.html]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(231,0,0,230,'adsl2','Asymmetric Digital Subscriber Loop\nVersion 2 (DEPRECATED - REPLACED\nBY 238) [RFC4706]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(232,0,0,231,'macSecControlledIF','MACSecControlled [Paul_Congdon]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(233,0,0,232,'macSecUncontrolledIF','MACSecUncontrolled [Paul_Congdon]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(234,0,0,233,'aviciOpticalEther','Avici Optical Ethernet Aggregate [Somen_Bhattacharya]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(235,0,0,234,'atmbond','atmbond [https://www.itu.int/rec/T-REC-G.998.1-200501-I/en]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(236,0,0,235,'voiceFGDOS','voice FGD Operator Services [Lizzie_Cheung]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(237,0,0,236,'mocaVersion1','MultiMedia over Coax Alliance [Ladd_Wardani]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(238,0,0,237,'ieee80216WMAN','IEEE 802.16 WMAN interface [http://standards.ieee.org/getieee802/802.16.html]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(239,0,0,238,'adsl2plus','Asymmetric Digital Subscriber Loop\nVersion 2 -- Version 2 Plus and all\nvariants [RFC4706]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(240,0,0,239,'dvbRcsMacLayer','DVB-RCS MAC Layer [RFC5728][ETSI EN 301 790][https://web.archive.org/web/20181229131835/http://satlabs.org/pdf/SatLabs_System_Recommendations_v2.0_M&#38;C.pdf]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(241,0,0,240,'dvbTdm','DVB Satellite TDM [RFC5728][ETSI EN 300 421][ETSI EN 302 307][https://web.archive.org/web/20181229131835/http://satlabs.org/pdf/SatLabs_System_Recommendations_v2.0_M&#38;C.pdf]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(242,0,0,241,'dvbRcsTdma','DVB-RCS TDMA [RFC5728][ETSI EN 301 790][ETSI EN 300 421][https://web.archive.org/web/20181229131835/http://satlabs.org/pdf/SatLabs_System_Recommendations_v2.0_M&#38;C.pdf]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(243,0,0,242,'x86Laps','LAPS based on ITU-T X.86/Y.1323 [Orly_Nicklass][http://grouper.ieee.org/groups/802/3/ad_hoc/etholaps/public/docs/opening_report_0301.pdf]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(244,0,0,243,'wwanPP','3GPP WWAN [Gabriel_Montenegro][https://www.3gpp.org/ftp/specs/archive/23_series/23.060/23060-740.zip]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(245,0,0,244,'wwanPP2','3GPP2 WWAN [Gabriel_Montenegro][http://www.3gpp2.org/Public_html/Specs/C.S0017-005-A_v1.0_040617.pdf]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(246,0,0,245,'voiceEBS','voice P-phone EBS physical interface [Tom_Chou]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(247,0,0,246,'ifPwType','Pseudowire interface type [RFC5601]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(248,0,0,247,'ILAN','Internal LAN on a bridge per IEEE\n802.1ap [Glenn_Parsons][http://www.ieee802.org/1/files/private/ap-drafts/d3/802-1ap-D3-4.pdf]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(249,0,0,248,'PIP','Provider Instance Port on a bridge\nper IEEE 802.1ah PBB [Glenn_Parsons][http://www.ieee802.org/1/files/private/ah-drafts/d4/802-1ah-d4-2.pdf]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(250,0,0,249,'aluELP','Alcatel-Lucent Ethernet Link Protection [Xiaohua_Ma]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(251,0,0,250,'gpon','Gigabit-capable passive optical networks\n(G-PON)  as per ITU-T G.984 [Hyeri_Koh]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(252,0,0,251,'vdsl2','Very high speed digital subscriber\nline Version 2 (as per ITU-T Recommendation\nG.993.2) [Markus_Freudenberger][RFC5650]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(253,0,0,252,'capwapDot11Profile','WLAN Profile Interface [RFC5834]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(254,0,0,253,'capwapDot11Bss','WLAN BSS Interface [RFC5834]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(255,0,0,254,'capwapWtpVirtualRadio','WTP Virtual Radio Interface [RFC5833]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(256,0,0,255,'bits','bitsport [Du_Feng]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(257,0,0,256,'docsCableUpstreamRfPort','DOCSIS CATV Upstream RF\nPort [Michael_Patrick][https://www.cablelabs.com/specifications/CM-SP-EQAM-PMI-I01-081209.pdf]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(258,0,0,257,'cableDownstreamRfPort','CATV downstream RF port [Michael_Patrick]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(259,0,0,258,'vmwareVirtualNic','VMware Virtual Network Interface [Mike_MacFaden]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(260,0,0,259,'ieee802154','IEEE 802.15.4 WPAN interface [Juergen_Schoenwaelde][\"IEEE Std. 802.15.4-2006\", October 2006.]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(261,0,0,260,'otnOdu','OTN Optical Data Unit [Jim_Vance][https://www.itu.int/ITU-T/studygroups/com15/otn/OTNtutorial.pdf]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(262,0,0,261,'otnOtu','OTN Optical channel Transport Unit [Jim_Vance][https://www.itu.int/ITU-T/studygroups/com15/otn/OTNtutorial.pdf]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(263,0,0,262,'ifVfiType','VPLS Forwarding Instance Interface\nType [Manas_Pati]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(264,0,0,263,'g9981','G.998.1 bonded interface [RFC6768][RFC Errata 3591]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(265,0,0,264,'g9982','G.998.2 bonded interface [RFC6767][RFC Errata 3589]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(266,0,0,265,'g9983','G.998.3 bonded interface [RFC6766][RFC Errata 3588]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(267,0,0,266,'aluEpon (E-PON)','Ethernet Passive Optical Networks [Karel_Meijfroidt]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(268,0,0,267,'aluEponOnu','EPON Optical Network Unit [Karel_Meijfroidt]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(269,0,0,268,'aluEponPhysicalUni','EPON physical User to Network\ninterface [Karel_Meijfroidt]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(270,0,0,269,'aluEponLogicalLink','The emulation of a point-to-point\nlink over the EPON layer [Karel_Meijfroidt]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(271,0,0,270,'aluGponOnu','GPON Optical Network Unit [Karel_Meijfroidt][https://www.itu.int/rec/T-REC-G.984.2/en]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(272,0,0,271,'aluGponPhysicalUni','GPON physical User to Network\ninterface [Karel_Meijfroidt][https://www.itu.int/rec/T-REC-G.984.2/en]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(273,0,0,272,'vmwareNicTeam','VMware NIC Team [Michael_MacFaden][https://www.vmware.com/pdf/esx2_NIC_Teaming.pdf]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(274,0,0,273,'Reserved','The corresponding transmission value\nis allocated according to the following\nreference. [RFC6825]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(275,0,0,274,'Reserved','The corresponding transmission value\nis allocated according to the following reference. [RFC7257]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(276,0,0,275,'Reserved','The corresponding transmission value\nis allocated according to the following reference. [RFC7257]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(277,0,0,276,'Reserved','The corresponding transmission value\nis allocated according to the following reference. [RFC7257]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(278,0,0,277,'docsOfdmDownstream','CATV Downstream OFDM interface [https://www.cablelabs.com/specification/cable-modem-operations-support-system-interface-specification][Miguel_O_Alvarez]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(279,0,0,278,'docsOfdmaUpstream','CATV Upstream OFDMA interface [https://www.cablelabs.com/specification/cable-modem-operations-support-system-interface-specification][Miguel_O_Alvarez]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(280,0,0,279,'gfast','G.fast port [ITU-T G.9701]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(281,0,0,280,'sdci','SDCI (IO-Link) [IEC 61131-9 Edition 1.0 2013-09][Markus_Rentschler]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(282,0,0,281,'xboxWireless','Xbox wireless [Brandon_Jiang]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(283,0,0,282,'fastdsl','FastDSL [BBF TR-355][Broadband_Forum]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(284,0,0,283,'docsCableScte55d1FwdOob','Cable SCTE 55-1 OOB Forward Channel [https://www.scte.org/documents/pdf/Standards/ANSI_SCTE-55-1-2009.pdf][Brian_Hedstrom]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(285,0,0,284,'docsCableScte55d1RetOob','Cable SCTE 55-1 OOB Return Channel [https://www.scte.org/documents/pdf/Standards/ANSI_SCTE-55-1-2009.pdf][Brian_Hedstrom]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(286,0,0,285,'docsCableScte55d2DsOob','Cable SCTE 55-2 OOB Downstream Channel [https://web.archive.org/web/20190822104256/http://www.scte.org/documents/pdf/Standards/ANSI_SCTE%2055-2%202008.pdf][Brian_Hedstrom]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(287,0,0,286,'docsCableScte55d2UsOob','Cable SCTE 55-2 OOB Upstream Channel [https://web.archive.org/web/20190822104256/http://www.scte.org/documents/pdf/Standards/ANSI_SCTE%2055-2%202008.pdf][Brian_Hedstrom]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(288,0,0,287,'docsCableNdf','Cable Narrowband Digital Forward [http://www.cablelabs.com/wp-content/uploads/specdocs/CM-SP-R-OOB-I04-160923.pdf][Brian_Hedstrom]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(289,0,0,288,'docsCableNdr','Cable Narrowband Digital Return [http://www.cablelabs.com/wp-content/uploads/specdocs/CM-SP-R-OOB-I04-160923.pdf][Brian_Hedstrom]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(290,0,0,289,'ptm','Packet Transfer Mode [ITU-T G.993.1, Annex H][ITU-T G.993.2][ITU-T G.9701][Broadband_Forum]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(291,0,0,290,'ghn','G.hn port [ITU-T G.9961][Broadband_Forum]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(292,0,0,291,'otnOtsi','Optical Tributary Signal [ITU-T G.959.1][Koteswara_Boyapati]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(293,0,0,292,'otnOtuc','OTN OTUCn [ITU-T G.709/Y.1331][Koteswara_Boyapati]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(294,0,0,293,'otnOduc','OTN ODUC [ITU-T G.709][Koteswara_Boyapati]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(295,0,0,294,'otnOtsig','OTN OTUC Signal [ITU-T G.709][Koteswara_Boyapati]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(296,0,0,295,'microwaveCarrierTermination','air interface of a single microwave carrier [RFC8561]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(297,0,0,296,'microwaveRadioLinkTerminal','radio link interface for one or several aggregated microwave carriers [RFC8561]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(298,0,0,297,'ieee8021axDrni','IEEE 802.1AX Distributed Resilient Network Interface [IEEE 802.1AX-Rev-d2-0][John_Messenger]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(299,0,0,298,'ax25','AX.25 network interfaces [AX.25 Link Access Protocol for Amateur Packet Radio version 2.2][Iain_Learmonth]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(300,0,0,299,'ieee19061nanocom','Nanoscale and Molecular Communication [IEEE 1906.1-2015][Stephen_F_Bush]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(301,0,0,300,'cpri','Common Public Radio Interface [CPRI v7.0][Renwang_Liu]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(302,0,0,301,'omni','Overlay Multilink Network Interface (OMNI) [draft-templin-6man-omni-00][Fred_L_Templin]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(303,0,0,302,'roe','Radio over Ethernet Interface [1914.3-2018 - IEEE Standard for Radio over Ethernet Encapsulations and Mappings][Renwang_Liu]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51'),
(304,0,0,303,'p2pOverLan','Point to Point over LAN interface [RFC9296]',0,NULL,'2024-12-27 05:21:51','2024-12-27 05:21:51');
/*!40000 ALTER TABLE `glpi_networkporttypes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_networkportwifis`
--

DROP TABLE IF EXISTS `glpi_networkportwifis`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_networkportwifis` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `networkports_id` int(10) unsigned NOT NULL DEFAULT 0,
  `items_devicenetworkcards_id` int(10) unsigned NOT NULL DEFAULT 0,
  `wifinetworks_id` int(10) unsigned NOT NULL DEFAULT 0,
  `networkportwifis_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'only useful in case of Managed node',
  `version` varchar(20) DEFAULT NULL COMMENT 'a, a/b, a/b/g, a/b/g/n, a/b/g/n/y',
  `mode` varchar(20) DEFAULT NULL COMMENT 'ad-hoc, managed, master, repeater, secondary, monitor, auto',
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `networkports_id` (`networkports_id`),
  KEY `card` (`items_devicenetworkcards_id`),
  KEY `essid` (`wifinetworks_id`),
  KEY `version` (`version`),
  KEY `mode` (`mode`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`),
  KEY `networkportwifis_id` (`networkportwifis_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_networkportwifis`
--

LOCK TABLES `glpi_networkportwifis` WRITE;
/*!40000 ALTER TABLE `glpi_networkportwifis` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_networkportwifis` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_networks`
--

DROP TABLE IF EXISTS `glpi_networks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_networks` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_networks`
--

LOCK TABLES `glpi_networks` WRITE;
/*!40000 ALTER TABLE `glpi_networks` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_networks` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_notepads`
--

DROP TABLE IF EXISTS `glpi_notepads`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_notepads` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `itemtype` varchar(100) DEFAULT NULL,
  `items_id` int(10) unsigned NOT NULL DEFAULT 0,
  `date_creation` timestamp NULL DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `users_id` int(10) unsigned NOT NULL DEFAULT 0,
  `users_id_lastupdater` int(10) unsigned NOT NULL DEFAULT 0,
  `content` longtext DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `item` (`itemtype`,`items_id`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`),
  KEY `users_id_lastupdater` (`users_id_lastupdater`),
  KEY `users_id` (`users_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_notepads`
--

LOCK TABLES `glpi_notepads` WRITE;
/*!40000 ALTER TABLE `glpi_notepads` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_notepads` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_notifications`
--

DROP TABLE IF EXISTS `glpi_notifications`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_notifications` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `itemtype` varchar(100) NOT NULL,
  `event` varchar(255) NOT NULL,
  `comment` text DEFAULT NULL,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `is_active` tinyint(4) NOT NULL DEFAULT 0,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  `allow_response` tinyint(4) NOT NULL DEFAULT 1,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `itemtype` (`itemtype`),
  KEY `entities_id` (`entities_id`),
  KEY `is_active` (`is_active`),
  KEY `date_mod` (`date_mod`),
  KEY `is_recursive` (`is_recursive`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB AUTO_INCREMENT=79 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_notifications`
--

LOCK TABLES `glpi_notifications` WRITE;
/*!40000 ALTER TABLE `glpi_notifications` DISABLE KEYS */;
INSERT INTO `glpi_notifications` VALUES
(1,'Alert Tickets not closed',0,'Ticket','alertnotclosed',NULL,1,1,NULL,NULL,1),
(2,'New Ticket',0,'Ticket','new',NULL,1,1,NULL,NULL,1),
(3,'Update Ticket',0,'Ticket','update',NULL,1,1,'2025-01-29 02:50:37',NULL,1),
(4,'Close Ticket',0,'Ticket','closed',NULL,1,1,NULL,NULL,1),
(5,'Add Followup',0,'Ticket','add_followup',NULL,1,1,NULL,NULL,1),
(6,'Add Task',0,'Ticket','add_task',NULL,1,1,NULL,NULL,1),
(7,'Update Followup',0,'Ticket','update_followup',NULL,1,1,NULL,NULL,1),
(8,'Update Task',0,'Ticket','update_task',NULL,1,1,NULL,NULL,1),
(9,'Delete Followup',0,'Ticket','delete_followup',NULL,1,1,NULL,NULL,1),
(10,'Delete Task',0,'Ticket','delete_task',NULL,1,1,NULL,NULL,1),
(11,'Resolve ticket',0,'Ticket','solved',NULL,1,1,NULL,NULL,1),
(12,'Ticket Validation',0,'Ticket','validation',NULL,1,1,NULL,NULL,1),
(13,'New Reservation',0,'Reservation','new',NULL,1,1,NULL,NULL,1),
(14,'Update Reservation',0,'Reservation','update',NULL,1,1,NULL,NULL,1),
(15,'Delete Reservation',0,'Reservation','delete',NULL,1,1,NULL,NULL,1),
(16,'Alert Reservation',0,'Reservation','alert',NULL,1,1,NULL,NULL,1),
(17,'Contract Notice',0,'Contract','notice',NULL,1,1,NULL,NULL,1),
(18,'Contract End',0,'Contract','end',NULL,1,1,NULL,NULL,1),
(19,'MySQL Synchronization',0,'DBConnection','desynchronization',NULL,1,1,NULL,NULL,1),
(20,'Cartridges',0,'CartridgeItem','alert',NULL,1,1,NULL,NULL,1),
(21,'Consumables',0,'ConsumableItem','alert',NULL,1,1,NULL,NULL,1),
(22,'Infocoms',0,'Infocom','alert',NULL,1,1,NULL,NULL,1),
(23,'Software Licenses',0,'SoftwareLicense','alert',NULL,1,1,NULL,NULL,1),
(24,'Ticket Recall',0,'Ticket','recall',NULL,1,1,NULL,NULL,1),
(25,'Password Forget',0,'User','passwordforget',NULL,1,1,NULL,NULL,1),
(26,'Ticket Satisfaction',0,'Ticket','satisfaction',NULL,1,1,NULL,NULL,1),
(27,'Item not unique',0,'FieldUnicity','refuse',NULL,1,1,NULL,NULL,1),
(28,'CronTask Watcher',0,'CronTask','alert',NULL,1,1,NULL,NULL,1),
(29,'New Problem',0,'Problem','new',NULL,1,1,NULL,NULL,1),
(30,'Update Problem',0,'Problem','update',NULL,1,1,NULL,NULL,1),
(31,'Resolve Problem',0,'Problem','solved',NULL,1,1,NULL,NULL,1),
(32,'Add Task',0,'Problem','add_task',NULL,1,1,NULL,NULL,1),
(33,'Update Task',0,'Problem','update_task',NULL,1,1,NULL,NULL,1),
(34,'Delete Task',0,'Problem','delete_task',NULL,1,1,NULL,NULL,1),
(35,'Close Problem',0,'Problem','closed',NULL,1,1,NULL,NULL,1),
(36,'Delete Problem',0,'Problem','delete',NULL,1,1,NULL,NULL,1),
(37,'Ticket Validation Answer',0,'Ticket','validation_answer',NULL,1,1,NULL,NULL,1),
(38,'Contract End Periodicity',0,'Contract','periodicity',NULL,1,1,NULL,NULL,1),
(39,'Contract Notice Periodicity',0,'Contract','periodicitynotice',NULL,1,1,NULL,NULL,1),
(40,'Planning recall',0,'PlanningRecall','planningrecall',NULL,1,1,NULL,NULL,1),
(41,'Delete Ticket',0,'Ticket','delete',NULL,1,1,NULL,NULL,1),
(42,'New Change',0,'Change','new',NULL,1,1,NULL,NULL,1),
(43,'Update Change',0,'Change','update',NULL,1,1,NULL,NULL,1),
(44,'Resolve Change',0,'Change','solved',NULL,1,1,NULL,NULL,1),
(45,'Add Task',0,'Change','add_task',NULL,1,1,NULL,NULL,1),
(46,'Update Task',0,'Change','update_task',NULL,1,1,NULL,NULL,1),
(47,'Delete Task',0,'Change','delete_task',NULL,1,1,NULL,NULL,1),
(48,'Close Change',0,'Change','closed',NULL,1,1,NULL,NULL,1),
(49,'Delete Change',0,'Change','delete',NULL,1,1,NULL,NULL,1),
(50,'Ticket Satisfaction Answer',0,'Ticket','replysatisfaction',NULL,1,1,NULL,NULL,1),
(51,'Receiver errors',0,'MailCollector','error',NULL,1,1,NULL,NULL,1),
(52,'New Project',0,'Project','new',NULL,1,1,NULL,NULL,1),
(53,'Update Project',0,'Project','update',NULL,1,1,NULL,NULL,1),
(54,'Delete Project',0,'Project','delete',NULL,1,1,NULL,NULL,1),
(55,'New Project Task',0,'ProjectTask','new',NULL,1,1,NULL,NULL,1),
(56,'Update Project Task',0,'ProjectTask','update',NULL,1,1,NULL,NULL,1),
(57,'Delete Project Task',0,'ProjectTask','delete',NULL,1,1,NULL,NULL,1),
(58,'Request Unlock Items',0,'ObjectLock','unlock',NULL,1,1,NULL,NULL,1),
(59,'New user in requesters',0,'Ticket','requester_user',NULL,1,1,NULL,NULL,1),
(60,'New group in requesters',0,'Ticket','requester_group',NULL,1,1,NULL,NULL,1),
(61,'New user in observers',0,'Ticket','observer_user',NULL,1,1,NULL,NULL,1),
(62,'New group in observers',0,'Ticket','observer_group',NULL,1,1,NULL,NULL,1),
(63,'New user in assignees',0,'Ticket','assign_user',NULL,1,1,NULL,NULL,1),
(64,'New group in assignees',0,'Ticket','assign_group',NULL,1,1,NULL,NULL,1),
(65,'New supplier in assignees',0,'Ticket','assign_supplier',NULL,1,1,NULL,NULL,1),
(66,'Saved searches',0,'SavedSearch_Alert','alert',NULL,1,1,NULL,NULL,1),
(67,'Certificates',0,'Certificate','alert',NULL,1,1,NULL,NULL,1),
(68,'Alert expired domains',0,'Domain','ExpiredDomains',NULL,1,1,NULL,NULL,1),
(69,'Alert domains close expiries',0,'Domain','DomainsWhichExpire',NULL,1,1,NULL,NULL,1),
(70,'Password expires alert',0,'User','passwordexpires',NULL,1,1,NULL,NULL,1),
(71,'Check plugin updates',0,'Glpi\\Marketplace\\Controller','checkpluginsupdate',NULL,1,1,NULL,NULL,1),
(72,'New user mentioned',0,'Ticket','user_mention',NULL,1,1,NULL,NULL,1),
(73,'Formulário criado',0,'PluginFormcreatorFormAnswer','plugin_formcreator_form_created','',1,1,'2025-01-10 21:20:07','2025-01-10 21:20:07',1),
(74,'Um formulário precisa de validação',0,'PluginFormcreatorFormAnswer','plugin_formcreator_need_validation','',1,1,'2025-01-10 21:20:07','2025-01-10 21:20:07',1),
(75,'Formulário rejeitado',0,'PluginFormcreatorFormAnswer','plugin_formcreator_refused','',1,1,'2025-01-10 21:20:07','2025-01-10 21:20:07',1),
(76,'Formulário aceito',0,'PluginFormcreatorFormAnswer','plugin_formcreator_accepted','',1,1,'2025-01-10 21:20:07','2025-01-10 21:20:07',1),
(77,'Formulário deletado',0,'PluginFormcreatorFormAnswer','plugin_formcreator_deleted','',1,1,'2025-01-10 21:20:07','2025-01-10 21:20:07',1);
/*!40000 ALTER TABLE `glpi_notifications` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_notifications_notificationtemplates`
--

DROP TABLE IF EXISTS `glpi_notifications_notificationtemplates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_notifications_notificationtemplates` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `notifications_id` int(10) unsigned NOT NULL DEFAULT 0,
  `mode` varchar(20) NOT NULL COMMENT 'See Notification_NotificationTemplate::MODE_* constants',
  `notificationtemplates_id` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`notifications_id`,`mode`,`notificationtemplates_id`),
  KEY `notificationtemplates_id` (`notificationtemplates_id`),
  KEY `mode` (`mode`)
) ENGINE=InnoDB AUTO_INCREMENT=83 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_notifications_notificationtemplates`
--

LOCK TABLES `glpi_notifications_notificationtemplates` WRITE;
/*!40000 ALTER TABLE `glpi_notifications_notificationtemplates` DISABLE KEYS */;
INSERT INTO `glpi_notifications_notificationtemplates` VALUES
(1,1,'mailing',6),
(79,2,'ajax',4),
(2,2,'mailing',4),
(81,3,'ajax',4),
(3,3,'mailing',4),
(4,4,'mailing',4),
(82,5,'ajax',4),
(5,5,'mailing',4),
(6,6,'mailing',4),
(7,7,'mailing',4),
(8,8,'mailing',4),
(9,9,'mailing',4),
(10,10,'mailing',4),
(11,11,'mailing',4),
(12,12,'mailing',7),
(13,13,'mailing',2),
(14,14,'mailing',2),
(15,15,'mailing',2),
(16,16,'mailing',3),
(17,17,'mailing',12),
(18,18,'mailing',12),
(19,19,'mailing',1),
(20,20,'mailing',8),
(21,21,'mailing',9),
(22,22,'mailing',10),
(23,23,'mailing',11),
(24,24,'mailing',4),
(25,25,'mailing',13),
(26,26,'mailing',14),
(27,27,'mailing',15),
(28,28,'mailing',16),
(29,29,'mailing',17),
(30,30,'mailing',17),
(31,31,'mailing',17),
(32,32,'mailing',17),
(33,33,'mailing',17),
(34,34,'mailing',17),
(35,35,'mailing',17),
(36,36,'mailing',17),
(37,37,'mailing',7),
(38,38,'mailing',12),
(39,39,'mailing',12),
(40,40,'mailing',18),
(41,41,'mailing',4),
(42,42,'mailing',19),
(43,43,'mailing',19),
(44,44,'mailing',19),
(45,45,'mailing',19),
(46,46,'mailing',19),
(47,47,'mailing',19),
(48,48,'mailing',19),
(49,49,'mailing',19),
(50,50,'mailing',14),
(51,51,'mailing',20),
(52,52,'mailing',21),
(53,53,'mailing',21),
(54,54,'mailing',21),
(55,55,'mailing',22),
(56,56,'mailing',22),
(57,57,'mailing',22),
(58,58,'mailing',23),
(59,59,'mailing',4),
(60,60,'mailing',4),
(61,61,'mailing',4),
(62,62,'mailing',4),
(63,63,'mailing',4),
(64,64,'mailing',4),
(65,65,'mailing',4),
(66,66,'mailing',24),
(67,67,'mailing',25),
(68,68,'mailing',26),
(69,69,'mailing',26),
(70,70,'mailing',27),
(71,71,'mailing',28),
(72,72,'mailing',4),
(73,73,'mailing',29),
(74,74,'mailing',30),
(75,75,'mailing',31),
(76,76,'mailing',32),
(77,77,'mailing',33);
/*!40000 ALTER TABLE `glpi_notifications_notificationtemplates` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_notificationtargets`
--

DROP TABLE IF EXISTS `glpi_notificationtargets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_notificationtargets` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `items_id` int(10) unsigned NOT NULL DEFAULT 0,
  `type` int(11) NOT NULL DEFAULT 0,
  `notifications_id` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `items` (`type`,`items_id`),
  KEY `notifications_id` (`notifications_id`)
) ENGINE=InnoDB AUTO_INCREMENT=156 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_notificationtargets`
--

LOCK TABLES `glpi_notificationtargets` WRITE;
/*!40000 ALTER TABLE `glpi_notificationtargets` DISABLE KEYS */;
INSERT INTO `glpi_notificationtargets` VALUES
(1,3,1,13),
(2,1,1,13),
(3,3,2,2),
(4,1,1,2),
(5,1,1,3),
(6,1,1,5),
(7,1,1,4),
(8,2,1,3),
(9,4,1,3),
(10,3,1,2),
(11,3,1,3),
(12,3,1,5),
(13,3,1,4),
(14,1,1,19),
(15,14,1,12),
(16,3,1,14),
(17,1,1,14),
(18,3,1,15),
(19,1,1,15),
(20,1,1,6),
(21,3,1,6),
(22,1,1,7),
(23,3,1,7),
(24,1,1,8),
(25,3,1,8),
(26,1,1,9),
(27,3,1,9),
(28,1,1,10),
(29,3,1,10),
(30,1,1,11),
(31,3,1,11),
(32,19,1,25),
(33,3,1,26),
(34,21,1,2),
(35,21,1,3),
(36,21,1,5),
(37,21,1,4),
(38,21,1,6),
(39,21,1,7),
(40,21,1,8),
(41,21,1,9),
(42,21,1,10),
(43,21,1,11),
(46,1,1,28),
(47,3,1,29),
(48,1,1,29),
(49,21,1,29),
(50,2,1,30),
(51,4,1,30),
(52,3,1,30),
(53,1,1,30),
(54,21,1,30),
(55,3,1,31),
(56,1,1,31),
(57,21,1,31),
(58,3,1,32),
(59,1,1,32),
(60,21,1,32),
(61,3,1,33),
(62,1,1,33),
(63,21,1,33),
(64,3,1,34),
(65,1,1,34),
(66,21,1,34),
(67,3,1,35),
(68,1,1,35),
(69,21,1,35),
(70,3,1,36),
(71,1,1,36),
(72,21,1,36),
(73,14,1,37),
(74,3,1,40),
(75,1,1,41),
(76,3,1,42),
(77,1,1,42),
(78,21,1,42),
(79,2,1,43),
(80,4,1,43),
(81,3,1,43),
(82,1,1,43),
(83,21,1,43),
(84,3,1,44),
(85,1,1,44),
(86,21,1,44),
(87,3,1,45),
(88,1,1,45),
(89,21,1,45),
(90,3,1,46),
(91,1,1,46),
(92,21,1,46),
(93,3,1,47),
(94,1,1,47),
(95,21,1,47),
(96,3,1,48),
(97,1,1,48),
(98,21,1,48),
(99,3,1,49),
(100,1,1,49),
(101,21,1,49),
(102,3,1,50),
(103,2,1,50),
(104,1,1,51),
(105,27,1,52),
(106,1,1,52),
(107,28,1,52),
(108,27,1,53),
(109,1,1,53),
(110,28,1,53),
(111,27,1,54),
(112,1,1,54),
(113,28,1,54),
(114,31,1,55),
(115,1,1,55),
(116,32,1,55),
(117,31,1,56),
(118,1,1,56),
(119,32,1,56),
(120,31,1,57),
(121,1,1,57),
(122,32,1,57),
(123,19,1,58),
(124,3,1,59),
(125,13,1,60),
(126,21,1,61),
(127,20,1,62),
(128,2,1,63),
(129,9,1,64),
(130,8,1,65),
(131,19,1,66),
(132,5,1,67),
(133,23,1,67),
(134,5,1,68),
(135,23,1,68),
(136,5,1,69),
(137,23,1,69),
(138,19,1,70),
(139,1,1,71),
(140,39,1,72),
(141,101,1,73),
(142,102,1,74),
(143,101,1,75),
(144,101,1,76),
(145,101,1,77),
(146,5,2,2),
(149,4,2,2),
(151,1,2,3),
(152,2,1,5),
(154,1,2,5),
(155,5,2,5);
/*!40000 ALTER TABLE `glpi_notificationtargets` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_notificationtemplates`
--

DROP TABLE IF EXISTS `glpi_notificationtemplates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_notificationtemplates` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `itemtype` varchar(100) NOT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `css` text DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `itemtype` (`itemtype`),
  KEY `date_mod` (`date_mod`),
  KEY `name` (`name`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB AUTO_INCREMENT=38 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_notificationtemplates`
--

LOCK TABLES `glpi_notificationtemplates` WRITE;
/*!40000 ALTER TABLE `glpi_notificationtemplates` DISABLE KEYS */;
INSERT INTO `glpi_notificationtemplates` VALUES
(1,'MySQL Synchronization','DBConnection',NULL,NULL,NULL,NULL),
(2,'Reservations','Reservation',NULL,NULL,NULL,NULL),
(3,'Alert Reservation','Reservation',NULL,NULL,NULL,NULL),
(4,'Tickets','Ticket',NULL,NULL,NULL,NULL),
(5,'Tickets (Simple)','Ticket',NULL,NULL,NULL,NULL),
(6,'Alert Tickets not closed','Ticket',NULL,NULL,NULL,NULL),
(7,'Tickets Validation','Ticket',NULL,NULL,NULL,NULL),
(8,'Cartridges','CartridgeItem',NULL,NULL,NULL,NULL),
(9,'Consumables','ConsumableItem',NULL,NULL,NULL,NULL),
(10,'Infocoms','Infocom',NULL,NULL,NULL,NULL),
(11,'Licenses','SoftwareLicense',NULL,NULL,NULL,NULL),
(12,'Contracts','Contract',NULL,NULL,NULL,NULL),
(13,'Password Forget','User',NULL,NULL,NULL,NULL),
(14,'Ticket Satisfaction','Ticket',NULL,NULL,NULL,NULL),
(15,'Item not unique','FieldUnicity',NULL,NULL,NULL,NULL),
(16,'CronTask','CronTask',NULL,NULL,NULL,NULL),
(17,'Problems','Problem',NULL,NULL,NULL,NULL),
(18,'Planning recall','PlanningRecall',NULL,NULL,NULL,NULL),
(19,'Changes','Change',NULL,NULL,NULL,NULL),
(20,'Receiver errors','MailCollector',NULL,NULL,NULL,NULL),
(21,'Projects','Project',NULL,NULL,NULL,NULL),
(22,'Project Tasks','ProjectTask',NULL,NULL,NULL,NULL),
(23,'Unlock Item request','ObjectLock',NULL,NULL,NULL,NULL),
(24,'Saved searches alerts','SavedSearch_Alert',NULL,NULL,NULL,NULL),
(25,'Certificates','Certificate',NULL,NULL,NULL,NULL),
(26,'Alert domains','Domain',NULL,NULL,NULL,NULL),
(27,'Password expires alert','User',NULL,NULL,NULL,NULL),
(28,'Plugin updates','Glpi\\Marketplace\\Controller',NULL,NULL,NULL,NULL),
(29,'Formulário criado','PluginFormcreatorFormAnswer','2025-01-10 21:20:07','',NULL,'2025-01-10 21:20:07'),
(30,'Um formulário precisa de validação','PluginFormcreatorFormAnswer','2025-01-10 21:20:07','',NULL,'2025-01-10 21:20:07'),
(31,'Formulário rejeitado','PluginFormcreatorFormAnswer','2025-01-10 21:20:07','',NULL,'2025-01-10 21:20:07'),
(32,'Formulário aceito','PluginFormcreatorFormAnswer','2025-01-10 21:20:07','',NULL,'2025-01-10 21:20:07'),
(33,'Formulário deletado','PluginFormcreatorFormAnswer','2025-01-10 21:20:07','',NULL,'2025-01-10 21:20:07');
/*!40000 ALTER TABLE `glpi_notificationtemplates` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_notificationtemplatetranslations`
--

DROP TABLE IF EXISTS `glpi_notificationtemplatetranslations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_notificationtemplatetranslations` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `notificationtemplates_id` int(10) unsigned NOT NULL DEFAULT 0,
  `language` varchar(10) NOT NULL DEFAULT '',
  `subject` varchar(255) NOT NULL,
  `content_text` text DEFAULT NULL,
  `content_html` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `notificationtemplates_id` (`notificationtemplates_id`)
) ENGINE=InnoDB AUTO_INCREMENT=38 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_notificationtemplatetranslations`
--

LOCK TABLES `glpi_notificationtemplatetranslations` WRITE;
/*!40000 ALTER TABLE `glpi_notificationtemplatetranslations` DISABLE KEYS */;
INSERT INTO `glpi_notificationtemplatetranslations` VALUES
(1,1,'','##lang.dbconnection.title##','##lang.dbconnection.delay## : ##dbconnection.delay##','&lt;p&gt;##lang.dbconnection.delay## : ##dbconnection.delay##&lt;/p&gt;'),
(2,2,'','##reservation.action##','======================================================================\n##lang.reservation.user##: ##reservation.user##\n##lang.reservation.item.name##: ##reservation.itemtype## - ##reservation.item.name##\n##IFreservation.tech## ##lang.reservation.tech## ##reservation.tech## ##ENDIFreservation.tech##\n##lang.reservation.begin##: ##reservation.begin##\n##lang.reservation.end##: ##reservation.end##\n##lang.reservation.comment##: ##reservation.comment##\n======================================================================','&lt;!-- description{ color: inherit; background: #ebebeb;border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; } --&gt;\n&lt;p&gt;&lt;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&gt;##lang.reservation.user##:&lt;/span&gt;##reservation.user##&lt;br /&gt; &lt;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&gt;##lang.reservation.item.name##:&lt;/span&gt;##reservation.itemtype## - ##reservation.item.name##&lt;br /&gt;##IFreservation.tech## ##lang.reservation.tech## ##reservation.tech####ENDIFreservation.tech##&lt;br /&gt; &lt;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&gt;##lang.reservation.begin##:&lt;/span&gt; ##reservation.begin##&lt;br /&gt; &lt;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&gt;##lang.reservation.end##:&lt;/span&gt;##reservation.end##&lt;br /&gt; &lt;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&gt;##lang.reservation.comment##:&lt;/span&gt; ##reservation.comment##&lt;/p&gt;'),
(3,3,'','##reservation.action##  ##reservation.entity##','##lang.reservation.entity## : ##reservation.entity##\n\n\n##FOREACHreservations##\n##lang.reservation.itemtype## : ##reservation.itemtype##\n\n ##lang.reservation.item## : ##reservation.item##\n\n ##reservation.url##\n\n ##ENDFOREACHreservations##','&lt;p&gt;##lang.reservation.entity## : ##reservation.entity## &lt;br /&gt; &lt;br /&gt;\n##FOREACHreservations## &lt;br /&gt;##lang.reservation.itemtype## :  ##reservation.itemtype##&lt;br /&gt;\n ##lang.reservation.item## :  ##reservation.item##&lt;br /&gt; &lt;br /&gt;\n &lt;a href=\"##reservation.url##\"&gt; ##reservation.url##&lt;/a&gt;&lt;br /&gt;\n ##ENDFOREACHreservations##&lt;/p&gt;'),
(4,4,'','##ticket.action## ##ticket.title##',' ##IFticket.storestatus=5##\n ##lang.ticket.url## : ##ticket.urlapprove##\n ##lang.ticket.autoclosewarning##\n ##lang.ticket.solvedate## : ##ticket.solvedate##\n ##lang.ticket.solution.type## : ##ticket.solution.type##\n ##lang.ticket.solution.description## : ##ticket.solution.description## ##ENDIFticket.storestatus##\n ##ELSEticket.storestatus## ##lang.ticket.url## : ##ticket.url## ##ENDELSEticket.storestatus##\n\n ##lang.ticket.description##\n\n ##lang.ticket.title## : ##ticket.title##\n ##lang.ticket.authors## : ##IFticket.authors## ##ticket.authors## ##ENDIFticket.authors## ##ELSEticket.authors##--##ENDELSEticket.authors##\n ##lang.ticket.creationdate## : ##ticket.creationdate##\n ##lang.ticket.closedate## : ##ticket.closedate##\n ##lang.ticket.requesttype## : ##ticket.requesttype##\n##lang.ticket.item.name## :\n\n##FOREACHitems##\n\n ##IFticket.itemtype##\n  ##ticket.itemtype## - ##ticket.item.name##\n  ##IFticket.item.model## ##lang.ticket.item.model## : ##ticket.item.model## ##ENDIFticket.item.model##\n  ##IFticket.item.serial## ##lang.ticket.item.serial## : ##ticket.item.serial## ##ENDIFticket.item.serial##\n  ##IFticket.item.otherserial## ##lang.ticket.item.otherserial## : ##ticket.item.otherserial## ##ENDIFticket.item.otherserial##\n ##ENDIFticket.itemtype##\n\n##ENDFOREACHitems##\n##IFticket.assigntousers## ##lang.ticket.assigntousers## : ##ticket.assigntousers## ##ENDIFticket.assigntousers##\n ##lang.ticket.status## : ##ticket.status##\n##IFticket.assigntogroups## ##lang.ticket.assigntogroups## : ##ticket.assigntogroups## ##ENDIFticket.assigntogroups##\n ##lang.ticket.urgency## : ##ticket.urgency##\n ##lang.ticket.impact## : ##ticket.impact##\n ##lang.ticket.priority## : ##ticket.priority##\n##IFticket.user.email## ##lang.ticket.user.email## : ##ticket.user.email ##ENDIFticket.user.email##\n##IFticket.category## ##lang.ticket.category## : ##ticket.category## ##ENDIFticket.category## ##ELSEticket.category## ##lang.ticket.nocategoryassigned## ##ENDELSEticket.category##\n ##lang.ticket.content## : ##ticket.content##\n ##IFticket.storestatus=6##\n\n ##lang.ticket.solvedate## : ##ticket.solvedate##\n ##lang.ticket.solution.type## : ##ticket.solution.type##\n ##lang.ticket.solution.description## : ##ticket.solution.description##\n ##ENDIFticket.storestatus##\n\n##FOREACHtimelineitems##\n[##timelineitems.date##]\n##lang.timelineitems.author## ##timelineitems.author##\n##lang.timelineitems.description## ##timelineitems.description##\n##lang.timelineitems.date## ##timelineitems.date##\n##lang.timelineitems.position## ##timelineitems.position##\n##lang.timelineitems.type## ##timelineitems.type##\n##lang.timelineitems.typename## ##timelineitems.typename##\n##ENDFOREACHtimelineitems##\n\n##lang.ticket.numberoffollowups## : ##ticket.numberoffollowups##\n##lang.ticket.numberoftasks## : ##ticket.numberoftasks##','&lt;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&gt;\n&lt;div&gt;##IFticket.storestatus=5##&lt;/div&gt;\n&lt;div&gt;##lang.ticket.url## : &lt;a href=\"##ticket.urlapprove##\"&gt;##ticket.urlapprove##&lt;/a&gt; &lt;strong&gt;&#160;&lt;/strong&gt;&lt;/div&gt;\n&lt;div&gt;&lt;strong&gt;##lang.ticket.autoclosewarning##&lt;/strong&gt;&lt;/div&gt;\n&lt;div&gt;&lt;span style=\"color: #888888;\"&gt;&lt;strong&gt;&lt;span style=\"text-decoration: underline;\"&gt;##lang.ticket.solvedate##&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt; : ##ticket.solvedate##&lt;br /&gt;&lt;span style=\"text-decoration: underline; color: #888888;\"&gt;&lt;strong&gt;##lang.ticket.solution.type##&lt;/strong&gt;&lt;/span&gt; : ##ticket.solution.type##&lt;br /&gt;&lt;span style=\"text-decoration: underline; color: #888888;\"&gt;&lt;strong&gt;##lang.ticket.solution.description##&lt;/strong&gt;&lt;/span&gt; : ##ticket.solution.description## ##ENDIFticket.storestatus##&lt;/div&gt;\n&lt;div&gt;##ELSEticket.storestatus## ##lang.ticket.url## : &lt;a href=\"##ticket.url##\"&gt;##ticket.url##&lt;/a&gt; ##ENDELSEticket.storestatus##&lt;/div&gt;\n&lt;p class=\"description b\"&gt;&lt;strong&gt;##lang.ticket.description##&lt;/strong&gt;&lt;/p&gt;\n&lt;p&gt;&lt;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&gt; ##lang.ticket.title##&lt;/span&gt;&#160;:##ticket.title## &lt;br /&gt; &lt;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&gt; ##lang.ticket.authors##&lt;/span&gt;&#160;:##IFticket.authors## ##ticket.authors## ##ENDIFticket.authors##    ##ELSEticket.authors##--##ENDELSEticket.authors## &lt;br /&gt; &lt;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&gt; ##lang.ticket.creationdate##&lt;/span&gt;&#160;:##ticket.creationdate## &lt;br /&gt; &lt;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&gt; ##lang.ticket.closedate##&lt;/span&gt;&#160;:##ticket.closedate## &lt;br /&gt; &lt;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&gt; ##lang.ticket.requesttype##&lt;/span&gt;&#160;:##ticket.requesttype##&lt;br /&gt;\n&lt;br /&gt;&lt;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&gt; ##lang.ticket.item.name##&lt;/span&gt;&#160;:\n&lt;p&gt;##FOREACHitems##&lt;/p&gt;\n&lt;div class=\"description b\"&gt;##IFticket.itemtype## ##ticket.itemtype##&#160;- ##ticket.item.name## ##IFticket.item.model## ##lang.ticket.item.model## : ##ticket.item.model## ##ENDIFticket.item.model## ##IFticket.item.serial## ##lang.ticket.item.serial## : ##ticket.item.serial## ##ENDIFticket.item.serial## ##IFticket.item.otherserial## ##lang.ticket.item.otherserial## : ##ticket.item.otherserial## ##ENDIFticket.item.otherserial## ##ENDIFticket.itemtype## &lt;/div&gt;&lt;br /&gt;\n&lt;p&gt;##ENDFOREACHitems##&lt;/p&gt;\n##IFticket.assigntousers## &lt;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&gt; ##lang.ticket.assigntousers##&lt;/span&gt;&#160;: ##ticket.assigntousers## ##ENDIFticket.assigntousers##&lt;br /&gt; &lt;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&gt;##lang.ticket.status## &lt;/span&gt;&#160;: ##ticket.status##&lt;br /&gt; ##IFticket.assigntogroups## &lt;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&gt; ##lang.ticket.assigntogroups##&lt;/span&gt;&#160;: ##ticket.assigntogroups## ##ENDIFticket.assigntogroups##&lt;br /&gt; &lt;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&gt; ##lang.ticket.urgency##&lt;/span&gt;&#160;: ##ticket.urgency##&lt;br /&gt; &lt;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&gt; ##lang.ticket.impact##&lt;/span&gt;&#160;: ##ticket.impact##&lt;br /&gt; &lt;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&gt; ##lang.ticket.priority##&lt;/span&gt;&#160;: ##ticket.priority## &lt;br /&gt; ##IFticket.user.email##&lt;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&gt; ##lang.ticket.user.email##&lt;/span&gt;&#160;: ##ticket.user.email ##ENDIFticket.user.email##    &lt;br /&gt; ##IFticket.category##&lt;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&gt;##lang.ticket.category## &lt;/span&gt;&#160;:##ticket.category## ##ENDIFticket.category## ##ELSEticket.category## ##lang.ticket.nocategoryassigned## ##ENDELSEticket.category##    &lt;br /&gt; &lt;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&gt; ##lang.ticket.content##&lt;/span&gt;&#160;: ##ticket.content##&lt;/p&gt;\n&lt;br /&gt;##IFticket.storestatus=6##&lt;br /&gt;&lt;span style=\"text-decoration: underline;\"&gt;&lt;strong&gt;&lt;span style=\"color: #888888;\"&gt;##lang.ticket.solvedate##&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt; : ##ticket.solvedate##&lt;br /&gt;&lt;span style=\"color: #888888;\"&gt;&lt;strong&gt;&lt;span style=\"text-decoration: underline;\"&gt;##lang.ticket.solution.type##&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt; : ##ticket.solution.type##&lt;br /&gt;&lt;span style=\"text-decoration: underline; color: #888888;\"&gt;&lt;strong&gt;##lang.ticket.solution.description##&lt;/strong&gt;&lt;/span&gt; : ##ticket.solution.description##&lt;br /&gt;##ENDIFticket.storestatus##&lt;/p&gt;\n&lt;p&gt;##FOREACHtimelineitems##&lt;/p&gt;\n&lt;div class=\"description b\"&gt;&lt;br /&gt;&lt;strong&gt; [##timelineitems.date##]&lt;/strong&gt;&lt;br /&gt;&lt;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&gt; ##lang.timelineitems.author## &lt;/span&gt; &lt;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&gt;##timelineitems.author##&lt;/span&gt;&lt;br /&gt;&lt;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&gt; ##lang.timelineitems.description## &lt;/span&gt; &lt;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&gt;##timelineitems.description##&lt;/span&gt;&lt;br /&gt;&lt;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&gt; ##lang.timelineitems.date## &lt;/span&gt; &lt;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&gt;##timelineitems.date##&lt;/span&gt;&lt;br /&gt;&lt;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&gt;##lang.timelineitems.position## &lt;/span&gt;&lt;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&gt; ##timelineitems.position##&lt;/span&gt;&lt;/div&gt;\n&lt;div class=\"description b\"&gt;&lt;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&gt;##lang.timelineitems.type## &lt;/span&gt;&lt;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&gt; ##timelineitems.type##&lt;/span&gt;&lt;/div&gt;\n&lt;div class=\"description b\"&gt;&lt;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&gt;##lang.timelineitems.typename## &lt;/span&gt; &lt;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&gt;##timelineitems.typename##&lt;/span&gt;&lt;/div&gt;\n&lt;p&gt;##ENDFOREACHtimelineitems##&lt;/p&gt;\n&lt;div class=\"description b\"&gt;##lang.ticket.numberoffollowups##&#160;: ##ticket.numberoffollowups##&lt;/div&gt;\n&lt;div class=\"description b\"&gt;##lang.ticket.numberoftasks##&#160;: ##ticket.numberoftasks##&lt;/div&gt;'),
(5,12,'','##contract.action##  ##contract.entity##','##lang.contract.entity## : ##contract.entity##\n\n##FOREACHcontracts##\n##lang.contract.name## : ##contract.name##\n##lang.contract.number## : ##contract.number##\n##lang.contract.time## : ##contract.time##\n##IFcontract.type####lang.contract.type## : ##contract.type####ENDIFcontract.type##\n##contract.url##\n##ENDFOREACHcontracts##','&lt;p&gt;##lang.contract.entity## : ##contract.entity##&lt;br /&gt;\n&lt;br /&gt;##FOREACHcontracts##&lt;br /&gt;##lang.contract.name## :\n##contract.name##&lt;br /&gt;\n##lang.contract.number## : ##contract.number##&lt;br /&gt;\n##lang.contract.time## : ##contract.time##&lt;br /&gt;\n##IFcontract.type####lang.contract.type## : ##contract.type##\n##ENDIFcontract.type##&lt;br /&gt;\n&lt;a href=\"##contract.url##\"&gt;\n##contract.url##&lt;/a&gt;&lt;br /&gt;\n##ENDFOREACHcontracts##&lt;/p&gt;'),
(6,5,'','##ticket.action## ##ticket.title##','##lang.ticket.url## : ##ticket.url##\n\n##lang.ticket.description##\n\n\n##lang.ticket.title##  :##ticket.title##\n\n##lang.ticket.authors##  :##IFticket.authors##\n##ticket.authors## ##ENDIFticket.authors##\n##ELSEticket.authors##--##ENDELSEticket.authors##\n\n##IFticket.category## ##lang.ticket.category##  :##ticket.category##\n##ENDIFticket.category## ##ELSEticket.category##\n##lang.ticket.nocategoryassigned## ##ENDELSEticket.category##\n\n##lang.ticket.content##  : ##ticket.content##\n##IFticket.itemtype##\n##lang.ticket.item.name##  : ##ticket.itemtype## - ##ticket.item.name##\n##ENDIFticket.itemtype##','&lt;div&gt;##lang.ticket.url## : &lt;a href=\"##ticket.url##\"&gt;\n##ticket.url##&lt;/a&gt;&lt;/div&gt;\n&lt;div class=\"description b\"&gt;\n##lang.ticket.description##&lt;/div&gt;\n&lt;p&gt;&lt;span\nstyle=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&gt;\n##lang.ticket.title##&lt;/span&gt;&#160;:##ticket.title##\n&lt;br /&gt; &lt;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&gt;\n##lang.ticket.authors##&lt;/span&gt;\n##IFticket.authors## ##ticket.authors##\n##ENDIFticket.authors##\n##ELSEticket.authors##--##ENDELSEticket.authors##\n&lt;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&gt;\n&lt;/span&gt;&lt;br /&gt; &lt;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&gt; &lt;/span&gt;\n##IFticket.category##&lt;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&gt;\n##lang.ticket.category## &lt;/span&gt;&#160;:##ticket.category##\n##ENDIFticket.category## ##ELSEticket.category##\n##lang.ticket.nocategoryassigned## ##ENDELSEticket.category##\n&lt;br /&gt; &lt;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&gt;\n##lang.ticket.content##&lt;/span&gt;&#160;:\n##ticket.content##&lt;br /&gt;##IFticket.itemtype##\n&lt;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&gt;\n##lang.ticket.item.name##&lt;/span&gt;&#160;:\n##ticket.itemtype## - ##ticket.item.name##\n##ENDIFticket.itemtype##&lt;/p&gt;'),
(7,7,'','##ticket.action## ##ticket.title##','##FOREACHvalidations##\n\n##IFvalidation.storestatus=2##\n##validation.submission.title##\n##lang.validation.commentsubmission## : ##validation.commentsubmission##\n##ENDIFvalidation.storestatus##\n##ELSEvalidation.storestatus## ##validation.answer.title## ##ENDELSEvalidation.storestatus##\n\n##lang.ticket.url## : ##ticket.urlvalidation##\n\n##IFvalidation.status## ##lang.validation.status## : ##validation.status## ##ENDIFvalidation.status##\n##IFvalidation.commentvalidation##\n##lang.validation.commentvalidation## : ##validation.commentvalidation##\n##ENDIFvalidation.commentvalidation##\n##ENDFOREACHvalidations##','&lt;div&gt;##FOREACHvalidations##&lt;/div&gt;\n&lt;p&gt;##IFvalidation.storestatus=2##&lt;/p&gt;\n&lt;div&gt;##validation.submission.title##&lt;/div&gt;\n&lt;div&gt;##lang.validation.commentsubmission## : ##validation.commentsubmission##&lt;/div&gt;\n&lt;div&gt;##ENDIFvalidation.storestatus##&lt;/div&gt;\n&lt;div&gt;##ELSEvalidation.storestatus## ##validation.answer.title## ##ENDELSEvalidation.storestatus##&lt;/div&gt;\n&lt;div&gt;&lt;/div&gt;\n&lt;div&gt;\n&lt;div&gt;##lang.ticket.url## : &lt;a href=\"##ticket.urlvalidation##\"&gt; ##ticket.urlvalidation## &lt;/a&gt;&lt;/div&gt;\n&lt;/div&gt;\n&lt;p&gt;##IFvalidation.status## ##lang.validation.status## : ##validation.status## ##ENDIFvalidation.status##\n&lt;br /&gt; ##IFvalidation.commentvalidation##&lt;br /&gt; ##lang.validation.commentvalidation## :\n&#160; ##validation.commentvalidation##&lt;br /&gt; ##ENDIFvalidation.commentvalidation##\n&lt;br /&gt;##ENDFOREACHvalidations##&lt;/p&gt;'),
(8,6,'','##ticket.action## ##ticket.entity##','##FOREACHtickets##\n##lang.ticket.authors##: ##ticket.authors##\n##lang.ticket.title##: ##ticket.title##\n##lang.ticket.priority##: ##ticket.priority##\n##lang.ticket.status##: ##ticket.status##\n##lang.ticket.attribution##: ##IFticket.assigntousers####ticket.assigntousers##\n##ENDIFticket.assigntousers####IFticket.assigntogroups##\n##ticket.assigntogroups## ##ENDIFticket.assigntogroups####IFticket.assigntosupplier##\n##ticket.assigntosupplier## ##ENDIFticket.assigntosupplier##\n##lang.ticket.creationdate##: ##ticket.creationdate##\n##lang.ticket.content##: ##ticket.content## ##ENDFOREACHtickets##','&lt;table class=\"tab_cadre\" border=\"1\" cellspacing=\"2\" cellpadding=\"3\"&gt;\n&lt;tbody&gt;\n&lt;tr&gt;\n&lt;td style=\"text-align: left;\" width=\"auto\" bgcolor=\"#cccccc\"&gt;&lt;span style=\"font-size: 11px; text-align: left;\"&gt;##lang.ticket.authors##&lt;/span&gt;&lt;/td&gt;\n&lt;td style=\"text-align: left;\" width=\"auto\" bgcolor=\"#cccccc\"&gt;&lt;span style=\"font-size: 11px; text-align: left;\"&gt;##lang.ticket.title##&lt;/span&gt;&lt;/td&gt;\n&lt;td style=\"text-align: left;\" width=\"auto\" bgcolor=\"#cccccc\"&gt;&lt;span style=\"font-size: 11px; text-align: left;\"&gt;##lang.ticket.priority##&lt;/span&gt;&lt;/td&gt;\n&lt;td style=\"text-align: left;\" width=\"auto\" bgcolor=\"#cccccc\"&gt;&lt;span style=\"font-size: 11px; text-align: left;\"&gt;##lang.ticket.status##&lt;/span&gt;&lt;/td&gt;\n&lt;td style=\"text-align: left;\" width=\"auto\" bgcolor=\"#cccccc\"&gt;&lt;span style=\"font-size: 11px; text-align: left;\"&gt;##lang.ticket.attribution##&lt;/span&gt;&lt;/td&gt;\n&lt;td style=\"text-align: left;\" width=\"auto\" bgcolor=\"#cccccc\"&gt;&lt;span style=\"font-size: 11px; text-align: left;\"&gt;##lang.ticket.creationdate##&lt;/span&gt;&lt;/td&gt;\n&lt;td style=\"text-align: left;\" width=\"auto\" bgcolor=\"#cccccc\"&gt;&lt;span style=\"font-size: 11px; text-align: left;\"&gt;##lang.ticket.content##&lt;/span&gt;##FOREACHtickets##&lt;/td&gt;\n&lt;/tr&gt;\n&lt;tr&gt;\n&lt;td width=\"auto\"&gt;&lt;span style=\"font-size: 11px; text-align: left;\"&gt;##ticket.authors##&lt;/span&gt;&lt;/td&gt;\n&lt;td width=\"auto\"&gt;&lt;span style=\"font-size: 11px; text-align: left;\"&gt;&lt;a href=\"##ticket.url##\"&gt;##ticket.title##&lt;/a&gt;&lt;/span&gt;&lt;/td&gt;\n&lt;td width=\"auto\"&gt;&lt;span style=\"font-size: 11px; text-align: left;\"&gt;##ticket.priority##&lt;/span&gt;&lt;/td&gt;\n&lt;td width=\"auto\"&gt;&lt;span style=\"font-size: 11px; text-align: left;\"&gt;##ticket.status##&lt;/span&gt;&lt;/td&gt;\n&lt;td width=\"auto\"&gt;&lt;span style=\"font-size: 11px; text-align: left;\"&gt;##IFticket.assigntousers####ticket.assigntousers##&lt;br /&gt;##ENDIFticket.assigntousers####IFticket.assigntogroups##&lt;br /&gt;##ticket.assigntogroups## ##ENDIFticket.assigntogroups####IFticket.assigntosupplier##&lt;br /&gt;##ticket.assigntosupplier## ##ENDIFticket.assigntosupplier##&lt;/span&gt;&lt;/td&gt;\n&lt;td width=\"auto\"&gt;&lt;span style=\"font-size: 11px; text-align: left;\"&gt;##ticket.creationdate##&lt;/span&gt;&lt;/td&gt;\n&lt;td width=\"auto\"&gt;&lt;span style=\"font-size: 11px; text-align: left;\"&gt;##ticket.content##&lt;/span&gt;##ENDFOREACHtickets##&lt;/td&gt;\n&lt;/tr&gt;\n&lt;/tbody&gt;\n&lt;/table&gt;'),
(9,9,'','##consumable.action##  ##consumable.entity##','##lang.consumable.entity## : ##consumable.entity##\n\n\n##FOREACHconsumables##\n##lang.consumable.item## : ##consumable.item##\n\n\n##lang.consumable.reference## : ##consumable.reference##\n\n##lang.consumable.remaining## : ##consumable.remaining##\n##lang.consumable.stock_target## : ##consumable.stock_target##\n##lang.consumable.to_order## : ##consumable.to_order##\n\n##consumable.url##\n\n##ENDFOREACHconsumables##','&lt;p&gt;\n##lang.consumable.entity## : ##consumable.entity##\n&lt;br /&gt; &lt;br /&gt;##FOREACHconsumables##\n&lt;br /&gt;##lang.consumable.item## : ##consumable.item##&lt;br /&gt;\n&lt;br /&gt;##lang.consumable.reference## : ##consumable.reference##&lt;br /&gt;\n##lang.consumable.remaining## : ##consumable.remaining##&lt;br /&gt;\n##lang.consumable.stock_target## : ##consumable.stock_target##&lt;br /&gt;\n##lang.consumable.to_order## : ##consumable.to_order##&lt;br /&gt;\n&lt;a href=\"##consumable.url##\"&gt; ##consumable.url##&lt;/a&gt;&lt;br /&gt;\n   ##ENDFOREACHconsumables##&lt;/p&gt;'),
(10,8,'','##cartridge.action##  ##cartridge.entity##','##lang.cartridge.entity## : ##cartridge.entity##\n\n\n##FOREACHcartridges##\n##lang.cartridge.item## : ##cartridge.item##\n\n\n##lang.cartridge.reference## : ##cartridge.reference##\n\n##lang.cartridge.remaining## : ##cartridge.remaining##\n##lang.cartridge.stock_target## : ##cartridge.stock_target##\n##lang.cartridge.to_order## : ##cartridge.to_order##\n\n##cartridge.url##\n ##ENDFOREACHcartridges##','&lt;p&gt;##lang.cartridge.entity## : ##cartridge.entity##\n&lt;br /&gt; &lt;br /&gt;##FOREACHcartridges##\n&lt;br /&gt;##lang.cartridge.item## :\n##cartridge.item##&lt;br /&gt; &lt;br /&gt;\n##lang.cartridge.reference## :\n##cartridge.reference##&lt;br /&gt;\n##lang.cartridge.remaining## :\n##cartridge.remaining##&lt;br /&gt;\n##lang.cartridge.stock_target## :\n##cartridge.stock_target##&lt;br /&gt;\n##lang.cartridge.to_order## :\n##cartridge.to_order##&lt;br /&gt;\n&lt;a href=\"##cartridge.url##\"&gt;\n##cartridge.url##&lt;/a&gt;&lt;br /&gt;\n##ENDFOREACHcartridges##&lt;/p&gt;'),
(11,10,'','##infocom.action##  ##infocom.entity##','##lang.infocom.entity## : ##infocom.entity##\n\n\n##FOREACHinfocoms##\n\n##lang.infocom.itemtype## : ##infocom.itemtype##\n\n##lang.infocom.item## : ##infocom.item##\n\n\n##lang.infocom.expirationdate## : ##infocom.expirationdate##\n\n##infocom.url##\n ##ENDFOREACHinfocoms##','&lt;p&gt;##lang.infocom.entity## : ##infocom.entity##\n&lt;br /&gt; &lt;br /&gt;##FOREACHinfocoms##\n&lt;br /&gt;##lang.infocom.itemtype## : ##infocom.itemtype##&lt;br /&gt;\n##lang.infocom.item## : ##infocom.item##&lt;br /&gt; &lt;br /&gt;\n##lang.infocom.expirationdate## : ##infocom.expirationdate##\n&lt;br /&gt; &lt;a href=\"##infocom.url##\"&gt;\n##infocom.url##&lt;/a&gt;&lt;br /&gt;\n##ENDFOREACHinfocoms##&lt;/p&gt;'),
(12,11,'','##license.action##  ##license.entity##','##lang.license.entity## : ##license.entity##\n\n##FOREACHlicenses##\n\n##lang.license.item## : ##license.item##\n\n##lang.license.serial## : ##license.serial##\n\n##lang.license.expirationdate## : ##license.expirationdate##\n\n##license.url##\n ##ENDFOREACHlicenses##','&lt;p&gt;\n##lang.license.entity## : ##license.entity##&lt;br /&gt;\n##FOREACHlicenses##\n&lt;br /&gt;##lang.license.item## : ##license.item##&lt;br /&gt;\n##lang.license.serial## : ##license.serial##&lt;br /&gt;\n##lang.license.expirationdate## : ##license.expirationdate##\n&lt;br /&gt; &lt;a href=\"##license.url##\"&gt; ##license.url##\n&lt;/a&gt;&lt;br /&gt; ##ENDFOREACHlicenses##&lt;/p&gt;'),
(13,13,'','##user.action##','##user.realname## ##user.firstname##\n\n##lang.passwordforget.information##\n\n##lang.passwordforget.link## ##user.passwordforgeturl##','&lt;p&gt;&lt;strong&gt;##user.realname## ##user.firstname##&lt;/strong&gt;&lt;/p&gt;\n&lt;p&gt;##lang.passwordforget.information##&lt;/p&gt;\n&lt;p&gt;##lang.passwordforget.link## &lt;a title=\"##user.passwordforgeturl##\" href=\"##user.passwordforgeturl##\"&gt;##user.passwordforgeturl##&lt;/a&gt;&lt;/p&gt;'),
(14,14,'','##ticket.action## ##ticket.title##','##lang.ticket.title## : ##ticket.title##\n\n##lang.ticket.closedate## : ##ticket.closedate##\n\n##lang.satisfaction.text## ##ticket.urlsatisfaction##','&lt;p&gt;##lang.ticket.title## : ##ticket.title##&lt;/p&gt;\n&lt;p&gt;##lang.ticket.closedate## : ##ticket.closedate##&lt;/p&gt;\n&lt;p&gt;##lang.satisfaction.text## &lt;a href=\"##ticket.urlsatisfaction##\"&gt;##ticket.urlsatisfaction##&lt;/a&gt;&lt;/p&gt;'),
(15,15,'','##lang.unicity.action##','##lang.unicity.entity## : ##unicity.entity##\n\n##lang.unicity.itemtype## : ##unicity.itemtype##\n\n##lang.unicity.message## : ##unicity.message##\n\n##lang.unicity.action_user## : ##unicity.action_user##\n\n##lang.unicity.action_type## : ##unicity.action_type##\n\n##lang.unicity.date## : ##unicity.date##','&lt;p&gt;##lang.unicity.entity## : ##unicity.entity##&lt;/p&gt;\n&lt;p&gt;##lang.unicity.itemtype## : ##unicity.itemtype##&lt;/p&gt;\n&lt;p&gt;##lang.unicity.message## : ##unicity.message##&lt;/p&gt;\n&lt;p&gt;##lang.unicity.action_user## : ##unicity.action_user##&lt;/p&gt;\n&lt;p&gt;##lang.unicity.action_type## : ##unicity.action_type##&lt;/p&gt;\n&lt;p&gt;##lang.unicity.date## : ##unicity.date##&lt;/p&gt;'),
(16,16,'','##crontask.action##','##lang.crontask.warning##\n\n##FOREACHcrontasks##\n ##crontask.name## : ##crontask.description##\n\n##ENDFOREACHcrontasks##','&lt;p&gt;##lang.crontask.warning##&lt;/p&gt;\n&lt;p&gt;##FOREACHcrontasks## &lt;br /&gt;&lt;a href=\"##crontask.url##\"&gt;##crontask.name##&lt;/a&gt; : ##crontask.description##&lt;br /&gt; &lt;br /&gt;##ENDFOREACHcrontasks##&lt;/p&gt;'),
(17,17,'','##problem.action## ##problem.title##','##IFproblem.storestatus=5##\n ##lang.problem.url## : ##problem.urlapprove##\n ##lang.problem.solvedate## : ##problem.solvedate##\n ##lang.problem.solution.type## : ##problem.solution.type##\n ##lang.problem.solution.description## : ##problem.solution.description## ##ENDIFproblem.storestatus##\n ##ELSEproblem.storestatus## ##lang.problem.url## : ##problem.url## ##ENDELSEproblem.storestatus##\n\n ##lang.problem.description##\n\n ##lang.problem.title##  :##problem.title##\n ##lang.problem.authors##  :##IFproblem.authors## ##problem.authors## ##ENDIFproblem.authors## ##ELSEproblem.authors##--##ENDELSEproblem.authors##\n ##lang.problem.creationdate##  :##problem.creationdate##\n ##IFproblem.assigntousers## ##lang.problem.assigntousers##  : ##problem.assigntousers## ##ENDIFproblem.assigntousers##\n ##lang.problem.status##  : ##problem.status##\n ##IFproblem.assigntogroups## ##lang.problem.assigntogroups##  : ##problem.assigntogroups## ##ENDIFproblem.assigntogroups##\n ##lang.problem.urgency##  : ##problem.urgency##\n ##lang.problem.impact##  : ##problem.impact##\n ##lang.problem.priority## : ##problem.priority##\n##IFproblem.category## ##lang.problem.category##  :##problem.category## ##ENDIFproblem.category## ##ELSEproblem.category## ##lang.problem.nocategoryassigned## ##ENDELSEproblem.category##\n ##lang.problem.content##  : ##problem.content##\n\n##IFproblem.storestatus=6##\n ##lang.problem.solvedate## : ##problem.solvedate##\n ##lang.problem.solution.type## : ##problem.solution.type##\n ##lang.problem.solution.description## : ##problem.solution.description##\n##ENDIFproblem.storestatus##\n ##lang.problem.numberoffollowups## : ##problem.numberoffollowups##\n\n##FOREACHfollowups##\n\n [##followup.date##] ##lang.followup.isprivate## : ##followup.isprivate##\n ##lang.followup.author## ##followup.author##\n ##lang.followup.description## ##followup.description##\n ##lang.followup.date## ##followup.date##\n ##lang.followup.requesttype## ##followup.requesttype##\n\n##ENDFOREACHfollowups##\n ##lang.problem.numberoftickets## : ##problem.numberoftickets##\n\n##FOREACHtickets##\n [##ticket.date##] ##lang.problem.title## : ##ticket.title##\n ##lang.problem.content## ##ticket.content##\n\n##ENDFOREACHtickets##\n ##lang.problem.numberoftasks## : ##problem.numberoftasks##\n\n##FOREACHtasks##\n [##task.date##]\n ##lang.task.author## ##task.author##\n ##lang.task.description## ##task.description##\n ##lang.task.time## ##task.time##\n ##lang.task.category## ##task.category##\n\n##ENDFOREACHtasks##\n','&lt;p&gt;##IFproblem.storestatus=5##&lt;/p&gt;\n&lt;div&gt;##lang.problem.url## : &lt;a href=\"##problem.urlapprove##\"&gt;##problem.urlapprove##&lt;/a&gt;&lt;/div&gt;\n&lt;div&gt;&lt;span style=\"color: #888888;\"&gt;&lt;strong&gt;&lt;span style=\"text-decoration: underline;\"&gt;##lang.problem.solvedate##&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt; : ##problem.solvedate##&lt;br /&gt;&lt;span style=\"text-decoration: underline; color: #888888;\"&gt;&lt;strong&gt;##lang.problem.solution.type##&lt;/strong&gt;&lt;/span&gt; : ##problem.solution.type##&lt;br /&gt;&lt;span style=\"text-decoration: underline; color: #888888;\"&gt;&lt;strong&gt;##lang.problem.solution.description##&lt;/strong&gt;&lt;/span&gt; : ##problem.solution.description## ##ENDIFproblem.storestatus##&lt;/div&gt;\n&lt;div&gt;##ELSEproblem.storestatus## ##lang.problem.url## : &lt;a href=\"##problem.url##\"&gt;##problem.url##&lt;/a&gt; ##ENDELSEproblem.storestatus##&lt;/div&gt;\n&lt;p class=\"description b\"&gt;&lt;strong&gt;##lang.problem.description##&lt;/strong&gt;&lt;/p&gt;\n&lt;p&gt;&lt;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&gt; ##lang.problem.title##&lt;/span&gt;&#160;:##problem.title## &lt;br /&gt; &lt;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&gt; ##lang.problem.authors##&lt;/span&gt;&#160;:##IFproblem.authors## ##problem.authors## ##ENDIFproblem.authors##    ##ELSEproblem.authors##--##ENDELSEproblem.authors## &lt;br /&gt; &lt;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&gt; ##lang.problem.creationdate##&lt;/span&gt;&#160;:##problem.creationdate## &lt;br /&gt; ##IFproblem.assigntousers## &lt;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&gt; ##lang.problem.assigntousers##&lt;/span&gt;&#160;: ##problem.assigntousers## ##ENDIFproblem.assigntousers##&lt;br /&gt; &lt;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&gt;##lang.problem.status## &lt;/span&gt;&#160;: ##problem.status##&lt;br /&gt; ##IFproblem.assigntogroups## &lt;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&gt; ##lang.problem.assigntogroups##&lt;/span&gt;&#160;: ##problem.assigntogroups## ##ENDIFproblem.assigntogroups##&lt;br /&gt; &lt;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&gt; ##lang.problem.urgency##&lt;/span&gt;&#160;: ##problem.urgency##&lt;br /&gt; &lt;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&gt; ##lang.problem.impact##&lt;/span&gt;&#160;: ##problem.impact##&lt;br /&gt; &lt;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&gt; ##lang.problem.priority##&lt;/span&gt; : ##problem.priority## &lt;br /&gt;##IFproblem.category##&lt;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&gt;##lang.problem.category## &lt;/span&gt;&#160;:##problem.category##  ##ENDIFproblem.category## ##ELSEproblem.category##  ##lang.problem.nocategoryassigned## ##ENDELSEproblem.category##    &lt;br /&gt; &lt;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&gt; ##lang.problem.content##&lt;/span&gt;&#160;: ##problem.content##&lt;/p&gt;\n&lt;p&gt;##IFproblem.storestatus=6##&lt;br /&gt;&lt;span style=\"text-decoration: underline;\"&gt;&lt;strong&gt;&lt;span style=\"color: #888888;\"&gt;##lang.problem.solvedate##&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt; : ##problem.solvedate##&lt;br /&gt;&lt;span style=\"color: #888888;\"&gt;&lt;strong&gt;&lt;span style=\"text-decoration: underline;\"&gt;##lang.problem.solution.type##&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt; : ##problem.solution.type##&lt;br /&gt;&lt;span style=\"text-decoration: underline; color: #888888;\"&gt;&lt;strong&gt;##lang.problem.solution.description##&lt;/strong&gt;&lt;/span&gt; : ##problem.solution.description##&lt;br /&gt;##ENDIFproblem.storestatus##&lt;/p&gt;\n&lt;div class=\"description b\"&gt;##lang.problem.numberoffollowups##&#160;: ##problem.numberoffollowups##&lt;/div&gt;\n&lt;p&gt;##FOREACHfollowups##&lt;/p&gt;\n&lt;div class=\"description b\"&gt;&lt;br /&gt; &lt;strong&gt; [##followup.date##] &lt;em&gt;##lang.followup.isprivate## : ##followup.isprivate## &lt;/em&gt;&lt;/strong&gt;&lt;br /&gt; &lt;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&gt; ##lang.followup.author## &lt;/span&gt; ##followup.author##&lt;br /&gt; &lt;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&gt; ##lang.followup.description## &lt;/span&gt; ##followup.description##&lt;br /&gt; &lt;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&gt; ##lang.followup.date## &lt;/span&gt; ##followup.date##&lt;br /&gt; &lt;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&gt; ##lang.followup.requesttype## &lt;/span&gt; ##followup.requesttype##&lt;/div&gt;\n&lt;p&gt;##ENDFOREACHfollowups##&lt;/p&gt;\n&lt;div class=\"description b\"&gt;##lang.problem.numberoftickets##&#160;: ##problem.numberoftickets##&lt;/div&gt;\n&lt;p&gt;##FOREACHtickets##&lt;/p&gt;\n&lt;div&gt;&lt;strong&gt; [##ticket.date##] &lt;em&gt;##lang.problem.title## : &lt;a href=\"##ticket.url##\"&gt;##ticket.title## &lt;/a&gt;&lt;/em&gt;&lt;/strong&gt;&lt;br /&gt; &lt;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&gt; &lt;/span&gt;&lt;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&gt;##lang.problem.content## &lt;/span&gt; ##ticket.content##\n&lt;p&gt;##ENDFOREACHtickets##&lt;/p&gt;\n&lt;div class=\"description b\"&gt;##lang.problem.numberoftasks##&#160;: ##problem.numberoftasks##&lt;/div&gt;\n&lt;p&gt;##FOREACHtasks##&lt;/p&gt;\n&lt;div class=\"description b\"&gt;&lt;strong&gt;[##task.date##] &lt;/strong&gt;&lt;br /&gt; &lt;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&gt; ##lang.task.author##&lt;/span&gt; ##task.author##&lt;br /&gt; &lt;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&gt; ##lang.task.description##&lt;/span&gt; ##task.description##&lt;br /&gt; &lt;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&gt; ##lang.task.time##&lt;/span&gt; ##task.time##&lt;br /&gt; &lt;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&gt; ##lang.task.category##&lt;/span&gt; ##task.category##&lt;/div&gt;\n&lt;p&gt;##ENDFOREACHtasks##&lt;/p&gt;\n&lt;/div&gt;'),
(18,18,'','##recall.action##: ##recall.item.name##','##recall.action##: ##recall.item.name##\n\n##recall.item.content##\n\n##lang.recall.planning.begin##: ##recall.planning.begin##\n##lang.recall.planning.end##: ##recall.planning.end##\n##lang.recall.planning.state##: ##recall.planning.state##\n##lang.recall.item.private##: ##recall.item.private##','&lt;p&gt;##recall.action##: &lt;a href=\"##recall.item.url##\"&gt;##recall.item.name##&lt;/a&gt;&lt;/p&gt;\n&lt;p&gt;##recall.item.content##&lt;/p&gt;\n&lt;p&gt;##lang.recall.planning.begin##: ##recall.planning.begin##&lt;br /&gt;##lang.recall.planning.end##: ##recall.planning.end##&lt;br /&gt;##lang.recall.planning.state##: ##recall.planning.state##&lt;br /&gt;##lang.recall.item.private##: ##recall.item.private##&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;\n&lt;p&gt;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;'),
(19,19,'','##change.action## ##change.title##','##IFchange.storestatus=5##\n ##lang.change.url## : ##change.urlapprove##\n ##lang.change.solvedate## : ##change.solvedate##\n ##lang.change.solution.type## : ##change.solution.type##\n ##lang.change.solution.description## : ##change.solution.description## ##ENDIFchange.storestatus##\n ##ELSEchange.storestatus## ##lang.change.url## : ##change.url## ##ENDELSEchange.storestatus##\n\n ##lang.change.description##\n\n ##lang.change.title##  :##change.title##\n ##lang.change.authors##  :##IFchange.authors## ##change.authors## ##ENDIFchange.authors## ##ELSEchange.authors##--##ENDELSEchange.authors##\n ##lang.change.creationdate##  :##change.creationdate##\n ##IFchange.assigntousers## ##lang.change.assigntousers##  : ##change.assigntousers## ##ENDIFchange.assigntousers##\n ##lang.change.status##  : ##change.status##\n ##IFchange.assigntogroups## ##lang.change.assigntogroups##  : ##change.assigntogroups## ##ENDIFchange.assigntogroups##\n ##lang.change.urgency##  : ##change.urgency##\n ##lang.change.impact##  : ##change.impact##\n ##lang.change.priority## : ##change.priority##\n##IFchange.category## ##lang.change.category##  :##change.category## ##ENDIFchange.category## ##ELSEchange.category## ##lang.change.nocategoryassigned## ##ENDELSEchange.category##\n ##lang.change.content##  : ##change.content##\n\n##IFchange.storestatus=6##\n ##lang.change.solvedate## : ##change.solvedate##\n ##lang.change.solution.type## : ##change.solution.type##\n ##lang.change.solution.description## : ##change.solution.description##\n##ENDIFchange.storestatus##\n ##lang.change.numberoffollowups## : ##change.numberoffollowups##\n\n##FOREACHfollowups##\n\n [##followup.date##] ##lang.followup.isprivate## : ##followup.isprivate##\n ##lang.followup.author## ##followup.author##\n ##lang.followup.description## ##followup.description##\n ##lang.followup.date## ##followup.date##\n ##lang.followup.requesttype## ##followup.requesttype##\n\n##ENDFOREACHfollowups##\n ##lang.change.numberofproblems## : ##change.numberofproblems##\n\n##FOREACHproblems##\n [##problem.date##] ##lang.change.title## : ##problem.title##\n ##lang.change.content## ##problem.content##\n\n##ENDFOREACHproblems##\n ##lang.change.numberoftasks## : ##change.numberoftasks##\n\n##FOREACHtasks##\n [##task.date##]\n ##lang.task.author## ##task.author##\n ##lang.task.description## ##task.description##\n ##lang.task.time## ##task.time##\n ##lang.task.category## ##task.category##\n\n##ENDFOREACHtasks##\n','&lt;p&gt;##IFchange.storestatus=5##&lt;/p&gt;\n&lt;div&gt;##lang.change.url## : &lt;a href=\"##change.urlapprove##\"&gt;##change.urlapprove##&lt;/a&gt;&lt;/div&gt;\n&lt;div&gt;&lt;span style=\"color: #888888;\"&gt;&lt;strong&gt;&lt;span style=\"text-decoration: underline;\"&gt;##lang.change.solvedate##&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt; : ##change.solvedate##&lt;br /&gt;&lt;span style=\"text-decoration: underline; color: #888888;\"&gt;&lt;strong&gt;##lang.change.solution.type##&lt;/strong&gt;&lt;/span&gt; : ##change.solution.type##&lt;br /&gt;&lt;span style=\"text-decoration: underline; color: #888888;\"&gt;&lt;strong&gt;##lang.change.solution.description##&lt;/strong&gt;&lt;/span&gt; : ##change.solution.description## ##ENDIFchange.storestatus##&lt;/div&gt;\n&lt;div&gt;##ELSEchange.storestatus## ##lang.change.url## : &lt;a href=\"##change.url##\"&gt;##change.url##&lt;/a&gt; ##ENDELSEchange.storestatus##&lt;/div&gt;\n&lt;p class=\"description b\"&gt;&lt;strong&gt;##lang.change.description##&lt;/strong&gt;&lt;/p&gt;\n&lt;p&gt;&lt;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&gt; ##lang.change.title##&lt;/span&gt;&#160;:##change.title## &lt;br /&gt; &lt;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&gt; ##lang.change.authors##&lt;/span&gt;&#160;:##IFchange.authors## ##change.authors## ##ENDIFchange.authors##    ##ELSEchange.authors##--##ENDELSEchange.authors## &lt;br /&gt; &lt;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&gt; ##lang.change.creationdate##&lt;/span&gt;&#160;:##change.creationdate## &lt;br /&gt; ##IFchange.assigntousers## &lt;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&gt; ##lang.change.assigntousers##&lt;/span&gt;&#160;: ##change.assigntousers## ##ENDIFchange.assigntousers##&lt;br /&gt; &lt;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&gt;##lang.change.status## &lt;/span&gt;&#160;: ##change.status##&lt;br /&gt; ##IFchange.assigntogroups## &lt;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&gt; ##lang.change.assigntogroups##&lt;/span&gt;&#160;: ##change.assigntogroups## ##ENDIFchange.assigntogroups##&lt;br /&gt; &lt;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&gt; ##lang.change.urgency##&lt;/span&gt;&#160;: ##change.urgency##&lt;br /&gt; &lt;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&gt; ##lang.change.impact##&lt;/span&gt;&#160;: ##change.impact##&lt;br /&gt; &lt;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&gt; ##lang.change.priority##&lt;/span&gt; : ##change.priority## &lt;br /&gt;##IFchange.category##&lt;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&gt;##lang.change.category## &lt;/span&gt;&#160;:##change.category##  ##ENDIFchange.category## ##ELSEchange.category##  ##lang.change.nocategoryassigned## ##ENDELSEchange.category##    &lt;br /&gt; &lt;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&gt; ##lang.change.content##&lt;/span&gt;&#160;: ##change.content##&lt;/p&gt;\n&lt;p&gt;##IFchange.storestatus=6##&lt;br /&gt;&lt;span style=\"text-decoration: underline;\"&gt;&lt;strong&gt;&lt;span style=\"color: #888888;\"&gt;##lang.change.solvedate##&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt; : ##change.solvedate##&lt;br /&gt;&lt;span style=\"color: #888888;\"&gt;&lt;strong&gt;&lt;span style=\"text-decoration: underline;\"&gt;##lang.change.solution.type##&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt; : ##change.solution.type##&lt;br /&gt;&lt;span style=\"text-decoration: underline; color: #888888;\"&gt;&lt;strong&gt;##lang.change.solution.description##&lt;/strong&gt;&lt;/span&gt; : ##change.solution.description##&lt;br /&gt;##ENDIFchange.storestatus##&lt;/p&gt;\n&lt;div class=\"description b\"&gt;##lang.change.numberoffollowups##&#160;: ##change.numberoffollowups##&lt;/div&gt;\n&lt;p&gt;##FOREACHfollowups##&lt;/p&gt;\n&lt;div class=\"description b\"&gt;&lt;br /&gt; &lt;strong&gt; [##followup.date##] &lt;em&gt;##lang.followup.isprivate## : ##followup.isprivate## &lt;/em&gt;&lt;/strong&gt;&lt;br /&gt; &lt;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&gt; ##lang.followup.author## &lt;/span&gt; ##followup.author##&lt;br /&gt; &lt;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&gt; ##lang.followup.description## &lt;/span&gt; ##followup.description##&lt;br /&gt; &lt;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&gt; ##lang.followup.date## &lt;/span&gt; ##followup.date##&lt;br /&gt; &lt;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&gt; ##lang.followup.requesttype## &lt;/span&gt; ##followup.requesttype##&lt;/div&gt;\n&lt;p&gt;##ENDFOREACHfollowups##&lt;/p&gt;\n&lt;div class=\"description b\"&gt;##lang.change.numberofproblems##&#160;: ##change.numberofproblems##&lt;/div&gt;\n&lt;p&gt;##FOREACHproblems##&lt;/p&gt;\n&lt;div&gt;&lt;strong&gt; [##problem.date##] &lt;em&gt;##lang.change.title## : &lt;a href=\"##problem.url##\"&gt;##problem.title## &lt;/a&gt;&lt;/em&gt;&lt;/strong&gt;&lt;br /&gt; &lt;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&gt; &lt;/span&gt;&lt;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&gt;##lang.change.content## &lt;/span&gt; ##problem.content##\n&lt;p&gt;##ENDFOREACHproblems##&lt;/p&gt;\n&lt;div class=\"description b\"&gt;##lang.change.numberoftasks##&#160;: ##change.numberoftasks##&lt;/div&gt;\n&lt;p&gt;##FOREACHtasks##&lt;/p&gt;\n&lt;div class=\"description b\"&gt;&lt;strong&gt;[##task.date##] &lt;/strong&gt;&lt;br /&gt; &lt;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&gt; ##lang.task.author##&lt;/span&gt; ##task.author##&lt;br /&gt; &lt;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&gt; ##lang.task.description##&lt;/span&gt; ##task.description##&lt;br /&gt; &lt;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&gt; ##lang.task.time##&lt;/span&gt; ##task.time##&lt;br /&gt; &lt;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&gt; ##lang.task.category##&lt;/span&gt; ##task.category##&lt;/div&gt;\n&lt;p&gt;##ENDFOREACHtasks##&lt;/p&gt;\n&lt;/div&gt;'),
(20,20,'','##mailcollector.action##','##FOREACHmailcollectors##\n##lang.mailcollector.name## : ##mailcollector.name##\n##lang.mailcollector.errors## : ##mailcollector.errors##\n##mailcollector.url##\n##ENDFOREACHmailcollectors##','&lt;p&gt;##FOREACHmailcollectors##&lt;br /&gt;##lang.mailcollector.name## : ##mailcollector.name##&lt;br /&gt; ##lang.mailcollector.errors## : ##mailcollector.errors##&lt;br /&gt;&lt;a href=\"##mailcollector.url##\"&gt;##mailcollector.url##&lt;/a&gt;&lt;br /&gt; ##ENDFOREACHmailcollectors##&lt;/p&gt;\n&lt;p&gt;&lt;/p&gt;'),
(21,21,'','##project.action## ##project.name## ##project.code##','##lang.project.url## : ##project.url##\n\n##lang.project.description##\n\n##lang.project.name## : ##project.name##\n##lang.project.code## : ##project.code##\n##lang.project.manager## : ##project.manager##\n##lang.project.managergroup## : ##project.managergroup##\n##lang.project.creationdate## : ##project.creationdate##\n##lang.project.priority## : ##project.priority##\n##lang.project.state## : ##project.state##\n##lang.project.type## : ##project.type##\n##lang.project.description## : ##project.description##\n\n##lang.project.numberoftasks## : ##project.numberoftasks##\n\n\n\n##FOREACHtasks##\n\n[##task.creationdate##]\n##lang.task.name## : ##task.name##\n##lang.task.state## : ##task.state##\n##lang.task.type## : ##task.type##\n##lang.task.percent## : ##task.percent##\n##lang.task.description## : ##task.description##\n\n##ENDFOREACHtasks##','&lt;p&gt;##lang.project.url## : &lt;a href=\"##project.url##\"&gt;##project.url##&lt;/a&gt;&lt;/p&gt;\n&lt;p&gt;&lt;strong&gt;##lang.project.description##&lt;/strong&gt;&lt;/p&gt;\n&lt;p&gt;##lang.project.name## : ##project.name##&lt;br /&gt;##lang.project.code## : ##project.code##&lt;br /&gt; ##lang.project.manager## : ##project.manager##&lt;br /&gt;##lang.project.managergroup## : ##project.managergroup##&lt;br /&gt; ##lang.project.creationdate## : ##project.creationdate##&lt;br /&gt;##lang.project.priority## : ##project.priority## &lt;br /&gt;##lang.project.state## : ##project.state##&lt;br /&gt;##lang.project.type## : ##project.type##&lt;br /&gt;##lang.project.description## : ##project.description##&lt;/p&gt;\n&lt;p&gt;##lang.project.numberoftasks## : ##project.numberoftasks##&lt;/p&gt;\n&lt;div&gt;\n&lt;p&gt;##FOREACHtasks##&lt;/p&gt;\n&lt;div&gt;&lt;strong&gt;[##task.creationdate##] &lt;/strong&gt;&lt;br /&gt; ##lang.task.name## : ##task.name##&lt;br /&gt;##lang.task.state## : ##task.state##&lt;br /&gt;##lang.task.type## : ##task.type##&lt;br /&gt;##lang.task.percent## : ##task.percent##&lt;br /&gt;##lang.task.description## : ##task.description##&lt;/div&gt;\n&lt;p&gt;##ENDFOREACHtasks##&lt;/p&gt;\n&lt;/div&gt;'),
(22,22,'','##projecttask.action## ##projecttask.name##','##lang.projecttask.url## : ##projecttask.url##\n\n##lang.projecttask.description##\n\n##lang.projecttask.name## : ##projecttask.name##\n##lang.projecttask.project## : ##projecttask.project##\n##lang.projecttask.creationdate## : ##projecttask.creationdate##\n##lang.projecttask.state## : ##projecttask.state##\n##lang.projecttask.type## : ##projecttask.type##\n##lang.projecttask.description## : ##projecttask.description##\n\n##lang.projecttask.numberoftasks## : ##projecttask.numberoftasks##\n\n\n\n##FOREACHtasks##\n\n[##task.creationdate##]\n##lang.task.name## : ##task.name##\n##lang.task.state## : ##task.state##\n##lang.task.type## : ##task.type##\n##lang.task.percent## : ##task.percent##\n##lang.task.description## : ##task.description##\n\n##ENDFOREACHtasks##','&lt;p&gt;##lang.projecttask.url## : &lt;a href=\"##projecttask.url##\"&gt;##projecttask.url##&lt;/a&gt;&lt;/p&gt;\n&lt;p&gt;&lt;strong&gt;##lang.projecttask.description##&lt;/strong&gt;&lt;/p&gt;\n&lt;p&gt;##lang.projecttask.name## : ##projecttask.name##&lt;br /&gt;##lang.projecttask.project## : &lt;a href=\"##projecttask.projecturl##\"&gt;##projecttask.project##&lt;/a&gt;&lt;br /&gt;##lang.projecttask.creationdate## : ##projecttask.creationdate##&lt;br /&gt;##lang.projecttask.state## : ##projecttask.state##&lt;br /&gt;##lang.projecttask.type## : ##projecttask.type##&lt;br /&gt;##lang.projecttask.description## : ##projecttask.description##&lt;/p&gt;\n&lt;p&gt;##lang.projecttask.numberoftasks## : ##projecttask.numberoftasks##&lt;/p&gt;\n&lt;div&gt;\n&lt;p&gt;##FOREACHtasks##&lt;/p&gt;\n&lt;div&gt;&lt;strong&gt;[##task.creationdate##] &lt;/strong&gt;&lt;br /&gt;##lang.task.name## : ##task.name##&lt;br /&gt;##lang.task.state## : ##task.state##&lt;br /&gt;##lang.task.type## : ##task.type##&lt;br /&gt;##lang.task.percent## : ##task.percent##&lt;br /&gt;##lang.task.description## : ##task.description##&lt;/div&gt;\n&lt;p&gt;##ENDFOREACHtasks##&lt;/p&gt;\n&lt;/div&gt;'),
(23,23,'','##objectlock.action##','##objectlock.type## ###objectlock.id## - ##objectlock.name##\n\n      ##lang.objectlock.url##\n      ##objectlock.url##\n\n      ##lang.objectlock.date_mod##\n      ##objectlock.date_mod##\n\n      Hello ##objectlock.lockedby.firstname##,\n      Could go to this item and unlock it for me?\n      Thank you,\n      Regards,\n      ##objectlock.requester.firstname##','&lt;table&gt;\n      &lt;tbody&gt;\n      &lt;tr&gt;&lt;th colspan=\"2\"&gt;&lt;a href=\"##objectlock.url##\"&gt;##objectlock.type## ###objectlock.id## - ##objectlock.name##&lt;/a&gt;&lt;/th&gt;&lt;/tr&gt;\n      &lt;tr&gt;\n      &lt;td&gt;##lang.objectlock.url##&lt;/td&gt;\n      &lt;td&gt;##objectlock.url##&lt;/td&gt;\n      &lt;/tr&gt;\n      &lt;tr&gt;\n      &lt;td&gt;##lang.objectlock.date_mod##&lt;/td&gt;\n      &lt;td&gt;##objectlock.date_mod##&lt;/td&gt;\n      &lt;/tr&gt;\n      &lt;/tbody&gt;\n      &lt;/table&gt;\n      &lt;p&gt;&lt;span style=\"font-size: small;\"&gt;Hello ##objectlock.lockedby.firstname##,&lt;br /&gt;Could go to this item and unlock it for me?&lt;br /&gt;Thank you,&lt;br /&gt;Regards,&lt;br /&gt;##objectlock.requester.firstname## ##objectlock.requester.lastname##&lt;/span&gt;&lt;/p&gt;'),
(24,24,'','##savedsearch.action## ##savedsearch.name##','##savedsearch.type## ###savedsearch.id## - ##savedsearch.name##\n\n      ##savedsearch.message##\n\n      ##lang.savedsearch.url##\n      ##savedsearch.url##\n\n      Regards,','&lt;table&gt;\n      &lt;tbody&gt;\n      &lt;tr&gt;&lt;th colspan=\"2\"&gt;&lt;a href=\"##savedsearch.url##\"&gt;##savedsearch.type## ###savedsearch.id## - ##savedsearch.name##&lt;/a&gt;&lt;/th&gt;&lt;/tr&gt;\n      &lt;tr&gt;&lt;td colspan=\"2\"&gt;&lt;a href=\"##savedsearch.url##\"&gt;##savedsearch.message##&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;\n      &lt;tr&gt;\n      &lt;td&gt;##lang.savedsearch.url##&lt;/td&gt;\n      &lt;td&gt;##savedsearch.url##&lt;/td&gt;\n      &lt;/tr&gt;\n      &lt;/tbody&gt;\n      &lt;/table&gt;\n      &lt;p&gt;&lt;span style=\"font-size: small;\"&gt;Hello &lt;br /&gt;Regards,&lt;/span&gt;&lt;/p&gt;'),
(25,25,'','##certificate.action##  ##certificate.name##','##lang.certificate.entity## : ##certificate.entity##\n\n##lang.certificate.serial## : ##certificate.serial##\n\n##lang.certificate.expirationdate## : ##certificate.expirationdate##\n\n##certificate.url##','&lt;p&gt;\n##lang.certificate.entity## : ##certificate.entity##&lt;br /&gt;\n&lt;br /&gt;##lang.certificate.name## : ##certificate.name##&lt;br /&gt;\n##lang.certificate.serial## : ##certificate.serial##&lt;br /&gt;\n##lang.certificate.expirationdate## : ##certificate.expirationdate##\n&lt;br /&gt; &lt;a href=\"##certificate.url##\"&gt; ##certificate.url##\n&lt;/a&gt;&lt;br /&gt;\n&lt;/p&gt;'),
(26,26,'','##domain.action## : ##domain.name##','##lang.domain.entity## :##domain.entity##\n   ##lang.domain.name## : ##domain.name## - ##lang.domain.dateexpiration## : ##domain.dateexpiration##','&lt;p&gt;##lang.domain.entity## :##domain.entity##&lt;br /&gt; &lt;br /&gt;\n                        ##lang.domain.name##  : ##domain.name## - ##lang.domain.dateexpiration## :  ##domain.dateexpiration##&lt;br /&gt;\n                        &lt;/p&gt;'),
(27,27,'','##user.action##','##user.realname## ##user.firstname##,\n\n##IFuser.password.has_expired=1##\n##lang.password.has_expired.information##\n##ENDIFuser.password.has_expired##\n##ELSEuser.password.has_expired##\n##lang.password.expires_soon.information##\n##ENDELSEuser.password.has_expired##\n##lang.user.password.expiration.date##: ##user.password.expiration.date##\n##IFuser.account.lock.date##\n##lang.user.account.lock.date##: ##user.account.lock.date##\n##ENDIFuser.account.lock.date##\n\n##password.update.link## ##user.password.update.url##','&lt;p&gt;&lt;strong&gt;##user.realname## ##user.firstname##&lt;/strong&gt;&lt;/p&gt;\n\n##IFuser.password.has_expired=1##\n&lt;p&gt;##lang.password.has_expired.information##&lt;/p&gt;\n##ENDIFuser.password.has_expired##\n##ELSEuser.password.has_expired##\n&lt;p&gt;##lang.password.expires_soon.information##&lt;/p&gt;\n##ENDELSEuser.password.has_expired##\n&lt;p&gt;##lang.user.password.expiration.date##: ##user.password.expiration.date##&lt;/p&gt;\n##IFuser.account.lock.date##\n&lt;p&gt;##lang.user.account.lock.date##: ##user.account.lock.date##&lt;/p&gt;\n##ENDIFuser.account.lock.date##\n\n&lt;p&gt;##lang.password.update.link## &lt;a href=\"##user.password.update.url##\"&gt;##user.password.update.url##&lt;/a&gt;&lt;/p&gt;'),
(28,28,'','##lang.plugins_updates_available##','##lang.plugins_updates_available##\n\n##FOREACHplugins##\n##plugin.name## :##plugin.old_version## -&gt; ##plugin.version##\n##ENDFOREACHplugins##\n\n##lang.marketplace.url## : ##marketplace.url##','&lt;p&gt;##lang.plugins_updates_available##&lt;/p&gt;\n&lt;ul&gt;##FOREACHplugins##\n&lt;li&gt;##plugin.name## :##plugin.old_version## -&gt; ##plugin.version##&lt;/li&gt;\n##ENDFOREACHplugins##&lt;/ul&gt;\n&lt;p&gt;##lang.marketplace.url## : &lt;a title=\"##lang.marketplace.url##\" href=\"##marketplace.url##\" target=\"_blank\" rel=\"noopener\"&gt;##marketplace.url##&lt;/a&gt;&lt;/p&gt;'),
(29,29,'','Sua requisição foi salva','Olá,\\nSua requisição do GLPI foi salva com sucesso com o número ##formcreator.request_id## e transmitido para a equipe de helpdesk.\\nVocê pode ver suas respostas no seguinte link:\\n##formcreator.validation_link##','<p>Olá,<br />Sua requisição do GLPI foi salva com sucesso com o número ##formcreator.request_id## e transmitido para a equipe de helpdesk.<br />Você pode ver suas respostas no seguinte link:<br />##formcreator.validation_link##</p>'),
(30,30,'','Um formulário vindo do GLPI necessita ser validado','Olá,\\nUm formulário do GLPI precisa ser validado e você foi escolhido como validador.\\nVocê pode acessá-lo clicando neste link:\\n##formcreator.validation_link##','<p>Olá,<br />Um formulário do GLPI precisa ser validado e você foi escolhido como validador.<br />Você pode acessá-lo clicando neste link:<br />##formcreator.validation_link##</p>'),
(31,31,'','Seu formulário foi recusado pelo validador','Olá,\\nLamentamos informar que o seu formulário foi recusado pelo validador pelo motivo abaixo:\\n##formcreator.validation_comment##\\n\\nVocê pode modificá-lo e re-submetê-lo clicando neste link:\\n##formcreator.validation_link##','<p>Olá,<br />Lamentamos informar que o seu formulário foi recusado pelo validador pelo motivo abaixo:<br />##formcreator.validation_comment##<br /><br />Você pode modificá-lo e re-submetê-lo clicando neste link:<br />##formcreator.validation_link##</p>'),
(32,32,'','Seu formulário foi aceito pelo validador','Olá,\\nTemos a satisfação de informá-lo que o seu formulário foi aceito pelo validador.\\nSua solicitação será considerada em breve.','<p>Olá,<br />Temos a satisfação de informá-lo que o seu formulário foi aceito pelo validador.<br />Sua solicitação será considerada em breve.</p>'),
(33,33,'','Seu formulário foi deletado por um administrador','Olá,\\nNós lamentamos informar que a sua solicitação não pode ser considerada e foi deletada por um administrador.','<p>Olá,<br />Nós lamentamos informar que a sua solicitação não pode ser considerada e foi deletada por um administrador.</p>');
/*!40000 ALTER TABLE `glpi_notificationtemplatetranslations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_notimportedemails`
--

DROP TABLE IF EXISTS `glpi_notimportedemails`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_notimportedemails` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `from` varchar(255) NOT NULL,
  `to` varchar(255) NOT NULL,
  `mailcollectors_id` int(10) unsigned NOT NULL DEFAULT 0,
  `date` timestamp NOT NULL DEFAULT current_timestamp(),
  `subject` text DEFAULT NULL,
  `messageid` varchar(255) NOT NULL,
  `reason` int(11) NOT NULL DEFAULT 0,
  `users_id` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `users_id` (`users_id`),
  KEY `mailcollectors_id` (`mailcollectors_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_notimportedemails`
--

LOCK TABLES `glpi_notimportedemails` WRITE;
/*!40000 ALTER TABLE `glpi_notimportedemails` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_notimportedemails` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_objectlocks`
--

DROP TABLE IF EXISTS `glpi_objectlocks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_objectlocks` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `itemtype` varchar(100) NOT NULL COMMENT 'Type of locked object',
  `items_id` int(10) unsigned NOT NULL COMMENT 'RELATION to various tables, according to itemtype (ID)',
  `users_id` int(10) unsigned NOT NULL COMMENT 'id of the locker',
  `date` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `item` (`itemtype`,`items_id`),
  KEY `users_id` (`users_id`),
  KEY `date` (`date`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_objectlocks`
--

LOCK TABLES `glpi_objectlocks` WRITE;
/*!40000 ALTER TABLE `glpi_objectlocks` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_objectlocks` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_olalevelactions`
--

DROP TABLE IF EXISTS `glpi_olalevelactions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_olalevelactions` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `olalevels_id` int(10) unsigned NOT NULL DEFAULT 0,
  `action_type` varchar(255) DEFAULT NULL,
  `field` varchar(255) DEFAULT NULL,
  `value` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `olalevels_id` (`olalevels_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_olalevelactions`
--

LOCK TABLES `glpi_olalevelactions` WRITE;
/*!40000 ALTER TABLE `glpi_olalevelactions` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_olalevelactions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_olalevelcriterias`
--

DROP TABLE IF EXISTS `glpi_olalevelcriterias`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_olalevelcriterias` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `olalevels_id` int(10) unsigned NOT NULL DEFAULT 0,
  `criteria` varchar(255) DEFAULT NULL,
  `condition` int(11) NOT NULL DEFAULT 0 COMMENT 'see define.php PATTERN_* and REGEX_* constant',
  `pattern` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `olalevels_id` (`olalevels_id`),
  KEY `condition` (`condition`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_olalevelcriterias`
--

LOCK TABLES `glpi_olalevelcriterias` WRITE;
/*!40000 ALTER TABLE `glpi_olalevelcriterias` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_olalevelcriterias` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_olalevels`
--

DROP TABLE IF EXISTS `glpi_olalevels`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_olalevels` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `olas_id` int(10) unsigned NOT NULL DEFAULT 0,
  `execution_time` int(11) NOT NULL,
  `is_active` tinyint(4) NOT NULL DEFAULT 1,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `match` char(10) DEFAULT NULL COMMENT 'see define.php *_MATCHING constant',
  `uuid` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `is_active` (`is_active`),
  KEY `olas_id` (`olas_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_olalevels`
--

LOCK TABLES `glpi_olalevels` WRITE;
/*!40000 ALTER TABLE `glpi_olalevels` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_olalevels` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_olalevels_tickets`
--

DROP TABLE IF EXISTS `glpi_olalevels_tickets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_olalevels_tickets` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `tickets_id` int(10) unsigned NOT NULL DEFAULT 0,
  `olalevels_id` int(10) unsigned NOT NULL DEFAULT 0,
  `date` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`tickets_id`,`olalevels_id`),
  KEY `olalevels_id` (`olalevels_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_olalevels_tickets`
--

LOCK TABLES `glpi_olalevels_tickets` WRITE;
/*!40000 ALTER TABLE `glpi_olalevels_tickets` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_olalevels_tickets` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_olas`
--

DROP TABLE IF EXISTS `glpi_olas`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_olas` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `type` int(11) NOT NULL DEFAULT 0,
  `comment` text DEFAULT NULL,
  `number_time` int(11) NOT NULL,
  `use_ticket_calendar` tinyint(4) NOT NULL DEFAULT 0,
  `calendars_id` int(10) unsigned NOT NULL DEFAULT 0,
  `date_mod` timestamp NULL DEFAULT NULL,
  `definition_time` varchar(255) DEFAULT NULL,
  `end_of_working_day` tinyint(4) NOT NULL DEFAULT 0,
  `date_creation` timestamp NULL DEFAULT NULL,
  `slms_id` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`),
  KEY `calendars_id` (`calendars_id`),
  KEY `slms_id` (`slms_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_olas`
--

LOCK TABLES `glpi_olas` WRITE;
/*!40000 ALTER TABLE `glpi_olas` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_olas` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_operatingsystemarchitectures`
--

DROP TABLE IF EXISTS `glpi_operatingsystemarchitectures`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_operatingsystemarchitectures` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_operatingsystemarchitectures`
--

LOCK TABLES `glpi_operatingsystemarchitectures` WRITE;
/*!40000 ALTER TABLE `glpi_operatingsystemarchitectures` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_operatingsystemarchitectures` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_operatingsystemeditions`
--

DROP TABLE IF EXISTS `glpi_operatingsystemeditions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_operatingsystemeditions` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `date_creation` (`date_creation`),
  KEY `date_mod` (`date_mod`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_operatingsystemeditions`
--

LOCK TABLES `glpi_operatingsystemeditions` WRITE;
/*!40000 ALTER TABLE `glpi_operatingsystemeditions` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_operatingsystemeditions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_operatingsystemkernels`
--

DROP TABLE IF EXISTS `glpi_operatingsystemkernels`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_operatingsystemkernels` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `date_creation` (`date_creation`),
  KEY `date_mod` (`date_mod`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_operatingsystemkernels`
--

LOCK TABLES `glpi_operatingsystemkernels` WRITE;
/*!40000 ALTER TABLE `glpi_operatingsystemkernels` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_operatingsystemkernels` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_operatingsystemkernelversions`
--

DROP TABLE IF EXISTS `glpi_operatingsystemkernelversions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_operatingsystemkernelversions` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `operatingsystemkernels_id` int(10) unsigned NOT NULL DEFAULT 0,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `operatingsystemkernels_id` (`operatingsystemkernels_id`),
  KEY `date_creation` (`date_creation`),
  KEY `date_mod` (`date_mod`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_operatingsystemkernelversions`
--

LOCK TABLES `glpi_operatingsystemkernelversions` WRITE;
/*!40000 ALTER TABLE `glpi_operatingsystemkernelversions` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_operatingsystemkernelversions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_operatingsystems`
--

DROP TABLE IF EXISTS `glpi_operatingsystems`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_operatingsystems` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_operatingsystems`
--

LOCK TABLES `glpi_operatingsystems` WRITE;
/*!40000 ALTER TABLE `glpi_operatingsystems` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_operatingsystems` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_operatingsystemservicepacks`
--

DROP TABLE IF EXISTS `glpi_operatingsystemservicepacks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_operatingsystemservicepacks` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_operatingsystemservicepacks`
--

LOCK TABLES `glpi_operatingsystemservicepacks` WRITE;
/*!40000 ALTER TABLE `glpi_operatingsystemservicepacks` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_operatingsystemservicepacks` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_operatingsystemversions`
--

DROP TABLE IF EXISTS `glpi_operatingsystemversions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_operatingsystemversions` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_operatingsystemversions`
--

LOCK TABLES `glpi_operatingsystemversions` WRITE;
/*!40000 ALTER TABLE `glpi_operatingsystemversions` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_operatingsystemversions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_passivedcequipmentmodels`
--

DROP TABLE IF EXISTS `glpi_passivedcequipmentmodels`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_passivedcequipmentmodels` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `product_number` varchar(255) DEFAULT NULL,
  `weight` int(11) NOT NULL DEFAULT 0,
  `required_units` int(11) NOT NULL DEFAULT 1,
  `depth` float NOT NULL DEFAULT 1,
  `power_connections` int(11) NOT NULL DEFAULT 0,
  `power_consumption` int(11) NOT NULL DEFAULT 0,
  `is_half_rack` tinyint(4) NOT NULL DEFAULT 0,
  `picture_front` text DEFAULT NULL,
  `picture_rear` text DEFAULT NULL,
  `pictures` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`),
  KEY `product_number` (`product_number`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_passivedcequipmentmodels`
--

LOCK TABLES `glpi_passivedcequipmentmodels` WRITE;
/*!40000 ALTER TABLE `glpi_passivedcequipmentmodels` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_passivedcequipmentmodels` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_passivedcequipments`
--

DROP TABLE IF EXISTS `glpi_passivedcequipments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_passivedcequipments` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `locations_id` int(10) unsigned NOT NULL DEFAULT 0,
  `serial` varchar(255) DEFAULT NULL,
  `otherserial` varchar(255) DEFAULT NULL,
  `passivedcequipmentmodels_id` int(10) unsigned DEFAULT NULL,
  `passivedcequipmenttypes_id` int(10) unsigned NOT NULL DEFAULT 0,
  `users_id_tech` int(10) unsigned NOT NULL DEFAULT 0,
  `groups_id_tech` int(10) unsigned NOT NULL DEFAULT 0,
  `is_template` tinyint(4) NOT NULL DEFAULT 0,
  `template_name` varchar(255) DEFAULT NULL,
  `is_deleted` tinyint(4) NOT NULL DEFAULT 0,
  `states_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'RELATION to states (id)',
  `comment` text DEFAULT NULL,
  `manufacturers_id` int(10) unsigned NOT NULL DEFAULT 0,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `locations_id` (`locations_id`),
  KEY `passivedcequipmentmodels_id` (`passivedcequipmentmodels_id`),
  KEY `passivedcequipmenttypes_id` (`passivedcequipmenttypes_id`),
  KEY `users_id_tech` (`users_id_tech`),
  KEY `group_id_tech` (`groups_id_tech`),
  KEY `is_template` (`is_template`),
  KEY `is_deleted` (`is_deleted`),
  KEY `states_id` (`states_id`),
  KEY `manufacturers_id` (`manufacturers_id`),
  KEY `date_creation` (`date_creation`),
  KEY `date_mod` (`date_mod`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_passivedcequipments`
--

LOCK TABLES `glpi_passivedcequipments` WRITE;
/*!40000 ALTER TABLE `glpi_passivedcequipments` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_passivedcequipments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_passivedcequipmenttypes`
--

DROP TABLE IF EXISTS `glpi_passivedcequipmenttypes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_passivedcequipmenttypes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_passivedcequipmenttypes`
--

LOCK TABLES `glpi_passivedcequipmenttypes` WRITE;
/*!40000 ALTER TABLE `glpi_passivedcequipmenttypes` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_passivedcequipmenttypes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_pcivendors`
--

DROP TABLE IF EXISTS `glpi_pcivendors`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_pcivendors` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `vendorid` varchar(4) NOT NULL,
  `deviceid` varchar(4) DEFAULT NULL,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`vendorid`,`deviceid`),
  KEY `deviceid` (`deviceid`),
  KEY `name` (`name`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_pcivendors`
--

LOCK TABLES `glpi_pcivendors` WRITE;
/*!40000 ALTER TABLE `glpi_pcivendors` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_pcivendors` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_pdumodels`
--

DROP TABLE IF EXISTS `glpi_pdumodels`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_pdumodels` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `product_number` varchar(255) DEFAULT NULL,
  `weight` int(11) NOT NULL DEFAULT 0,
  `required_units` int(11) NOT NULL DEFAULT 1,
  `depth` float NOT NULL DEFAULT 1,
  `power_connections` int(11) NOT NULL DEFAULT 0,
  `max_power` int(11) NOT NULL DEFAULT 0,
  `is_half_rack` tinyint(4) NOT NULL DEFAULT 0,
  `picture_front` text DEFAULT NULL,
  `picture_rear` text DEFAULT NULL,
  `pictures` text DEFAULT NULL,
  `is_rackable` tinyint(4) NOT NULL DEFAULT 0,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `is_rackable` (`is_rackable`),
  KEY `product_number` (`product_number`),
  KEY `date_creation` (`date_creation`),
  KEY `date_mod` (`date_mod`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_pdumodels`
--

LOCK TABLES `glpi_pdumodels` WRITE;
/*!40000 ALTER TABLE `glpi_pdumodels` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_pdumodels` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_pdus`
--

DROP TABLE IF EXISTS `glpi_pdus`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_pdus` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `locations_id` int(10) unsigned NOT NULL DEFAULT 0,
  `serial` varchar(255) DEFAULT NULL,
  `otherserial` varchar(255) DEFAULT NULL,
  `pdumodels_id` int(10) unsigned DEFAULT NULL,
  `users_id_tech` int(10) unsigned NOT NULL DEFAULT 0,
  `groups_id_tech` int(10) unsigned NOT NULL DEFAULT 0,
  `is_template` tinyint(4) NOT NULL DEFAULT 0,
  `template_name` varchar(255) DEFAULT NULL,
  `is_deleted` tinyint(4) NOT NULL DEFAULT 0,
  `states_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'RELATION to states (id)',
  `comment` text DEFAULT NULL,
  `manufacturers_id` int(10) unsigned NOT NULL DEFAULT 0,
  `pdutypes_id` int(10) unsigned NOT NULL DEFAULT 0,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `locations_id` (`locations_id`),
  KEY `pdumodels_id` (`pdumodels_id`),
  KEY `users_id_tech` (`users_id_tech`),
  KEY `group_id_tech` (`groups_id_tech`),
  KEY `is_template` (`is_template`),
  KEY `is_deleted` (`is_deleted`),
  KEY `states_id` (`states_id`),
  KEY `manufacturers_id` (`manufacturers_id`),
  KEY `pdutypes_id` (`pdutypes_id`),
  KEY `date_creation` (`date_creation`),
  KEY `date_mod` (`date_mod`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_pdus`
--

LOCK TABLES `glpi_pdus` WRITE;
/*!40000 ALTER TABLE `glpi_pdus` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_pdus` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_pdus_plugs`
--

DROP TABLE IF EXISTS `glpi_pdus_plugs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_pdus_plugs` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `plugs_id` int(10) unsigned NOT NULL DEFAULT 0,
  `pdus_id` int(10) unsigned NOT NULL DEFAULT 0,
  `number_plugs` int(11) DEFAULT 0,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `plugs_id` (`plugs_id`),
  KEY `pdus_id` (`pdus_id`),
  KEY `date_creation` (`date_creation`),
  KEY `date_mod` (`date_mod`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_pdus_plugs`
--

LOCK TABLES `glpi_pdus_plugs` WRITE;
/*!40000 ALTER TABLE `glpi_pdus_plugs` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_pdus_plugs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_pdus_racks`
--

DROP TABLE IF EXISTS `glpi_pdus_racks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_pdus_racks` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `racks_id` int(10) unsigned NOT NULL DEFAULT 0,
  `pdus_id` int(10) unsigned NOT NULL DEFAULT 0,
  `side` int(11) DEFAULT 0,
  `position` int(11) NOT NULL,
  `bgcolor` varchar(7) DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `racks_id` (`racks_id`),
  KEY `pdus_id` (`pdus_id`),
  KEY `date_creation` (`date_creation`),
  KEY `date_mod` (`date_mod`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_pdus_racks`
--

LOCK TABLES `glpi_pdus_racks` WRITE;
/*!40000 ALTER TABLE `glpi_pdus_racks` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_pdus_racks` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_pdutypes`
--

DROP TABLE IF EXISTS `glpi_pdutypes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_pdutypes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `name` (`name`),
  KEY `date_creation` (`date_creation`),
  KEY `date_mod` (`date_mod`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_pdutypes`
--

LOCK TABLES `glpi_pdutypes` WRITE;
/*!40000 ALTER TABLE `glpi_pdutypes` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_pdutypes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_pendingreasons`
--

DROP TABLE IF EXISTS `glpi_pendingreasons`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_pendingreasons` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `name` varchar(255) DEFAULT NULL,
  `followup_frequency` int(11) NOT NULL DEFAULT 0,
  `followups_before_resolution` int(11) NOT NULL DEFAULT 0,
  `itilfollowuptemplates_id` int(10) unsigned NOT NULL DEFAULT 0,
  `solutiontemplates_id` int(10) unsigned NOT NULL DEFAULT 0,
  `comment` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `itilfollowuptemplates_id` (`itilfollowuptemplates_id`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `solutiontemplates_id` (`solutiontemplates_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_pendingreasons`
--

LOCK TABLES `glpi_pendingreasons` WRITE;
/*!40000 ALTER TABLE `glpi_pendingreasons` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_pendingreasons` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_pendingreasons_items`
--

DROP TABLE IF EXISTS `glpi_pendingreasons_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_pendingreasons_items` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `pendingreasons_id` int(10) unsigned NOT NULL DEFAULT 0,
  `items_id` int(10) unsigned NOT NULL DEFAULT 0,
  `itemtype` varchar(100) NOT NULL DEFAULT '',
  `followup_frequency` int(11) NOT NULL DEFAULT 0,
  `followups_before_resolution` int(11) NOT NULL DEFAULT 0,
  `bump_count` int(11) NOT NULL DEFAULT 0,
  `last_bump_date` timestamp NULL DEFAULT NULL,
  `previous_status` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`items_id`,`itemtype`),
  KEY `pendingreasons_id` (`pendingreasons_id`),
  KEY `item` (`itemtype`,`items_id`)
) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_pendingreasons_items`
--

LOCK TABLES `glpi_pendingreasons_items` WRITE;
/*!40000 ALTER TABLE `glpi_pendingreasons_items` DISABLE KEYS */;
INSERT INTO `glpi_pendingreasons_items` VALUES
(2,0,33,'ITILFollowup',0,0,0,'2025-01-14 15:38:20',NULL),
(4,0,34,'ITILFollowup',0,0,0,'2025-01-14 15:38:37',NULL),
(6,0,35,'ITILFollowup',0,0,0,'2025-01-14 15:38:55',NULL),
(8,0,36,'ITILFollowup',0,0,0,'2025-01-14 15:39:13',NULL),
(10,0,49,'ITILFollowup',0,0,0,'2025-01-20 13:30:58',NULL),
(12,0,85,'ITILFollowup',0,0,0,'2025-01-28 14:40:22',NULL);
/*!40000 ALTER TABLE `glpi_pendingreasons_items` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_peripheralmodels`
--

DROP TABLE IF EXISTS `glpi_peripheralmodels`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_peripheralmodels` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `product_number` varchar(255) DEFAULT NULL,
  `weight` int(11) NOT NULL DEFAULT 0,
  `required_units` int(11) NOT NULL DEFAULT 1,
  `depth` float NOT NULL DEFAULT 1,
  `power_connections` int(11) NOT NULL DEFAULT 0,
  `power_consumption` int(11) NOT NULL DEFAULT 0,
  `is_half_rack` tinyint(4) NOT NULL DEFAULT 0,
  `picture_front` text DEFAULT NULL,
  `picture_rear` text DEFAULT NULL,
  `pictures` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`),
  KEY `product_number` (`product_number`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_peripheralmodels`
--

LOCK TABLES `glpi_peripheralmodels` WRITE;
/*!40000 ALTER TABLE `glpi_peripheralmodels` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_peripheralmodels` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_peripherals`
--

DROP TABLE IF EXISTS `glpi_peripherals`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_peripherals` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `name` varchar(255) DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `contact` varchar(255) DEFAULT NULL,
  `contact_num` varchar(255) DEFAULT NULL,
  `users_id_tech` int(10) unsigned NOT NULL DEFAULT 0,
  `groups_id_tech` int(10) unsigned NOT NULL DEFAULT 0,
  `comment` text DEFAULT NULL,
  `serial` varchar(255) DEFAULT NULL,
  `otherserial` varchar(255) DEFAULT NULL,
  `locations_id` int(10) unsigned NOT NULL DEFAULT 0,
  `peripheraltypes_id` int(10) unsigned NOT NULL DEFAULT 0,
  `peripheralmodels_id` int(10) unsigned NOT NULL DEFAULT 0,
  `brand` varchar(255) DEFAULT NULL,
  `manufacturers_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_global` tinyint(4) NOT NULL DEFAULT 0,
  `is_deleted` tinyint(4) NOT NULL DEFAULT 0,
  `is_template` tinyint(4) NOT NULL DEFAULT 0,
  `template_name` varchar(255) DEFAULT NULL,
  `users_id` int(10) unsigned NOT NULL DEFAULT 0,
  `groups_id` int(10) unsigned NOT NULL DEFAULT 0,
  `states_id` int(10) unsigned NOT NULL DEFAULT 0,
  `ticket_tco` decimal(20,4) DEFAULT 0.0000,
  `is_dynamic` tinyint(4) NOT NULL DEFAULT 0,
  `autoupdatesystems_id` int(10) unsigned NOT NULL DEFAULT 0,
  `uuid` varchar(255) DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `is_template` (`is_template`),
  KEY `is_global` (`is_global`),
  KEY `entities_id` (`entities_id`),
  KEY `manufacturers_id` (`manufacturers_id`),
  KEY `groups_id` (`groups_id`),
  KEY `users_id` (`users_id`),
  KEY `locations_id` (`locations_id`),
  KEY `peripheralmodels_id` (`peripheralmodels_id`),
  KEY `states_id` (`states_id`),
  KEY `users_id_tech` (`users_id_tech`),
  KEY `peripheraltypes_id` (`peripheraltypes_id`),
  KEY `is_deleted` (`is_deleted`),
  KEY `date_mod` (`date_mod`),
  KEY `groups_id_tech` (`groups_id_tech`),
  KEY `is_dynamic` (`is_dynamic`),
  KEY `autoupdatesystems_id` (`autoupdatesystems_id`),
  KEY `serial` (`serial`),
  KEY `otherserial` (`otherserial`),
  KEY `uuid` (`uuid`),
  KEY `date_creation` (`date_creation`),
  KEY `is_recursive` (`is_recursive`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_peripherals`
--

LOCK TABLES `glpi_peripherals` WRITE;
/*!40000 ALTER TABLE `glpi_peripherals` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_peripherals` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_peripheraltypes`
--

DROP TABLE IF EXISTS `glpi_peripheraltypes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_peripheraltypes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_peripheraltypes`
--

LOCK TABLES `glpi_peripheraltypes` WRITE;
/*!40000 ALTER TABLE `glpi_peripheraltypes` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_peripheraltypes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_phonemodels`
--

DROP TABLE IF EXISTS `glpi_phonemodels`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_phonemodels` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `product_number` varchar(255) DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  `picture_front` text DEFAULT NULL,
  `picture_rear` text DEFAULT NULL,
  `pictures` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`),
  KEY `product_number` (`product_number`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_phonemodels`
--

LOCK TABLES `glpi_phonemodels` WRITE;
/*!40000 ALTER TABLE `glpi_phonemodels` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_phonemodels` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_phonepowersupplies`
--

DROP TABLE IF EXISTS `glpi_phonepowersupplies`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_phonepowersupplies` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_phonepowersupplies`
--

LOCK TABLES `glpi_phonepowersupplies` WRITE;
/*!40000 ALTER TABLE `glpi_phonepowersupplies` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_phonepowersupplies` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_phones`
--

DROP TABLE IF EXISTS `glpi_phones`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_phones` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `name` varchar(255) DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `contact` varchar(255) DEFAULT NULL,
  `contact_num` varchar(255) DEFAULT NULL,
  `users_id_tech` int(10) unsigned NOT NULL DEFAULT 0,
  `groups_id_tech` int(10) unsigned NOT NULL DEFAULT 0,
  `comment` text DEFAULT NULL,
  `serial` varchar(255) DEFAULT NULL,
  `otherserial` varchar(255) DEFAULT NULL,
  `locations_id` int(10) unsigned NOT NULL DEFAULT 0,
  `phonetypes_id` int(10) unsigned NOT NULL DEFAULT 0,
  `phonemodels_id` int(10) unsigned NOT NULL DEFAULT 0,
  `brand` varchar(255) DEFAULT NULL,
  `phonepowersupplies_id` int(10) unsigned NOT NULL DEFAULT 0,
  `number_line` varchar(255) DEFAULT NULL,
  `have_headset` tinyint(4) NOT NULL DEFAULT 0,
  `have_hp` tinyint(4) NOT NULL DEFAULT 0,
  `manufacturers_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_global` tinyint(4) NOT NULL DEFAULT 0,
  `is_deleted` tinyint(4) NOT NULL DEFAULT 0,
  `is_template` tinyint(4) NOT NULL DEFAULT 0,
  `template_name` varchar(255) DEFAULT NULL,
  `users_id` int(10) unsigned NOT NULL DEFAULT 0,
  `groups_id` int(10) unsigned NOT NULL DEFAULT 0,
  `states_id` int(10) unsigned NOT NULL DEFAULT 0,
  `ticket_tco` decimal(20,4) DEFAULT 0.0000,
  `is_dynamic` tinyint(4) NOT NULL DEFAULT 0,
  `autoupdatesystems_id` int(10) unsigned NOT NULL DEFAULT 0,
  `uuid` varchar(255) DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `last_inventory_update` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `is_template` (`is_template`),
  KEY `is_global` (`is_global`),
  KEY `entities_id` (`entities_id`),
  KEY `manufacturers_id` (`manufacturers_id`),
  KEY `groups_id` (`groups_id`),
  KEY `users_id` (`users_id`),
  KEY `locations_id` (`locations_id`),
  KEY `phonemodels_id` (`phonemodels_id`),
  KEY `phonepowersupplies_id` (`phonepowersupplies_id`),
  KEY `states_id` (`states_id`),
  KEY `users_id_tech` (`users_id_tech`),
  KEY `phonetypes_id` (`phonetypes_id`),
  KEY `is_deleted` (`is_deleted`),
  KEY `date_mod` (`date_mod`),
  KEY `groups_id_tech` (`groups_id_tech`),
  KEY `is_dynamic` (`is_dynamic`),
  KEY `autoupdatesystems_id` (`autoupdatesystems_id`),
  KEY `serial` (`serial`),
  KEY `otherserial` (`otherserial`),
  KEY `uuid` (`uuid`),
  KEY `date_creation` (`date_creation`),
  KEY `is_recursive` (`is_recursive`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_phones`
--

LOCK TABLES `glpi_phones` WRITE;
/*!40000 ALTER TABLE `glpi_phones` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_phones` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_phonetypes`
--

DROP TABLE IF EXISTS `glpi_phonetypes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_phonetypes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_phonetypes`
--

LOCK TABLES `glpi_phonetypes` WRITE;
/*!40000 ALTER TABLE `glpi_phonetypes` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_phonetypes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_planningeventcategories`
--

DROP TABLE IF EXISTS `glpi_planningeventcategories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_planningeventcategories` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `color` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_planningeventcategories`
--

LOCK TABLES `glpi_planningeventcategories` WRITE;
/*!40000 ALTER TABLE `glpi_planningeventcategories` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_planningeventcategories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_planningexternalevents`
--

DROP TABLE IF EXISTS `glpi_planningexternalevents`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_planningexternalevents` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `uuid` varchar(255) DEFAULT NULL,
  `planningexternaleventtemplates_id` int(10) unsigned NOT NULL DEFAULT 0,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 1,
  `date` timestamp NULL DEFAULT NULL,
  `users_id` int(10) unsigned NOT NULL DEFAULT 0,
  `users_id_guests` text DEFAULT NULL,
  `groups_id` int(10) unsigned NOT NULL DEFAULT 0,
  `name` varchar(255) DEFAULT NULL,
  `text` text DEFAULT NULL,
  `begin` timestamp NULL DEFAULT NULL,
  `end` timestamp NULL DEFAULT NULL,
  `rrule` text DEFAULT NULL,
  `state` int(11) NOT NULL DEFAULT 0,
  `planningeventcategories_id` int(10) unsigned NOT NULL DEFAULT 0,
  `background` tinyint(4) NOT NULL DEFAULT 0,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `uuid` (`uuid`),
  KEY `name` (`name`),
  KEY `planningexternaleventtemplates_id` (`planningexternaleventtemplates_id`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `date` (`date`),
  KEY `begin` (`begin`),
  KEY `end` (`end`),
  KEY `users_id` (`users_id`),
  KEY `groups_id` (`groups_id`),
  KEY `state` (`state`),
  KEY `planningeventcategories_id` (`planningeventcategories_id`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_planningexternalevents`
--

LOCK TABLES `glpi_planningexternalevents` WRITE;
/*!40000 ALTER TABLE `glpi_planningexternalevents` DISABLE KEYS */;
INSERT INTO `glpi_planningexternalevents` VALUES
(1,'92f73df7-96e6-47da-8040-5b7d7b56c26a',0,0,1,'2024-12-27 20:24:14',8,'[9]',0,'Manutenção','','2024-12-29 08:30:00','2024-12-29 09:00:00','',0,0,0,'2024-12-27 20:24:14','2024-12-27 20:24:14');
/*!40000 ALTER TABLE `glpi_planningexternalevents` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_planningexternaleventtemplates`
--

DROP TABLE IF EXISTS `glpi_planningexternaleventtemplates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_planningexternaleventtemplates` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `name` varchar(255) DEFAULT NULL,
  `text` mediumtext DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `duration` int(11) NOT NULL DEFAULT 0,
  `before_time` int(11) NOT NULL DEFAULT 0,
  `rrule` text DEFAULT NULL,
  `state` int(11) NOT NULL DEFAULT 0,
  `planningeventcategories_id` int(10) unsigned NOT NULL DEFAULT 0,
  `background` tinyint(4) NOT NULL DEFAULT 0,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `entities_id` (`entities_id`),
  KEY `state` (`state`),
  KEY `planningeventcategories_id` (`planningeventcategories_id`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_planningexternaleventtemplates`
--

LOCK TABLES `glpi_planningexternaleventtemplates` WRITE;
/*!40000 ALTER TABLE `glpi_planningexternaleventtemplates` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_planningexternaleventtemplates` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_planningrecalls`
--

DROP TABLE IF EXISTS `glpi_planningrecalls`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_planningrecalls` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `items_id` int(10) unsigned NOT NULL DEFAULT 0,
  `itemtype` varchar(100) NOT NULL,
  `users_id` int(10) unsigned NOT NULL DEFAULT 0,
  `before_time` int(11) NOT NULL DEFAULT -10,
  `when` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`itemtype`,`items_id`,`users_id`),
  KEY `users_id` (`users_id`),
  KEY `before_time` (`before_time`),
  KEY `when` (`when`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_planningrecalls`
--

LOCK TABLES `glpi_planningrecalls` WRITE;
/*!40000 ALTER TABLE `glpi_planningrecalls` DISABLE KEYS */;
INSERT INTO `glpi_planningrecalls` VALUES
(1,1,'PlanningExternalEvent',8,0,'2024-12-29 08:30:00');
/*!40000 ALTER TABLE `glpi_planningrecalls` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_plugin_formcreator_answers`
--

DROP TABLE IF EXISTS `glpi_plugin_formcreator_answers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_plugin_formcreator_answers` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `plugin_formcreator_formanswers_id` int(10) unsigned NOT NULL DEFAULT 0,
  `plugin_formcreator_questions_id` int(10) unsigned NOT NULL DEFAULT 0,
  `answer` longtext DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `plugin_formcreator_formanswers_id` (`plugin_formcreator_formanswers_id`),
  KEY `plugin_formcreator_questions_id` (`plugin_formcreator_questions_id`)
) ENGINE=InnoDB AUTO_INCREMENT=279 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_plugin_formcreator_answers`
--

LOCK TABLES `glpi_plugin_formcreator_answers` WRITE;
/*!40000 ALTER TABLE `glpi_plugin_formcreator_answers` DISABLE KEYS */;
INSERT INTO `glpi_plugin_formcreator_answers` VALUES
(29,7,3,'Lentidão'),
(30,7,1,'jose.carmo@tecnomulti.com'),
(31,7,2,'81 8695-4083'),
(32,7,6,'1'),
(33,7,5,'<p>O notebook não está abrindo mais de 2 </p>'),
(34,8,3,'Problema no email.'),
(35,8,1,'jayana.monte@tecnomulti.com'),
(36,8,2,'81996609102'),
(37,8,6,'3'),
(38,8,5,'<p>Recebi um email falando sobre a conta de email está cheia, porém não tem muita coisa no email.</p>'),
(39,9,3,'Eu já desinstalei o aplicativo da impressora e já instalei novamente e a impressora não conecta'),
(40,9,1,'karla.minelly@tecnomulti.com'),
(41,9,2,'83988277027'),
(42,9,6,'1'),
(43,9,5,'<p>Eu já desinstalei o aplicativo da impressora e já instalei novamente e a impressora não conecta</p>'),
(44,10,3,'KARLA KINELLY DE AQUINO ALEXANDRE'),
(45,10,1,'karla.minelly@tecnomulti.com'),
(46,10,2,'83988277027'),
(47,10,6,'1'),
(48,10,5,'<p>A IMPRESSORA NÃO CONECTA AO APLICATIVO INSTADO. JÁ DESINSTELEI E INSTALEI O APLICATIVO, MESMO ASSIM NÃO CONECTA.</p>'),
(49,11,3,'Instalação de vpn'),
(50,11,1,'gilberto.silva@tecnomulti.com'),
(51,11,2,'81991391898'),
(52,11,6,'5'),
(53,11,5,'<p>Instalação de vpn</p>\r\n<p> </p>\r\n<p> </p>'),
(54,12,3,'CAIXA DE EMAIL CHEIA '),
(55,12,1,'graciane.coelho@tecnomulti.com'),
(56,12,2,'81986981633'),
(57,12,6,'3'),
(58,12,5,'&#60;p&#62;#ec3ac8cc-b2d8e96f-678e5833761ee6.52395438#&#60;/p&#62;'),
(59,13,3,'Erro navegador'),
(60,13,1,'suporte@tecnomulti.com'),
(61,13,2,'84998426881'),
(62,13,6,'2'),
(63,13,5,'&#60;p&#62;Não está abrindo pagina xxx.xxxx&#60;/p&#62;\\r\\n&#60;p&#62;#ec3ac8cc-b2d8e96f-678ee7e6eb9177.72480582#&#60;/p&#62;'),
(64,14,3,'CONECTAR IMPRESSORA NO PC'),
(65,14,1,'lucia.gomes@tecnomulti.com'),
(66,14,2,'83999075161'),
(67,14,6,'1'),
(68,14,5,'&#60;p&#62;Quando tento imprimir abre essa aba nos documentos #ec3ac8cc-b2d8e96f-678f840b8e9a32.37877242#&#60;/p&#62;'),
(69,15,3,'Expansão - Memória interna ssd + RAM'),
(70,15,1,'arthur.abreu@tecnomulti.com'),
(71,15,2,'84 999460068'),
(72,15,6,'1'),
(73,15,5,'&#60;p&#62;A memória interna do notebook está topado, e juntamente disso, a memoria RAM está sempre em seu uso total (imagem abaixo), e acredito que seja a junção desses fatores que estão ocasionando travamentos e fechamentos de relatórios, assim como limitando o usos de alguns recursos dos mesmos e outros programas.&#60;br&#62;&#60;br&#62;#ec3ac8cc-b2d8e96f-678f9ac07b0fe6.57690040#&#60;/p&#62;'),
(74,16,3,'Excell'),
(75,16,1,'Gerson.Lima@tecnimulti.com'),
(76,16,2,'71992750348'),
(77,16,6,'5'),
(78,16,5,'<p>Excell com problema, expirou  </p>'),
(79,17,3,'Caixa de Email Cheia'),
(80,17,1,'vinicius.silveira@tecnomulti.com'),
(81,17,2,'84 99104-6460'),
(82,17,6,'3'),
(83,17,5,'&#60;p&#62;Caixa de E-mail cheia&#60;br&#62;#ec3ac8cc-b2d8e96f-6790cfd5928179.61613302#&#60;/p&#62;'),
(84,18,3,'Notebook perdendo sinal de Wi FI'),
(85,18,1,'arthur.abreu@tecnomulti.com'),
(86,18,2,'84 999460068'),
(87,18,6,'1'),
(88,18,5,'<p>Wi fi do computador perde conectividade com a rede e deixa de enxergar as redes disponíveis no local.</p>'),
(89,19,3,'SAP COM PROBLEMA '),
(90,19,1,'anacristina.araujo@tecnomulti.com'),
(91,19,2,'83 996110690'),
(92,19,6,'2'),
(93,19,5,'<p>SEM ACESSO AO SAP - JÁ LIMPEI CACHE - REINICIEI E NADA </p>\r\n<p> </p>'),
(94,20,3,'CAIXA DE EMAIL CHEIA '),
(95,20,1,'graciane.coelho@tecnomulti.com'),
(96,20,2,'81986981633'),
(97,20,6,'3'),
(98,20,5,'<p>CAIXA DE EMAIL CHEIAS</p>'),
(99,21,3,'CAIXA DE EMAIL CHEIA '),
(100,21,1,'graciane.coelho@tecnomulti.com'),
(101,21,2,'81986981633'),
(102,21,6,'3'),
(103,21,5,'<p>e-mail com problema </p>'),
(104,22,3,'OSP control não está abrindo e ativar o e-mail '),
(105,22,1,'selma.belizario@tecnomulti.com'),
(106,22,2,'83 98808-8867'),
(107,22,6,'4'),
(108,22,5,'<p>toda vez que tento acessar o OSP Control aparece a mensagem: ops, algo deu errado. Por favor, tente novamente. Consigo acessar em outo notebook, mas no meu não acessa. </p>\r\n<p>Também preciso que o meu e-mail seja migrado do notebook anterior, para o que estou utilizado agora.</p>'),
(109,23,3,'GOOGLE HEART'),
(110,23,1,'gerson.lima@tecnomulti.com'),
(111,23,2,'71992750348'),
(112,23,6,'5'),
(113,23,5,'<p>google heart com erro, necessário reinstalar </p>'),
(114,24,3,'PASTA DE REDE / FROTA'),
(115,24,1,'monalisa.furtado@tecnomulti.com'),
(116,24,2,'84988112339'),
(117,24,6,'5'),
(118,24,5,'<p>Monalisa: 368905108</p>'),
(119,25,3,'PASTA DE REDE / FROTA'),
(120,25,1,'monalisa.furtado@tecnomulti.com'),
(121,25,2,'84988112339'),
(122,25,6,'5'),
(123,25,5,'<p>Monalisa: 368 905 108</p>\r\n<p> </p>'),
(124,26,3,'PASTA FROTA'),
(125,26,1,'laryssa.felix@tecnomulti.com'),
(126,26,2,'84988112339'),
(127,26,6,'5'),
(128,26,5,'<p>ANYDESK: 1050 655 391</p>'),
(129,27,3,'PASTA DE REDE / FROTA'),
(130,27,1,'joaopaulo.leite@tecnomulti.com'),
(131,27,2,'81 98584-2246'),
(132,27,6,'2'),
(133,27,5,'<p>ANYDESK: 723335506</p>'),
(134,28,3,'PASTA DE REDE / FROTA'),
(135,28,1,'arthur.abreu@tecnomulti.com'),
(136,28,2,'84 9946-0068'),
(137,28,6,'2'),
(138,28,5,'<p>Anydesk: 1 307 766 794</p>'),
(139,29,3,'PASTA DE REDE / FROTA'),
(140,29,1,'gilmar.lourenco@tecnomulti.com'),
(141,29,2,'84 99946-0230'),
(142,29,6,'2'),
(143,29,5,'<p>ANYDESK: 777746514</p>'),
(144,30,3,'Configurar o SAP '),
(145,30,1,'jose.carmo@tecnomulti.com'),
(146,30,2,'81986954083'),
(147,30,6,'4'),
(148,30,5,'<p>Preciso urgentemente que configure minha conta nova do Sap nessa maquina. </p>'),
(149,31,3,'CONECTAR IMPRESSORA NO PC'),
(150,31,1,'elton.jorge@tecnomulti.com'),
(151,31,2,'+55 83 8199-1245'),
(152,31,6,'1'),
(153,31,5,'<p>erro ao tentar impressão</p>'),
(154,32,3,'Caixa de E-mail Lotada'),
(155,32,1,'vinicius.silveira@tecnomulti.com'),
(156,32,2,'84 99104-6460'),
(157,32,6,'3'),
(158,32,5,'<p>Caixa Lotada</p>'),
(159,33,3,'teste'),
(160,33,1,'test@test.com'),
(161,33,2,'84982212329'),
(162,33,6,'1'),
(163,33,5,'<p>asd</p>'),
(164,34,3,'Email - Alexandre Onassis'),
(165,34,1,'geimisson.marques@tecnomulti.com'),
(166,34,2,'81 983240445'),
(167,34,6,'3'),
(168,34,5,'<p>Configuração primeiro acesso ao email do coordenador Alexandre Onassis </p>'),
(169,35,3,'configurar VPN'),
(170,35,1,'Sebastiao.clesio@tecnomulti.com'),
(171,35,2,'84991007542'),
(172,35,6,'2'),
(173,35,5,'<p>bom dia.</p>\r\n<p>conforme ja alinhado e autorizado por Paula. cadastrar a VPN no PC.   </p>'),
(174,36,3,'sistema sap não fica com o acesso'),
(175,36,1,'lorenalarissa88@gmail.com'),
(176,36,2,' 81 9402-7371'),
(177,36,6,'5'),
(178,36,5,'<p>não consigo acessar o sistema</p>\r\n<p>anydesk  1 763 954 787</p>'),
(179,37,3,'PROBLEMA AO ACESSAR SAP / CITRIX'),
(180,37,1,'lanna1457@gmail.com'),
(181,37,2,'83999075161'),
(182,37,6,'5'),
(183,37,5,'&#60;p&#62;NÃO CONSIGO ACESSAR O SAP NEM O CITRIX - PORÉM UMA COLEGA CONSEGUIU ACESSAR PELO MESMO LINK E MESMA SENHA #ec3ac8cc-b2d8e96f-679b81f077f908.68527211#&#60;/p&#62;'),
(184,38,3,'EMAIL'),
(185,38,1,'flavia.chagas@tecnomulti.com'),
(186,38,2,' 84 8831-7787'),
(187,38,6,'3'),
(188,38,5,'<p>Meus emails não está saindo da caixa!</p>'),
(189,39,3,'INSTALAR NOBREAK'),
(190,39,1,'denilson.marques@tecnomulti.com'),
(191,39,2,'84999811377'),
(192,39,6,'1'),
(193,39,5,'<p>equipamento para instalação disponivel.</p>'),
(194,40,3,'VPN com problema'),
(195,40,1,'arthur.ulisses@tecnomulti.com'),
(196,40,2,'85992155440'),
(197,40,6,'2'),
(198,40,5,'<p>VPN aparenta estar muito lento, impossibilitando o trabalho.</p>'),
(199,41,3,'VPN FIBRASIL'),
(200,41,1,'danielle.silva@tecnomulti.com'),
(201,41,2,' 81 99256-9899'),
(202,41,6,'5'),
(203,41,5,'<p>A VPN da Fibrasil aprensentando erro ao acesso . </p>'),
(204,42,3,'Erro Envio de mensagens '),
(205,42,1,'mario.lopes@tecnomulti.com'),
(206,42,2,'83993220200'),
(207,42,6,'3'),
(208,42,5,'<p>\"Esta mensagem foi criada automaticamente pelo software de entrega de correio.</p>\r\n<p> </p>\r\n<p>Uma mensagem que você enviou não pôde ser entregue a um ou mais destinatários. Este é um erro permanente. Os seguintes endereços falharam:\"</p>'),
(209,43,3,'Erro Envio de mensagens '),
(210,43,1,'mario.lopes@tecnomulti.com'),
(211,43,2,'83993220200'),
(212,43,6,'3'),
(213,43,5,'<p>This message was created automatically by mail delivery software.</p>\r\n<p> </p>\r\n<p>A message that you sent could not be delivered to one or more of its recipients. This is a permanent error. The following address(es) failed:</p>\r\n<p> </p>\r\n<p>  alexcruzfab@hotmail.com</p>\r\n<p>    host eig-east.smtp.a.cloudfilter.net [3.228.35.199]</p>\r\n<p>    SMTP error from remote mail server after end of data:</p>\r\n<p>    550 Connection Rejected - see http://www.spamhaus.org/query/ip/168.196.197.55 AUP#BL</p>\r\n<p>  alexcruzfab@gmail.com</p>\r\n<p>    host eig-east.smtp.a.cloudfilter.net [18.215.58.191]</p>\r\n<p>    SMTP error from remote mail server after end of data:</p>\r\n<p>    550 Connection Rejected - see http://www.spamhaus.org/query/ip/168.196.197.55 AUP#BL</p>'),
(214,44,3,'VPN'),
(215,44,1,'fabiano.melo@tecnomulti.com'),
(216,44,2,'81988187688'),
(217,44,6,'2'),
(218,44,5,'<p>ACESSO A VPN </p>'),
(219,45,3,'INSTALAÇÃO VPN TECNOMULTI'),
(220,45,1,'danielle.silva@tecnomulti.com'),
(221,45,2,'81 99293-6741'),
(222,45,6,'5'),
(223,45,5,'<p>Instalação da VPN Tecnomulti. </p>'),
(224,46,3,'PASTA FROTA'),
(225,46,1,'fabio.jackson@tecnomulti.com'),
(226,46,2,'83986500039'),
(227,46,6,'2'),
(228,46,5,'<p>favor  configurar acesso para Pasta Frotas </p>'),
(229,47,3,'EMAIL / EXCEL / POWER POINT'),
(230,47,1,'amanda.moreira@tecnomulti.com'),
(231,47,2,'(84)98753-9247'),
(232,47,6,'3'),
(233,47,5,'<p>Não consigo enviar, nem responder emails. Apenas recebo.</p>\r\n<p>Excel, power point e word, apenas abre, não consigo mexer nele. Mostra um aviso informando que \"Está cópia do Microsoft office não está ativada. </p>'),
(234,48,3,'sistema sap não fica com o acesso'),
(235,48,1,'lorenalarissa88@gmail.com'),
(236,48,2,'81988648578'),
(237,48,6,'5'),
(238,48,5,'<p>não consigo usar o sistema funciona em outro e no  meu a senha e login não fica.</p>'),
(239,49,3,'PASTA FROTA'),
(240,49,1,'joao.ferreira@tecnomulti.com'),
(241,49,2,'81 992588071'),
(242,49,6,'2'),
(243,49,5,'<p>Favor criar acesso a pasta Frota</p>'),
(244,50,3,'Acesso Sistema '),
(245,50,1,'michele.souza@tecnomulti.com'),
(246,50,2,'8198555-5446'),
(247,50,6,'5'),
(248,50,5,'<p>Mudanca de setor, nao estou consiguindo acessa Vicky, Sap, OSPCONTROL </p>'),
(249,51,3,'ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK'),
(250,51,1,'gilmar.lourenco@tecnomulti.com'),
(251,51,2,'84988113027'),
(252,51,6,'3'),
(253,51,5,'<p>O progresso do Outlook indica o recebimento dos e-mails, porém, nada aparece na caixa de entrada, nem nas pastas com regras.</p>'),
(254,52,3,'edson maykon'),
(255,52,1,'edson.maykon@tecnomulti.com.pst'),
(256,52,2,'84 987026218'),
(257,52,6,'3'),
(258,52,5,'<p>nao estou tendo acesso e meu e-mail  edson.maykon@tecnomulti.com.pst</p>'),
(259,53,3,'INSTALAR E-MAIL OUTLOOK'),
(260,53,1,'bruno.ciriaco@tecnomulti.com'),
(261,53,2,'85981013501'),
(262,53,6,'3'),
(263,53,5,'<p>Bom dia configurar o outlook e instalar o DWG. </p>'),
(264,54,3,'não consigo acessar meu outlook'),
(265,54,1,'aprendiz.recifela@tecnomult.com'),
(266,54,2,'81 986981633'),
(267,54,6,'3'),
(268,54,5,'&#60;p&#62;#47cb7c5c-b2d8e96f-67b4c9ad2804d1.68109059#&#60;/p&#62;'),
(269,55,3,'CHAMADO RAYLLA'),
(270,55,1,'raylla.vitoria@tecnomulti.com'),
(271,55,2,'84988082753'),
(272,55,6,'3'),
(273,55,5,'<p>Boa tarde, Alex!<br>Não consigo rever emails antigos nem enviados.</p>'),
(274,56,3,'TROCA DE NOTEBOOK'),
(275,56,1,'evelyn.azevedo@tecnomulti.com'),
(276,56,2,'84981052542'),
(277,56,6,'5'),
(278,56,5,'<p>Troca de notebook, liberar acessos.</p>');
/*!40000 ALTER TABLE `glpi_plugin_formcreator_answers` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_plugin_formcreator_categories`
--

DROP TABLE IF EXISTS `glpi_plugin_formcreator_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_plugin_formcreator_categories` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL DEFAULT '',
  `comment` mediumtext DEFAULT NULL,
  `completename` varchar(255) DEFAULT NULL,
  `plugin_formcreator_categories_id` int(10) unsigned NOT NULL DEFAULT 0,
  `level` int(11) NOT NULL DEFAULT 1,
  `sons_cache` longtext DEFAULT NULL,
  `ancestors_cache` longtext DEFAULT NULL,
  `knowbaseitemcategories_id` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `knowbaseitemcategories_id` (`knowbaseitemcategories_id`),
  KEY `plugin_formcreator_categories_id` (`plugin_formcreator_categories_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_plugin_formcreator_categories`
--

LOCK TABLES `glpi_plugin_formcreator_categories` WRITE;
/*!40000 ALTER TABLE `glpi_plugin_formcreator_categories` DISABLE KEYS */;
INSERT INTO `glpi_plugin_formcreator_categories` VALUES
(1,'Chamado','','Chamado',0,1,'{\"1\":1}','[]',0);
/*!40000 ALTER TABLE `glpi_plugin_formcreator_categories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_plugin_formcreator_conditions`
--

DROP TABLE IF EXISTS `glpi_plugin_formcreator_conditions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_plugin_formcreator_conditions` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `itemtype` varchar(255) NOT NULL DEFAULT '' COMMENT 'itemtype of the item affected by the condition',
  `items_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'item ID of the item affected by the condition',
  `plugin_formcreator_questions_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'question to test for the condition',
  `show_condition` int(11) NOT NULL DEFAULT 0,
  `show_value` mediumtext DEFAULT NULL,
  `show_logic` int(11) NOT NULL DEFAULT 1,
  `order` int(11) NOT NULL DEFAULT 1,
  `uuid` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `plugin_formcreator_questions_id` (`plugin_formcreator_questions_id`),
  KEY `item` (`itemtype`,`items_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_plugin_formcreator_conditions`
--

LOCK TABLES `glpi_plugin_formcreator_conditions` WRITE;
/*!40000 ALTER TABLE `glpi_plugin_formcreator_conditions` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_plugin_formcreator_conditions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_plugin_formcreator_entityconfigs`
--

DROP TABLE IF EXISTS `glpi_plugin_formcreator_entityconfigs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_plugin_formcreator_entityconfigs` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `replace_helpdesk` int(11) NOT NULL DEFAULT -2,
  `default_form_list_mode` int(11) NOT NULL DEFAULT -2,
  `sort_order` int(11) NOT NULL DEFAULT -2,
  `is_kb_separated` int(11) NOT NULL DEFAULT -2,
  `is_search_visible` int(11) NOT NULL DEFAULT -2,
  `is_dashboard_visible` int(11) NOT NULL DEFAULT -2,
  `is_header_visible` int(11) NOT NULL DEFAULT -2,
  `is_search_issue_visible` int(11) NOT NULL DEFAULT -2,
  `tile_design` int(11) NOT NULL DEFAULT -2,
  `header` text DEFAULT NULL,
  `service_catalog_home` int(11) NOT NULL DEFAULT -2,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`entities_id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_plugin_formcreator_entityconfigs`
--

LOCK TABLES `glpi_plugin_formcreator_entityconfigs` WRITE;
/*!40000 ALTER TABLE `glpi_plugin_formcreator_entityconfigs` DISABLE KEYS */;
INSERT INTO `glpi_plugin_formcreator_entityconfigs` VALUES
(1,2,-2,-2,-2,-2,-2,-2,-2,-2,-2,NULL,-2),
(2,0,0,0,0,0,0,1,0,1,0,NULL,-2),
(3,3,-2,-2,-2,-2,-2,-2,-2,-2,-2,'',-2);
/*!40000 ALTER TABLE `glpi_plugin_formcreator_entityconfigs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_plugin_formcreator_formanswers`
--

DROP TABLE IF EXISTS `glpi_plugin_formcreator_formanswers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_plugin_formcreator_formanswers` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL DEFAULT '',
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(1) NOT NULL DEFAULT 0,
  `plugin_formcreator_forms_id` int(10) unsigned NOT NULL DEFAULT 0,
  `requester_id` int(10) unsigned NOT NULL DEFAULT 0,
  `users_id_validator` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'User in charge of validation',
  `groups_id_validator` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Group in charge of validation',
  `request_date` timestamp NULL DEFAULT NULL,
  `status` int(11) NOT NULL DEFAULT 101,
  `comment` mediumtext DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `plugin_formcreator_forms_id` (`plugin_formcreator_forms_id`),
  KEY `entities_id_is_recursive` (`entities_id`,`is_recursive`),
  KEY `requester_id` (`requester_id`),
  KEY `users_id_validator` (`users_id_validator`),
  KEY `groups_id_validator` (`groups_id_validator`)
) ENGINE=InnoDB AUTO_INCREMENT=57 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_plugin_formcreator_formanswers`
--

LOCK TABLES `glpi_plugin_formcreator_formanswers` WRITE;
/*!40000 ALTER TABLE `glpi_plugin_formcreator_formanswers` DISABLE KEYS */;
INSERT INTO `glpi_plugin_formcreator_formanswers` VALUES
(7,'Novo chamado',2,1,1,9,0,0,'2025-01-16 10:59:30',6,''),
(8,'Novo chamado',2,1,1,9,0,0,'2025-01-17 14:47:06',6,''),
(9,'Novo chamado',2,1,1,9,0,0,'2025-01-17 18:01:10',6,''),
(10,'karla.minelly@tecnomulti.com',2,1,1,9,0,0,'2025-01-20 11:22:02',6,''),
(11,'gilberto.silva@tecnomulti.com',2,1,1,9,0,0,'2025-01-20 13:39:01',6,''),
(12,'graciane.coelho@tecnomulti.com',2,1,1,9,0,0,'2025-01-20 14:05:41',6,''),
(13,'suporte@tecnomulti.com',2,1,1,9,0,0,'2025-01-21 00:18:58',6,''),
(14,'lucia.gomes@tecnomulti.com',2,1,1,9,0,0,'2025-01-21 11:27:28',6,''),
(15,'arthur.abreu@tecnomulti.com',2,1,1,9,0,0,'2025-01-21 13:02:41',6,''),
(16,'Gerson.Lima@tecnimulti.com',2,1,1,9,0,0,'2025-01-21 13:50:24',6,''),
(17,'vinicius.silveira@tecnomulti.com',2,1,1,9,0,0,'2025-01-22 11:00:46',6,''),
(18,'arthur.abreu@tecnomulti.com',2,1,1,9,0,0,'2025-01-22 11:12:01',6,''),
(19,'anacristina.araujo@tecnomulti.com',2,1,1,9,0,0,'2025-01-23 13:02:02',6,''),
(20,'graciane.coelho@tecnomulti.com',2,1,1,9,0,0,'2025-01-27 18:40:14',6,''),
(21,'graciane.coelho@tecnomulti.com',2,1,1,9,0,0,'2025-01-28 11:11:21',6,''),
(22,'selma.belizario@tecnomulti.com',2,1,1,9,0,0,'2025-01-28 12:39:13',6,''),
(23,'gerson.lima@tecnomulti.com',2,1,1,9,0,0,'2025-01-28 13:46:40',6,''),
(24,'monalisa.furtado@tecnomulti.com',2,1,1,9,0,0,'2025-01-28 13:53:54',6,''),
(25,'monalisa.furtado@tecnomulti.com',2,1,1,9,0,0,'2025-01-28 13:59:04',6,''),
(26,'laryssa.felix@tecnomulti.com',2,1,1,9,0,0,'2025-01-28 14:02:27',6,''),
(27,'joaopaulo.leite@tecnomulti.com',2,1,1,9,0,0,'2025-01-28 14:04:55',6,''),
(28,'arthur.abreu@tecnomulti.com',2,1,1,9,0,0,'2025-01-28 14:06:03',6,''),
(29,'gilmar.lourenco@tecnomulti.com',2,1,1,9,0,0,'2025-01-28 14:16:01',6,''),
(30,'jose.carmo@tecnomulti.com',2,1,1,9,0,0,'2025-01-28 14:31:35',6,''),
(31,'elton.jorge@tecnomulti.com',2,1,1,9,0,0,'2025-01-28 15:12:53',6,''),
(32,'vinicius.silveira@tecnomulti.com',2,1,1,9,0,0,'2025-01-28 18:47:27',6,''),
(33,'test@test.com',2,1,1,9,0,0,'2025-01-29 02:56:40',6,''),
(34,'geimisson.marques@tecnomulti.com',2,1,1,9,0,0,'2025-01-29 11:52:14',6,''),
(35,'Sebastiao.clesio@tecnomulti.com',2,1,1,9,0,0,'2025-01-29 11:59:27',6,''),
(36,'lorenalarissa88@gmail.com',2,1,1,9,0,0,'2025-01-30 11:24:45',6,''),
(37,'lanna1457@gmail.com',2,1,1,9,0,0,'2025-01-30 13:44:22',6,''),
(38,'flavia.chagas@tecnomulti.com',2,1,1,9,0,0,'2025-01-30 17:53:59',6,''),
(39,'denilson.marques@tecnomulti.com',2,1,1,9,0,0,'2025-01-30 18:41:10',3,''),
(40,'arthur.ulisses@tecnomulti.com',2,1,1,9,0,0,'2025-02-03 13:18:39',6,''),
(41,'danielle.silva@tecnomulti.com',2,1,1,9,0,0,'2025-02-03 17:21:14',6,''),
(42,'mario.lopes@tecnomulti.com',2,1,1,9,0,0,'2025-02-03 17:44:33',6,''),
(43,'mario.lopes@tecnomulti.com',2,1,1,9,0,0,'2025-02-03 20:21:54',6,''),
(44,'fabiano.melo@tecnomulti.com',2,1,1,9,0,0,'2025-02-04 18:37:10',6,''),
(45,'danielle.silva@tecnomulti.com',2,1,1,9,0,0,'2025-02-04 18:43:15',6,''),
(46,'fabio.jackson@tecnomulti.com',2,1,1,9,0,0,'2025-02-07 14:16:50',6,''),
(47,'amanda.moreira@tecnomulti.com',2,1,1,9,0,0,'2025-02-10 11:16:41',6,''),
(48,'lorenalarissa88@gmail.com',2,1,1,9,0,0,'2025-02-11 12:02:54',6,''),
(49,'joao.ferreira@tecnomulti.com',2,1,1,9,0,0,'2025-02-11 12:41:34',6,''),
(50,'michele.souza@tecnomulti.com',2,1,1,9,0,0,'2025-02-11 15:10:17',6,''),
(51,'gilmar.lourenco@tecnomulti.com',2,1,1,9,0,0,'2025-02-12 11:56:10',6,''),
(52,'edson.maykon@tecnomulti.com.pst',2,1,1,9,0,0,'2025-02-17 11:36:06',2,''),
(53,'bruno.ciriaco@tecnomulti.com',2,1,1,9,0,0,'2025-02-17 12:35:59',2,''),
(54,'aprendiz.recifela@tecnomult.com',2,1,1,9,0,0,'2025-02-18 17:56:01',2,''),
(55,'raylla.vitoria@tecnomulti.com',2,1,1,9,0,0,'2025-02-18 17:56:26',2,''),
(56,'evelyn.azevedo@tecnomulti.com',2,1,1,9,0,0,'2025-02-18 18:48:25',1,'');
/*!40000 ALTER TABLE `glpi_plugin_formcreator_formanswers` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_plugin_formcreator_forms`
--

DROP TABLE IF EXISTS `glpi_plugin_formcreator_forms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_plugin_formcreator_forms` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL DEFAULT '',
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(1) NOT NULL DEFAULT 0,
  `icon` varchar(255) NOT NULL DEFAULT '',
  `icon_color` varchar(255) NOT NULL DEFAULT '',
  `background_color` varchar(255) NOT NULL DEFAULT '',
  `access_rights` tinyint(1) NOT NULL DEFAULT 1,
  `description` varchar(255) DEFAULT NULL,
  `content` longtext DEFAULT NULL,
  `plugin_formcreator_categories_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_active` tinyint(1) NOT NULL DEFAULT 0,
  `language` varchar(255) NOT NULL DEFAULT '',
  `helpdesk_home` tinyint(1) NOT NULL DEFAULT 0,
  `is_deleted` tinyint(1) NOT NULL DEFAULT 0,
  `validation_required` tinyint(1) NOT NULL DEFAULT 0,
  `usage_count` int(11) NOT NULL DEFAULT 0,
  `is_default` tinyint(1) NOT NULL DEFAULT 0,
  `is_captcha_enabled` tinyint(1) NOT NULL DEFAULT 0,
  `show_rule` int(11) NOT NULL DEFAULT 1 COMMENT 'Conditions setting to show the submit button',
  `formanswer_name` varchar(255) NOT NULL DEFAULT '',
  `is_visible` tinyint(4) NOT NULL DEFAULT 1,
  `uuid` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `entities_id` (`entities_id`),
  KEY `plugin_formcreator_categories_id` (`plugin_formcreator_categories_id`),
  FULLTEXT KEY `Search` (`name`,`description`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_plugin_formcreator_forms`
--

LOCK TABLES `glpi_plugin_formcreator_forms` WRITE;
/*!40000 ALTER TABLE `glpi_plugin_formcreator_forms` DISABLE KEYS */;
INSERT INTO `glpi_plugin_formcreator_forms` VALUES
(1,'Abertura de chamado',0,1,'fas fa-ticket-alt','#999999','#e7e7e7',1,'','',1,1,'pt_BR',1,0,0,56,1,0,1,'##answer_1##',1,'796eb77d-aa543a3a-6781930f665063.21145476');
/*!40000 ALTER TABLE `glpi_plugin_formcreator_forms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_plugin_formcreator_forms_groups`
--

DROP TABLE IF EXISTS `glpi_plugin_formcreator_forms_groups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_plugin_formcreator_forms_groups` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `plugin_formcreator_forms_id` int(10) unsigned NOT NULL,
  `groups_id` int(10) unsigned NOT NULL,
  `uuid` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`plugin_formcreator_forms_id`,`groups_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_plugin_formcreator_forms_groups`
--

LOCK TABLES `glpi_plugin_formcreator_forms_groups` WRITE;
/*!40000 ALTER TABLE `glpi_plugin_formcreator_forms_groups` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_plugin_formcreator_forms_groups` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_plugin_formcreator_forms_languages`
--

DROP TABLE IF EXISTS `glpi_plugin_formcreator_forms_languages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_plugin_formcreator_forms_languages` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `plugin_formcreator_forms_id` int(10) unsigned NOT NULL DEFAULT 0,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `uuid` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_plugin_formcreator_forms_languages`
--

LOCK TABLES `glpi_plugin_formcreator_forms_languages` WRITE;
/*!40000 ALTER TABLE `glpi_plugin_formcreator_forms_languages` DISABLE KEYS */;
INSERT INTO `glpi_plugin_formcreator_forms_languages` VALUES
(1,1,'pt_BR','','796eb77d-aa543a3a-67884f7286df51.83536989');
/*!40000 ALTER TABLE `glpi_plugin_formcreator_forms_languages` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_plugin_formcreator_forms_profiles`
--

DROP TABLE IF EXISTS `glpi_plugin_formcreator_forms_profiles`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_plugin_formcreator_forms_profiles` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `plugin_formcreator_forms_id` int(10) unsigned NOT NULL DEFAULT 0,
  `profiles_id` int(10) unsigned NOT NULL DEFAULT 0,
  `uuid` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`plugin_formcreator_forms_id`,`profiles_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_plugin_formcreator_forms_profiles`
--

LOCK TABLES `glpi_plugin_formcreator_forms_profiles` WRITE;
/*!40000 ALTER TABLE `glpi_plugin_formcreator_forms_profiles` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_plugin_formcreator_forms_profiles` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_plugin_formcreator_forms_users`
--

DROP TABLE IF EXISTS `glpi_plugin_formcreator_forms_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_plugin_formcreator_forms_users` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `plugin_formcreator_forms_id` int(10) unsigned NOT NULL,
  `users_id` int(10) unsigned NOT NULL,
  `uuid` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`plugin_formcreator_forms_id`,`users_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_plugin_formcreator_forms_users`
--

LOCK TABLES `glpi_plugin_formcreator_forms_users` WRITE;
/*!40000 ALTER TABLE `glpi_plugin_formcreator_forms_users` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_plugin_formcreator_forms_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_plugin_formcreator_forms_validators`
--

DROP TABLE IF EXISTS `glpi_plugin_formcreator_forms_validators`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_plugin_formcreator_forms_validators` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `plugin_formcreator_forms_id` int(10) unsigned NOT NULL DEFAULT 0,
  `itemtype` varchar(255) NOT NULL DEFAULT '',
  `items_id` int(10) unsigned NOT NULL DEFAULT 0,
  `uuid` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`plugin_formcreator_forms_id`,`itemtype`,`items_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_plugin_formcreator_forms_validators`
--

LOCK TABLES `glpi_plugin_formcreator_forms_validators` WRITE;
/*!40000 ALTER TABLE `glpi_plugin_formcreator_forms_validators` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_plugin_formcreator_forms_validators` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_plugin_formcreator_issues`
--

DROP TABLE IF EXISTS `glpi_plugin_formcreator_issues`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_plugin_formcreator_issues` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `display_id` varchar(255) NOT NULL,
  `items_id` int(10) unsigned NOT NULL DEFAULT 0,
  `itemtype` varchar(255) NOT NULL DEFAULT '',
  `status` varchar(255) NOT NULL DEFAULT '',
  `date_creation` timestamp NULL DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(1) NOT NULL DEFAULT 0,
  `requester_id` int(10) unsigned NOT NULL DEFAULT 0,
  `comment` longtext DEFAULT NULL,
  `users_id_recipient` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `item` (`itemtype`,`items_id`),
  KEY `entities_id` (`entities_id`),
  KEY `requester_id` (`requester_id`)
) ENGINE=InnoDB AUTO_INCREMENT=77 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_plugin_formcreator_issues`
--

LOCK TABLES `glpi_plugin_formcreator_issues` WRITE;
/*!40000 ALTER TABLE `glpi_plugin_formcreator_issues` DISABLE KEYS */;
INSERT INTO `glpi_plugin_formcreator_issues` VALUES
(1,'Sem internet ','t_17',17,'Ticket','6','2025-01-07 13:39:34','2025-01-08 12:28:46',2,0,9,'&#60;p&#62;Telefone: &#60;a href=\"tel:84999811377\"&#62;84999811377&#60;/a&#62;&#60;/p&#62;\n&#60;p&#62;E-mail: Denílson.marques@tecnomtuli.com&#60;/p&#62;',9),
(2,'Não envio de e-mail','t_18',18,'Ticket','6','2025-01-07 13:56:33','2025-01-07 13:58:07',2,0,9,'&#60;p&#62;Telefone: 8199405-5418&#60;/p&#62;\n&#60;p&#62;E-mail: palloma.ferreira@tecnomulti.com&#60;/p&#62;\n&#60;p&#62;&#60;strong&#62;E-mail não esta enviando e-mails&#60;/strong&#62;&#60;/p&#62;',9),
(3,'email tecnomulti ','t_19',19,'Ticket','6','2025-01-08 09:38:38','2025-01-10 00:56:50',2,0,9,'&#60;p&#62;Telefone: 81 992936741&#60;/p&#62;\n&#60;p&#62;E-mail:fabiano.melo@tecnomulti.com&#60;/p&#62;\n&#60;p&#62;gostaria de colocar o email da empresa em telefone IOS &#60;/p&#62;',9),
(4,'ERRO PARA ACESSAR O SAP','t_20',20,'Ticket','6','2025-01-08 13:21:24','2025-01-08 13:36:39',2,0,9,'&#60;p&#62;Telefone: 83 99907-5161&#60;/p&#62;\n&#60;p&#62;E-mail: lucia.gomes@tecnomulti.com&#60;/p&#62;',9),
(5,'Instalação de office 2022','t_21',21,'Ticket','6','2025-01-08 16:36:37','2025-01-08 20:42:50',2,0,9,'&#60;p&#62;Telefone: 85 992080037&#60;/p&#62;\n&#60;p&#62;E-mail: aurelio.matos.for@gmail.com&#60;/p&#62;\n&#60;p&#62;Instalação de office 2022&#60;/p&#62;',9),
(6,'Instalação Microsoft 365','t_22',22,'Ticket','6','2025-01-09 17:57:23','2025-01-10 00:55:36',2,0,9,'&#60;p&#62;Telefone: 84999460230&#60;/p&#62;\n&#60;p&#62;E-mail: gilmar.lourenco@tecnomulti.com&#60;/p&#62;',9),
(7,'Caixa de Email Lotada','t_23',23,'Ticket','6','2025-01-09 18:02:47','2025-01-13 11:40:41',2,0,9,'&#60;p&#62;Telefone: 84 991046460&#60;/p&#62;\n&#60;p&#62;E-mail: vinicius.silveira@tecnomulti.com&#60;/p&#62;',9),
(8,'VPN ','t_24',24,'Ticket','6','2025-01-10 16:41:54','2025-01-14 15:38:26',2,0,9,'&#60;p&#62;Ola, gostaria de solicitar com prioridade a instalação da VPN no meu notebook para que possa utilizar Fora da Rede da Empresa. &#60;/p&#62;',9),
(9,'VPN','t_25',25,'Ticket','6','2025-01-10 16:45:39','2025-01-14 15:39:01',2,0,9,'&#60;p&#62;Ola, gostaria de solicitar com prioridade a instalação da VPN no meu notebook para que possa utilizar Fora da Rede da Empresa.&#60;/p&#62;',9),
(10,'VPN','t_26',26,'Ticket','6','2025-01-10 16:45:54','2025-01-14 15:39:17',2,0,9,'&#60;p&#62;Ola, gostaria de solicitar com prioridade a instalação da VPN no meu notebook para que possa utilizar Fora da Rede da Empresa.&#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;',9),
(11,'VPN','t_27',27,'Ticket','6','2025-01-10 16:46:13','2025-01-14 15:38:44',2,0,9,'&#60;p&#62;Ola, gostaria de solicitar com prioridade a instalação da VPN no meu notebook para que possa utilizar Fora da Rede da Empresa.&#60;/p&#62;',9),
(12,'Barra de pesquisa','t_28',28,'Ticket','6','2025-01-13 12:35:41','2025-01-13 13:43:05',2,0,9,'&#60;p&#62;Telefone:84 8831-7787&#60;/p&#62;\n&#60;p&#62;E-mail:flavia.chagas@tecnomulti.com&#60;/p&#62;',9),
(13,'JAVA BLOQUEADO','t_29',29,'Ticket','6','2025-01-13 12:51:07','2025-01-13 13:31:06',2,0,9,'&#60;p&#62;Telefone: 84 991172132&#60;/p&#62;\n&#60;p&#62;E-mail: kivia.kevelen@tecnomulti.com&#60;/p&#62;',9),
(14,'VPN','t_30',30,'Ticket','6','2025-01-14 14:18:23','2025-01-14 19:35:24',2,0,9,'&#60;p&#62;Telefone:  81 9402-7371&#60;/p&#62;\n&#60;p&#62;E-mail: larissa.lorena@tecnomulti.com&#60;/p&#62;',9),
(15,'VPN','t_31',31,'Ticket','6','2025-01-14 18:57:19','2025-01-28 14:40:30',2,0,9,'&#60;p&#62;Telefone:81 992936741&#60;/p&#62;\n&#60;p&#62;E-mail: fabiano.melo@tecnomulti.com&#60;/p&#62;\n&#60;p&#62;boa tarde ! solicito por favor a VPN para acompanhar os testes da minha equipe &#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;\n&#60;p&#62;favor assim que possivel Grato &#60;/p&#62;',9),
(16,'AUTOCAD, KMZ','t_32',32,'Ticket','6','2025-01-14 19:40:44','2025-01-20 13:31:02',2,0,9,'&#60;p&#62;Telefone: 84 987602692&#60;/p&#62;\n&#60;p&#62;E-mail: lucas.willams@tecnomulti.com&#60;/p&#62;',9),
(20,'MEMORIA CHEIA','t_36',36,'Ticket','6','2025-01-15 19:02:56','2025-01-17 12:03:35',2,0,9,'&#60;p&#62;Telefone: 81 8695-4083&#60;/p&#62;\n&#60;p&#62;E-mail: jose.carmo@tecnomulti.com&#60;/p&#62;',9),
(27,'Lentidão jose.carmo@tecnomulti.com','t_43',43,'Ticket','6','2025-01-16 10:59:30','2025-01-17 12:02:32',2,0,9,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Lentidão&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;jose.carmo@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 8695-4083&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;O notebook não está abrindo mais de 2 &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',9),
(28,'Problema no email. jayana.monte@tecnomulti.com','t_44',44,'Ticket','6','2025-01-17 14:47:06','2025-01-20 11:47:29',2,0,9,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Problema no email.&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;jayana.monte@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81996609102&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Recebi um email falando sobre a conta de email está cheia, porém não tem muita coisa no email.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',9),
(29,'Eu já desinstalei o aplicativo da impressora e já instalei novamente e a impressora não conecta karla.minelly@tecnomulti.com','t_45',45,'Ticket','6','2025-01-17 18:01:10','2025-01-20 14:21:56',2,0,9,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Eu já desinstalei o aplicativo da impressora e já instalei novamente e a impressora não conecta&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;karla.minelly@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83988277027&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Eu já desinstalei o aplicativo da impressora e já instalei novamente e a impressora não conecta&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',9),
(30,'KARLA KINELLY DE AQUINO ALEXANDRE','t_46',46,'Ticket','6','2025-01-20 11:22:02','2025-01-20 14:21:10',2,0,9,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;KARLA KINELLY DE AQUINO ALEXANDRE&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;karla.minelly@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83988277027&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;A IMPRESSORA NÃO CONECTA AO APLICATIVO INSTADO. JÁ DESINSTELEI E INSTALEI O APLICATIVO, MESMO ASSIM NÃO CONECTA.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',9),
(31,'Instalação de vpn','t_47',47,'Ticket','6','2025-01-20 13:39:01','2025-01-20 14:33:05',2,0,9,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Instalação de vpn&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;gilberto.silva@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81991391898&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Instalação de vpn&#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',9),
(32,'CAIXA DE EMAIL CHEIA ','t_48',48,'Ticket','6','2025-01-20 14:05:41','2025-01-24 11:59:40',2,0,9,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CAIXA DE EMAIL CHEIA &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;graciane.coelho@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81986981633&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;&#60;a href=\"/front/document.send.php?docid=10&#38;itemtype=Ticket&#38;items_id=48\" target=\"_blank\" &#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-678e5833761ee6.52395438\" width=\"1366\" src=\"/front/document.send.php?docid=10&#38;itemtype=Ticket&#38;items_id=48\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',9),
(34,'CONECTAR IMPRESSORA NO PC','t_50',50,'Ticket','6','2025-01-21 11:27:28','2025-01-21 15:06:20',2,0,9,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CONECTAR IMPRESSORA NO PC&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;lucia.gomes@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83999075161&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Quando tento imprimir abre essa aba nos documentos &#60;a href=\"/front/document.send.php?docid=12&#38;itemtype=Ticket&#38;items_id=50\" target=\"_blank\" &#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-678f840b8e9a32.37877242\" width=\"1366\" src=\"/front/document.send.php?docid=12&#38;itemtype=Ticket&#38;items_id=50\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',9),
(35,'Expansão - Memória interna ssd + RAM','t_51',51,'Ticket','6','2025-01-21 13:02:41','2025-01-22 16:59:29',2,0,9,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Expansão - Memória interna ssd + RAM&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;arthur.abreu@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84 999460068&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;A memória interna do notebook está topado, e juntamente disso, a memoria RAM está sempre em seu uso total (imagem abaixo), e acredito que seja a junção desses fatores que estão ocasionando travamentos e fechamentos de relatórios, assim como limitando o usos de alguns recursos dos mesmos e outros programas.&#60;br&#62;&#60;br&#62;&#60;a href=\"/front/document.send.php?docid=13&#38;itemtype=Ticket&#38;items_id=51\" target=\"_blank\" &#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-678f9ac07b0fe6.57690040\" width=\"1123\" src=\"/front/document.send.php?docid=13&#38;itemtype=Ticket&#38;items_id=51\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',9),
(36,'Excell','t_52',52,'Ticket','6','2025-01-21 13:50:24','2025-01-21 15:27:14',2,0,9,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Excell&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;Gerson.Lima@tecnimulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;71992750348&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Excell com problema, expirou  &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',9),
(37,'Caixa de Email Cheia','t_53',53,'Ticket','6','2025-01-22 11:00:46','2025-01-24 12:00:22',2,0,9,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Caixa de Email Cheia&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;vinicius.silveira@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84 99104-6460&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Caixa de E-mail cheia&#60;br&#62;&#60;a href=\"/front/document.send.php?docid=14&#38;itemtype=Ticket&#38;items_id=53\" target=\"_blank\" &#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-6790cfd5928179.61613302\" width=\"1069\" src=\"/front/document.send.php?docid=14&#38;itemtype=Ticket&#38;items_id=53\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',9),
(38,'Notebook perdendo sinal de Wi FI','t_54',54,'Ticket','6','2025-01-22 11:12:01','2025-01-22 16:52:53',2,0,9,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Notebook perdendo sinal de Wi FI&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;arthur.abreu@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84 999460068&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Wi fi do computador perde conectividade com a rede e deixa de enxergar as redes disponíveis no local.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',9),
(39,'SAP COM PROBLEMA ','t_55',55,'Ticket','6','2025-01-23 13:02:02','2025-01-23 13:39:28',2,0,9,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;SAP COM PROBLEMA &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;anacristina.araujo@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83 996110690&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;SEM ACESSO AO SAP - JÁ LIMPEI CACHE - REINICIEI E NADA &#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',9),
(40,'CAIXA DE EMAIL CHEIA ','t_56',56,'Ticket','6','2025-01-27 18:40:14','2025-01-28 12:51:41',2,0,9,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CAIXA DE EMAIL CHEIA &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;graciane.coelho@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81986981633&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;CAIXA DE EMAIL CHEIAS&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',9),
(41,'CAIXA DE EMAIL CHEIA ','t_57',57,'Ticket','6','2025-01-28 11:11:21','2025-01-28 11:41:20',2,0,9,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CAIXA DE EMAIL CHEIA &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;graciane.coelho@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81986981633&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;e-mail com problema &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',9),
(42,'OSP control não está abrindo e ativar o e-mail ','t_58',58,'Ticket','6','2025-01-28 12:39:13','2025-02-13 14:01:10',2,0,9,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;OSP control não está abrindo e ativar o e-mail &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;selma.belizario@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83 98808-8867&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistemas VIVO/FIBRASIL&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;toda vez que tento acessar o OSP Control aparece a mensagem: ops, algo deu errado. Por favor, tente novamente. Consigo acessar em outo notebook, mas no meu não acessa. &#60;/p&#62;\n&#60;p&#62;Também preciso que o meu e-mail seja migrado do notebook anterior, para o que estou utilizado agora.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',9),
(43,'GOOGLE HEART','t_59',59,'Ticket','6','2025-01-28 13:46:40','2025-01-28 19:27:19',2,0,9,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;GOOGLE HEART&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;gerson.lima@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;71992750348&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;google heart com erro, necessário reinstalar &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',9),
(44,'PASTA DE REDE / FROTA','t_60',60,'Ticket','6','2025-01-28 13:53:54','2025-01-28 13:58:52',2,0,9,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA DE REDE / FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;monalisa.furtado@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84988112339&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Monalisa: 368905108&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',9),
(45,'PASTA DE REDE / FROTA','t_61',61,'Ticket','6','2025-01-28 13:59:04','2025-01-28 14:02:05',2,0,9,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA DE REDE / FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;monalisa.furtado@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84988112339&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Monalisa: 368 905 108&#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',9),
(46,'PASTA FROTA','t_62',62,'Ticket','6','2025-01-28 14:02:27','2025-01-28 14:05:20',2,0,9,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;laryssa.felix@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84988112339&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;ANYDESK: 1050 655 391&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',9),
(47,'PASTA DE REDE / FROTA','t_63',63,'Ticket','6','2025-01-28 14:04:55','2025-01-28 14:11:39',2,0,9,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA DE REDE / FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;joaopaulo.leite@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 98584-2246&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;ANYDESK: 723335506&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',9),
(48,'PASTA DE REDE / FROTA','t_64',64,'Ticket','6','2025-01-28 14:06:03','2025-01-28 14:13:35',2,0,9,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA DE REDE / FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;arthur.abreu@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84 9946-0068&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Anydesk: 1 307 766 794&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',9),
(49,'PASTA DE REDE / FROTA','t_65',65,'Ticket','6','2025-01-28 14:16:01','2025-01-28 14:49:48',2,0,9,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA DE REDE / FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;gilmar.lourenco@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84 99946-0230&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;ANYDESK: 777746514&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',9),
(50,'Configurar o SAP ','t_66',66,'Ticket','6','2025-01-28 14:31:35','2025-01-28 20:20:30',2,0,9,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Configurar o SAP &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;jose.carmo@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81986954083&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistemas VIVO/FIBRASIL&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Preciso urgentemente que configure minha conta nova do Sap nessa maquina. &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',9),
(51,'CONECTAR IMPRESSORA NO PC','t_67',67,'Ticket','6','2025-01-28 15:12:53','2025-01-28 20:18:45',2,0,9,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CONECTAR IMPRESSORA NO PC&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;elton.jorge@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;+55 83 8199-1245&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;erro ao tentar impressão&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',9),
(52,'Caixa de E-mail Lotada','t_68',68,'Ticket','6','2025-01-28 18:47:27','2025-01-28 20:17:28',2,0,9,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Caixa de E-mail Lotada&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;vinicius.silveira@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84 99104-6460&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Caixa Lotada&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',9),
(54,'Email - Alexandre Onassis','t_70',70,'Ticket','6','2025-01-29 11:52:14','2025-01-29 12:01:16',2,0,9,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Email - Alexandre Onassis&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;geimisson.marques@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 983240445&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Configuração primeiro acesso ao email do coordenador Alexandre Onassis &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',9),
(55,'configurar VPN','t_71',71,'Ticket','6','2025-01-29 11:59:27','2025-01-29 12:06:26',2,0,9,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;configurar VPN&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;Sebastiao.clesio@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84991007542&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;bom dia.&#60;/p&#62;\n&#60;p&#62;conforme ja alinhado e autorizado por Paula. cadastrar a VPN no PC.   &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',9),
(56,'sistema sap não fica com o acesso','t_72',72,'Ticket','6','2025-01-30 11:24:45','2025-01-30 11:51:10',2,0,9,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;sistema sap não fica com o acesso&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;lorenalarissa88@gmail.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62; 81 9402-7371&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;não consigo acessar o sistema&#60;/p&#62;\n&#60;p&#62;anydesk  1 763 954 787&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',9),
(57,'PROBLEMA AO ACESSAR SAP / CITRIX','t_73',73,'Ticket','6','2025-01-30 13:44:22','2025-01-30 18:52:14',2,0,9,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PROBLEMA AO ACESSAR SAP / CITRIX&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;lanna1457@gmail.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83999075161&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;NÃO CONSIGO ACESSAR O SAP NEM O CITRIX - PORÉM UMA COLEGA CONSEGUIU ACESSAR PELO MESMO LINK E MESMA SENHA &#60;a href=\"/front/document.send.php?docid=16&#38;itemtype=Ticket&#38;items_id=73\" target=\"_blank\" &#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-679b81f077f908.68527211\" width=\"974\" src=\"/front/document.send.php?docid=16&#38;itemtype=Ticket&#38;items_id=73\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',9),
(58,'EMAIL','t_74',74,'Ticket','6','2025-01-30 17:53:59','2025-01-30 19:23:58',2,0,9,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;EMAIL&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;flavia.chagas@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62; 84 8831-7787&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Meus emails não está saindo da caixa!&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',9),
(59,'INSTALAR NOBREAK','t_75',75,'Ticket','3','2025-01-30 18:41:10','2025-01-30 19:14:11',2,0,9,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;INSTALAR NOBREAK&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;denilson.marques@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84999811377&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;equipamento para instalação disponivel.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',9),
(60,'VPN com problema','t_76',76,'Ticket','6','2025-02-03 13:18:39','2025-02-04 11:49:55',2,0,9,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;VPN com problema&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;arthur.ulisses@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;85992155440&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;VPN aparenta estar muito lento, impossibilitando o trabalho.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',9),
(61,'VPN FIBRASIL','t_77',77,'Ticket','6','2025-02-03 17:21:14','2025-02-04 11:22:37',2,0,9,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;VPN FIBRASIL&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;danielle.silva@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62; 81 99256-9899&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;A VPN da Fibrasil aprensentando erro ao acesso . &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',9),
(62,'Erro Envio de mensagens ','t_78',78,'Ticket','6','2025-02-03 17:44:33','2025-02-03 20:47:33',2,0,9,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Erro Envio de mensagens &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;mario.lopes@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83993220200&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;\"Esta mensagem foi criada automaticamente pelo software de entrega de correio.&#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;\n&#60;p&#62;Uma mensagem que você enviou não pôde ser entregue a um ou mais destinatários. Este é um erro permanente. Os seguintes endereços falharam:\"&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',9),
(63,'Erro Envio de mensagens ','t_79',79,'Ticket','6','2025-02-03 20:21:54','2025-02-03 21:01:20',2,0,9,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Erro Envio de mensagens &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;mario.lopes@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83993220200&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;This message was created automatically by mail delivery software.&#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;\n&#60;p&#62;A message that you sent could not be delivered to one or more of its recipients. This is a permanent error. The following address(es) failed:&#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;\n&#60;p&#62;  alexcruzfab@hotmail.com&#60;/p&#62;\n&#60;p&#62;    host eig-east.smtp.a.cloudfilter.net [3.228.35.199]&#60;/p&#62;\n&#60;p&#62;    SMTP error from remote mail server after end of data:&#60;/p&#62;\n&#60;p&#62;    550 Connection Rejected - see http://www.spamhaus.org/query/ip/168.196.197.55 AUP#BL&#60;/p&#62;\n&#60;p&#62;  alexcruzfab@gmail.com&#60;/p&#62;\n&#60;p&#62;    host eig-east.smtp.a.cloudfilter.net [18.215.58.191]&#60;/p&#62;\n&#60;p&#62;    SMTP error from remote mail server after end of data:&#60;/p&#62;\n&#60;p&#62;    550 Connection Rejected - see http://www.spamhaus.org/query/ip/168.196.197.55 AUP#BL&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',9),
(64,'VPN','t_80',80,'Ticket','6','2025-02-04 18:37:10','2025-02-06 14:41:21',2,0,9,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;VPN&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;fabiano.melo@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81988187688&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;ACESSO A VPN &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',9),
(65,'INSTALAÇÃO VPN TECNOMULTI','t_81',81,'Ticket','6','2025-02-04 18:43:15','2025-02-06 14:39:48',2,0,9,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;INSTALAÇÃO VPN TECNOMULTI&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;danielle.silva@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 99293-6741&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Instalação da VPN Tecnomulti. &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',9),
(66,'PASTA FROTA','t_82',82,'Ticket','6','2025-02-07 14:16:50','2025-02-11 12:21:34',2,0,9,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;fabio.jackson@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83986500039&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;favor  configurar acesso para Pasta Frotas &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',9),
(67,'EMAIL / EXCEL / POWER POINT','t_83',83,'Ticket','6','2025-02-10 11:16:41','2025-02-10 11:46:54',2,0,9,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;EMAIL / EXCEL / POWER POINT&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;amanda.moreira@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;(84)98753-9247&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Não consigo enviar, nem responder emails. Apenas recebo.&#60;/p&#62;\n&#60;p&#62;Excel, power point e word, apenas abre, não consigo mexer nele. Mostra um aviso informando que \"Está cópia do Microsoft office não está ativada. &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',9),
(68,'sistema sap não fica com o acesso','t_84',84,'Ticket','6','2025-02-11 12:02:54','2025-02-11 13:08:44',2,0,9,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;sistema sap não fica com o acesso&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;lorenalarissa88@gmail.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81988648578&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;não consigo usar o sistema funciona em outro e no  meu a senha e login não fica.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',9),
(69,'PASTA FROTA','t_85',85,'Ticket','6','2025-02-11 12:41:34','2025-02-11 13:14:07',2,0,9,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;joao.ferreira@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 992588071&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Favor criar acesso a pasta Frota&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',9),
(70,'Acesso Sistema ','t_86',86,'Ticket','6','2025-02-11 15:10:17','2025-02-13 13:17:14',2,0,9,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Acesso Sistema &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;michele.souza@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;8198555-5446&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Mudanca de setor, nao estou consiguindo acessa Vicky, Sap, OSPCONTROL &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',9),
(71,'ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK','t_87',87,'Ticket','6','2025-02-12 11:56:10','2025-02-12 12:34:09',2,0,9,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;gilmar.lourenco@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84988113027&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;O progresso do Outlook indica o recebimento dos e-mails, porém, nada aparece na caixa de entrada, nem nas pastas com regras.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',9),
(72,'edson maykon','t_88',88,'Ticket','2','2025-02-17 11:36:06','2025-02-17 20:31:30',2,0,9,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;edson maykon&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;edson.maykon@tecnomulti.com.pst&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84 987026218&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;nao estou tendo acesso e meu e-mail  edson.maykon@tecnomulti.com.pst&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',9),
(73,'INSTALAR E-MAIL OUTLOOK','t_89',89,'Ticket','2','2025-02-17 12:35:59','2025-02-18 18:30:40',2,0,9,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;INSTALAR E-MAIL OUTLOOK&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;bruno.ciriaco@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;85981013501&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Bom dia configurar o outlook e instalar o DWG. &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',9),
(74,'não consigo acessar meu outlook','t_90',90,'Ticket','2','2025-02-18 17:56:01','2025-02-18 18:17:50',2,0,9,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;não consigo acessar meu outlook&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;aprendiz.recifela@tecnomult.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 986981633&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;&#60;a href=\"/front/document.send.php?docid=17&#38;itemtype=Ticket&#38;items_id=90\" target=\"_blank\" &#62;&#60;img alt=\"47cb7c5c-b2d8e96f-67b4c9ad2804d1.68109059\" width=\"545\" src=\"/front/document.send.php?docid=17&#38;itemtype=Ticket&#38;items_id=90\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',9),
(75,'CHAMADO RAYLLA','t_91',91,'Ticket','2','2025-02-18 17:56:26','2025-02-18 18:22:40',2,0,9,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CHAMADO RAYLLA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;raylla.vitoria@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84988082753&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Boa tarde, Alex!&#60;br&#62;Não consigo rever emails antigos nem enviados.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',9),
(76,'TROCA DE NOTEBOOK','t_92',92,'Ticket','1','2025-02-18 18:48:25','2025-02-18 18:48:25',2,0,9,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;TROCA DE NOTEBOOK&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;evelyn.azevedo@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84981052542&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Troca de notebook, liberar acessos.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',9);
/*!40000 ALTER TABLE `glpi_plugin_formcreator_issues` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_plugin_formcreator_items_targettickets`
--

DROP TABLE IF EXISTS `glpi_plugin_formcreator_items_targettickets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_plugin_formcreator_items_targettickets` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `plugin_formcreator_targettickets_id` int(10) unsigned NOT NULL DEFAULT 0,
  `link` int(11) NOT NULL DEFAULT 0,
  `itemtype` varchar(255) NOT NULL DEFAULT '',
  `items_id` int(10) unsigned NOT NULL DEFAULT 0,
  `uuid` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `plugin_formcreator_targettickets_id` (`plugin_formcreator_targettickets_id`),
  KEY `item` (`itemtype`,`items_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_plugin_formcreator_items_targettickets`
--

LOCK TABLES `glpi_plugin_formcreator_items_targettickets` WRITE;
/*!40000 ALTER TABLE `glpi_plugin_formcreator_items_targettickets` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_plugin_formcreator_items_targettickets` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_plugin_formcreator_questiondependencies`
--

DROP TABLE IF EXISTS `glpi_plugin_formcreator_questiondependencies`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_plugin_formcreator_questiondependencies` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `plugin_formcreator_questions_id` int(10) unsigned NOT NULL DEFAULT 0,
  `plugin_formcreator_questions_id_2` int(10) unsigned NOT NULL DEFAULT 0,
  `fieldname` varchar(255) DEFAULT NULL,
  `uuid` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `plugin_formcreator_questions_id` (`plugin_formcreator_questions_id`),
  KEY `plugin_formcreator_questions_id_2` (`plugin_formcreator_questions_id_2`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_plugin_formcreator_questiondependencies`
--

LOCK TABLES `glpi_plugin_formcreator_questiondependencies` WRITE;
/*!40000 ALTER TABLE `glpi_plugin_formcreator_questiondependencies` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_plugin_formcreator_questiondependencies` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_plugin_formcreator_questionranges`
--

DROP TABLE IF EXISTS `glpi_plugin_formcreator_questionranges`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_plugin_formcreator_questionranges` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `plugin_formcreator_questions_id` int(10) unsigned NOT NULL DEFAULT 0,
  `range_min` varchar(255) DEFAULT NULL,
  `range_max` varchar(255) DEFAULT NULL,
  `fieldname` varchar(255) DEFAULT NULL,
  `uuid` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `plugin_formcreator_questions_id` (`plugin_formcreator_questions_id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_plugin_formcreator_questionranges`
--

LOCK TABLES `glpi_plugin_formcreator_questionranges` WRITE;
/*!40000 ALTER TABLE `glpi_plugin_formcreator_questionranges` DISABLE KEYS */;
INSERT INTO `glpi_plugin_formcreator_questionranges` VALUES
(1,2,'0','0','range','796eb77d-aa543a3a-67884b4dde50f5.27217945'),
(2,3,'0','0','range','796eb77d-aa543a3a-67884b8060fa80.97320431'),
(3,5,'0','0','range','796eb77d-aa543a3a-6788501bd6e1a6.98450563');
/*!40000 ALTER TABLE `glpi_plugin_formcreator_questionranges` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_plugin_formcreator_questionregexes`
--

DROP TABLE IF EXISTS `glpi_plugin_formcreator_questionregexes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_plugin_formcreator_questionregexes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `plugin_formcreator_questions_id` int(10) unsigned NOT NULL DEFAULT 0,
  `regex` mediumtext DEFAULT NULL,
  `fieldname` varchar(255) DEFAULT NULL,
  `uuid` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `plugin_formcreator_questions_id` (`plugin_formcreator_questions_id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_plugin_formcreator_questionregexes`
--

LOCK TABLES `glpi_plugin_formcreator_questionregexes` WRITE;
/*!40000 ALTER TABLE `glpi_plugin_formcreator_questionregexes` DISABLE KEYS */;
INSERT INTO `glpi_plugin_formcreator_questionregexes` VALUES
(1,2,'','regex','796eb77d-aa543a3a-67884b4ddce7f2.19223881'),
(2,3,'','regex','796eb77d-aa543a3a-67884b805eb017.55344302'),
(3,5,'','regex','796eb77d-aa543a3a-6788501bd62090.73444352');
/*!40000 ALTER TABLE `glpi_plugin_formcreator_questionregexes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_plugin_formcreator_questions`
--

DROP TABLE IF EXISTS `glpi_plugin_formcreator_questions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_plugin_formcreator_questions` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL DEFAULT '',
  `plugin_formcreator_sections_id` int(10) unsigned NOT NULL DEFAULT 0,
  `fieldtype` varchar(30) NOT NULL DEFAULT 'text',
  `required` tinyint(1) NOT NULL DEFAULT 0,
  `show_empty` tinyint(1) NOT NULL DEFAULT 0,
  `default_values` mediumtext DEFAULT NULL,
  `itemtype` varchar(255) NOT NULL DEFAULT '' COMMENT 'itemtype used for glpi objects and dropdown question types',
  `values` mediumtext DEFAULT NULL,
  `description` mediumtext DEFAULT NULL,
  `row` int(11) NOT NULL DEFAULT 0,
  `col` int(11) NOT NULL DEFAULT 0,
  `width` int(11) NOT NULL DEFAULT 0,
  `show_rule` int(11) NOT NULL DEFAULT 1,
  `uuid` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `plugin_formcreator_sections_id` (`plugin_formcreator_sections_id`),
  FULLTEXT KEY `Search` (`name`,`description`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_plugin_formcreator_questions`
--

LOCK TABLES `glpi_plugin_formcreator_questions` WRITE;
/*!40000 ALTER TABLE `glpi_plugin_formcreator_questions` DISABLE KEYS */;
INSERT INTO `glpi_plugin_formcreator_questions` VALUES
(1,'E-mail',1,'email',1,0,'','','','',1,0,4,1,'796eb77d-aa543a3a-67884ae0e2e653.91764219'),
(2,'Telefone',1,'text',1,0,'','',NULL,'',2,0,4,1,'796eb77d-aa543a3a-67884b4dd88d38.80027616'),
(3,'Título',1,'text',1,0,'','',NULL,'',0,0,4,1,'796eb77d-aa543a3a-67884b805b1050.16681257'),
(5,'Informe mais detalhes',1,'textarea',1,0,'','',NULL,'',4,0,4,1,'796eb77d-aa543a3a-6788501bd36020.22476503'),
(6,'Categoria',1,'dropdown',1,0,'0','ITILCategory','{\"show_ticket_categories\":\"both\",\"show_tree_depth\":\"0\",\"show_tree_root\":\"0\",\"selectable_tree_root\":\"0\",\"entity_restrict\":\"2\"}','',3,0,4,1,'796eb77d-aa543a3a-67885b366157e8.76377185');
/*!40000 ALTER TABLE `glpi_plugin_formcreator_questions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_plugin_formcreator_sections`
--

DROP TABLE IF EXISTS `glpi_plugin_formcreator_sections`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_plugin_formcreator_sections` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL DEFAULT '',
  `plugin_formcreator_forms_id` int(10) unsigned NOT NULL DEFAULT 0,
  `order` int(11) NOT NULL DEFAULT 0,
  `show_rule` int(11) NOT NULL DEFAULT 1,
  `uuid` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `plugin_formcreator_forms_id` (`plugin_formcreator_forms_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_plugin_formcreator_sections`
--

LOCK TABLES `glpi_plugin_formcreator_sections` WRITE;
/*!40000 ALTER TABLE `glpi_plugin_formcreator_sections` DISABLE KEYS */;
INSERT INTO `glpi_plugin_formcreator_sections` VALUES
(1,'Novo chamado',1,1,1,'796eb77d-aa543a3a-678869f51e4271.61294880');
/*!40000 ALTER TABLE `glpi_plugin_formcreator_sections` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_plugin_formcreator_targetchanges`
--

DROP TABLE IF EXISTS `glpi_plugin_formcreator_targetchanges`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_plugin_formcreator_targetchanges` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL DEFAULT '',
  `plugin_formcreator_forms_id` int(10) unsigned NOT NULL DEFAULT 0,
  `target_name` varchar(255) NOT NULL DEFAULT '',
  `changetemplates_id` int(10) unsigned NOT NULL DEFAULT 0,
  `content` longtext DEFAULT NULL,
  `impactcontent` longtext DEFAULT NULL,
  `controlistcontent` longtext DEFAULT NULL,
  `rolloutplancontent` longtext DEFAULT NULL,
  `backoutplancontent` longtext DEFAULT NULL,
  `checklistcontent` longtext DEFAULT NULL,
  `due_date_rule` int(11) NOT NULL DEFAULT 1,
  `due_date_question` int(10) unsigned NOT NULL DEFAULT 0,
  `due_date_value` tinyint(4) DEFAULT NULL,
  `due_date_period` int(11) NOT NULL DEFAULT 0,
  `urgency_rule` int(11) NOT NULL DEFAULT 1,
  `urgency_question` int(10) unsigned NOT NULL DEFAULT 0,
  `validation_followup` tinyint(1) NOT NULL DEFAULT 1,
  `destination_entity` int(11) NOT NULL DEFAULT 1,
  `destination_entity_value` int(10) unsigned NOT NULL DEFAULT 0,
  `tag_type` int(11) NOT NULL DEFAULT 1,
  `tag_questions` varchar(255) NOT NULL DEFAULT '',
  `tag_specifics` varchar(255) NOT NULL DEFAULT '',
  `category_rule` int(11) NOT NULL DEFAULT 1,
  `category_question` int(10) unsigned NOT NULL DEFAULT 0,
  `commonitil_validation_rule` int(11) NOT NULL DEFAULT 1,
  `commonitil_validation_question` varchar(255) DEFAULT NULL,
  `show_rule` int(11) NOT NULL DEFAULT 1,
  `sla_rule` int(11) NOT NULL DEFAULT 1,
  `sla_question_tto` int(10) unsigned NOT NULL DEFAULT 0,
  `sla_question_ttr` int(10) unsigned NOT NULL DEFAULT 0,
  `ola_rule` int(11) NOT NULL DEFAULT 1,
  `ola_question_tto` int(10) unsigned NOT NULL DEFAULT 0,
  `ola_question_ttr` int(10) unsigned NOT NULL DEFAULT 0,
  `uuid` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_plugin_formcreator_targetchanges`
--

LOCK TABLES `glpi_plugin_formcreator_targetchanges` WRITE;
/*!40000 ALTER TABLE `glpi_plugin_formcreator_targetchanges` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_plugin_formcreator_targetchanges` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_plugin_formcreator_targetproblems`
--

DROP TABLE IF EXISTS `glpi_plugin_formcreator_targetproblems`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_plugin_formcreator_targetproblems` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL DEFAULT '',
  `plugin_formcreator_forms_id` int(10) unsigned NOT NULL DEFAULT 0,
  `target_name` varchar(255) NOT NULL DEFAULT '',
  `problemtemplates_id` int(10) unsigned NOT NULL DEFAULT 0,
  `content` longtext DEFAULT NULL,
  `impactcontent` longtext DEFAULT NULL,
  `causecontent` longtext DEFAULT NULL,
  `symptomcontent` longtext DEFAULT NULL,
  `urgency_rule` int(11) NOT NULL DEFAULT 1,
  `urgency_question` int(10) unsigned NOT NULL DEFAULT 0,
  `destination_entity` int(11) NOT NULL DEFAULT 1,
  `destination_entity_value` int(10) unsigned NOT NULL DEFAULT 0,
  `tag_type` int(11) NOT NULL DEFAULT 1,
  `tag_questions` varchar(255) NOT NULL DEFAULT '',
  `tag_specifics` varchar(255) NOT NULL DEFAULT '',
  `category_rule` int(11) NOT NULL DEFAULT 1,
  `category_question` int(10) unsigned NOT NULL DEFAULT 0,
  `show_rule` int(11) NOT NULL DEFAULT 1,
  `uuid` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `problemtemplates_id` (`problemtemplates_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_plugin_formcreator_targetproblems`
--

LOCK TABLES `glpi_plugin_formcreator_targetproblems` WRITE;
/*!40000 ALTER TABLE `glpi_plugin_formcreator_targetproblems` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_plugin_formcreator_targetproblems` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_plugin_formcreator_targets_actors`
--

DROP TABLE IF EXISTS `glpi_plugin_formcreator_targets_actors`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_plugin_formcreator_targets_actors` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `itemtype` varchar(255) DEFAULT NULL,
  `items_id` int(10) unsigned NOT NULL DEFAULT 0,
  `actor_role` int(11) NOT NULL DEFAULT 1,
  `actor_type` int(11) NOT NULL DEFAULT 1,
  `actor_value` int(10) unsigned NOT NULL DEFAULT 0,
  `use_notification` tinyint(1) NOT NULL DEFAULT 1,
  `uuid` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `item` (`itemtype`,`items_id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_plugin_formcreator_targets_actors`
--

LOCK TABLES `glpi_plugin_formcreator_targets_actors` WRITE;
/*!40000 ALTER TABLE `glpi_plugin_formcreator_targets_actors` DISABLE KEYS */;
INSERT INTO `glpi_plugin_formcreator_targets_actors` VALUES
(1,'PluginFormcreatorTargetTicket',1,1,1,0,1,'796eb77d-aa543a3a-67885103cbf4a4.51582075');
/*!40000 ALTER TABLE `glpi_plugin_formcreator_targets_actors` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_plugin_formcreator_targettickets`
--

DROP TABLE IF EXISTS `glpi_plugin_formcreator_targettickets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_plugin_formcreator_targettickets` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL DEFAULT '',
  `plugin_formcreator_forms_id` int(10) unsigned NOT NULL DEFAULT 0,
  `target_name` varchar(255) NOT NULL DEFAULT '',
  `source_rule` int(11) NOT NULL DEFAULT 0,
  `source_question` int(11) NOT NULL DEFAULT 0,
  `type_rule` int(11) NOT NULL DEFAULT 0,
  `type_question` int(10) unsigned NOT NULL DEFAULT 0,
  `tickettemplates_id` int(10) unsigned NOT NULL DEFAULT 0,
  `content` longtext DEFAULT NULL,
  `due_date_rule` int(11) NOT NULL DEFAULT 1,
  `due_date_question` int(10) unsigned NOT NULL DEFAULT 0,
  `due_date_value` tinyint(4) DEFAULT NULL,
  `due_date_period` int(11) NOT NULL DEFAULT 0,
  `urgency_rule` int(11) NOT NULL DEFAULT 1,
  `urgency_question` int(10) unsigned NOT NULL DEFAULT 0,
  `validation_followup` tinyint(1) NOT NULL DEFAULT 1,
  `destination_entity` int(11) NOT NULL DEFAULT 1,
  `destination_entity_value` int(10) unsigned NOT NULL DEFAULT 0,
  `tag_type` int(11) NOT NULL DEFAULT 1,
  `tag_questions` varchar(255) NOT NULL DEFAULT '',
  `tag_specifics` varchar(255) NOT NULL DEFAULT '',
  `category_rule` int(11) NOT NULL DEFAULT 1,
  `category_question` int(10) unsigned NOT NULL DEFAULT 0,
  `associate_rule` int(11) NOT NULL DEFAULT 1,
  `associate_question` int(10) unsigned NOT NULL DEFAULT 0,
  `location_rule` int(11) NOT NULL DEFAULT 1,
  `location_question` int(10) unsigned NOT NULL DEFAULT 0,
  `commonitil_validation_rule` int(11) NOT NULL DEFAULT 1,
  `commonitil_validation_question` varchar(255) DEFAULT NULL,
  `show_rule` int(11) NOT NULL DEFAULT 1,
  `sla_rule` int(11) NOT NULL DEFAULT 1,
  `sla_question_tto` int(10) unsigned NOT NULL DEFAULT 0,
  `sla_question_ttr` int(10) unsigned NOT NULL DEFAULT 0,
  `ola_rule` int(11) NOT NULL DEFAULT 1,
  `ola_question_tto` int(10) unsigned NOT NULL DEFAULT 0,
  `ola_question_ttr` int(10) unsigned NOT NULL DEFAULT 0,
  `uuid` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `tickettemplates_id` (`tickettemplates_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_plugin_formcreator_targettickets`
--

LOCK TABLES `glpi_plugin_formcreator_targettickets` WRITE;
/*!40000 ALTER TABLE `glpi_plugin_formcreator_targettickets` DISABLE KEYS */;
INSERT INTO `glpi_plugin_formcreator_targettickets` VALUES
(1,'Novo chamado',1,'##answer_3##',1,7,1,1,1,'<p>##FULLFORM##</p>',0,0,-30,1,1,0,1,1,0,1,'','',3,6,1,0,1,0,1,'0',1,1,0,0,1,0,0,'796eb77d-aa543a3a-67885103c73022.84699840');
/*!40000 ALTER TABLE `glpi_plugin_formcreator_targettickets` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_plugins`
--

DROP TABLE IF EXISTS `glpi_plugins`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_plugins` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `directory` varchar(255) NOT NULL,
  `name` varchar(255) NOT NULL,
  `version` varchar(255) NOT NULL,
  `state` int(11) NOT NULL DEFAULT 0 COMMENT 'see define.php PLUGIN_* constant',
  `author` varchar(255) DEFAULT NULL,
  `homepage` varchar(255) DEFAULT NULL,
  `license` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`directory`),
  KEY `name` (`name`),
  KEY `state` (`state`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_plugins`
--

LOCK TABLES `glpi_plugins` WRITE;
/*!40000 ALTER TABLE `glpi_plugins` DISABLE KEYS */;
INSERT INTO `glpi_plugins` VALUES
(1,'formcreator','Form Creator','2.13.9',1,'<a href=\"http://www.teclib.com\">Teclib\'</a>','https://github.com/pluginsGLPI/formcreator','<a href=\"/marketplace/formcreator/LICENSE.md\" target=\"_blank\">GPLv2</a>');
/*!40000 ALTER TABLE `glpi_plugins` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_plugs`
--

DROP TABLE IF EXISTS `glpi_plugs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_plugs` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_plugs`
--

LOCK TABLES `glpi_plugs` WRITE;
/*!40000 ALTER TABLE `glpi_plugs` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_plugs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_printerlogs`
--

DROP TABLE IF EXISTS `glpi_printerlogs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_printerlogs` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `printers_id` int(10) unsigned NOT NULL,
  `total_pages` int(11) NOT NULL DEFAULT 0,
  `bw_pages` int(11) NOT NULL DEFAULT 0,
  `color_pages` int(11) NOT NULL DEFAULT 0,
  `rv_pages` int(11) NOT NULL DEFAULT 0,
  `prints` int(11) NOT NULL DEFAULT 0,
  `bw_prints` int(11) NOT NULL DEFAULT 0,
  `color_prints` int(11) NOT NULL DEFAULT 0,
  `copies` int(11) NOT NULL DEFAULT 0,
  `bw_copies` int(11) NOT NULL DEFAULT 0,
  `color_copies` int(11) NOT NULL DEFAULT 0,
  `scanned` int(11) NOT NULL DEFAULT 0,
  `date` date DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `faxed` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`printers_id`,`date`),
  KEY `date` (`date`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_printerlogs`
--

LOCK TABLES `glpi_printerlogs` WRITE;
/*!40000 ALTER TABLE `glpi_printerlogs` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_printerlogs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_printermodels`
--

DROP TABLE IF EXISTS `glpi_printermodels`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_printermodels` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `product_number` varchar(255) DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  `picture_front` text DEFAULT NULL,
  `picture_rear` text DEFAULT NULL,
  `pictures` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`),
  KEY `product_number` (`product_number`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_printermodels`
--

LOCK TABLES `glpi_printermodels` WRITE;
/*!40000 ALTER TABLE `glpi_printermodels` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_printermodels` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_printers`
--

DROP TABLE IF EXISTS `glpi_printers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_printers` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `name` varchar(255) DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `contact` varchar(255) DEFAULT NULL,
  `contact_num` varchar(255) DEFAULT NULL,
  `users_id_tech` int(10) unsigned NOT NULL DEFAULT 0,
  `groups_id_tech` int(10) unsigned NOT NULL DEFAULT 0,
  `serial` varchar(255) DEFAULT NULL,
  `otherserial` varchar(255) DEFAULT NULL,
  `have_serial` tinyint(4) NOT NULL DEFAULT 0,
  `have_parallel` tinyint(4) NOT NULL DEFAULT 0,
  `have_usb` tinyint(4) NOT NULL DEFAULT 0,
  `have_wifi` tinyint(4) NOT NULL DEFAULT 0,
  `have_ethernet` tinyint(4) NOT NULL DEFAULT 0,
  `comment` text DEFAULT NULL,
  `memory_size` varchar(255) DEFAULT NULL,
  `locations_id` int(10) unsigned NOT NULL DEFAULT 0,
  `networks_id` int(10) unsigned NOT NULL DEFAULT 0,
  `printertypes_id` int(10) unsigned NOT NULL DEFAULT 0,
  `printermodels_id` int(10) unsigned NOT NULL DEFAULT 0,
  `manufacturers_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_global` tinyint(4) NOT NULL DEFAULT 0,
  `is_deleted` tinyint(4) NOT NULL DEFAULT 0,
  `is_template` tinyint(4) NOT NULL DEFAULT 0,
  `template_name` varchar(255) DEFAULT NULL,
  `init_pages_counter` int(11) NOT NULL DEFAULT 0,
  `last_pages_counter` int(11) NOT NULL DEFAULT 0,
  `users_id` int(10) unsigned NOT NULL DEFAULT 0,
  `groups_id` int(10) unsigned NOT NULL DEFAULT 0,
  `states_id` int(10) unsigned NOT NULL DEFAULT 0,
  `ticket_tco` decimal(20,4) DEFAULT 0.0000,
  `is_dynamic` tinyint(4) NOT NULL DEFAULT 0,
  `uuid` varchar(255) DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  `sysdescr` text DEFAULT NULL,
  `last_inventory_update` timestamp NULL DEFAULT NULL,
  `snmpcredentials_id` int(10) unsigned NOT NULL DEFAULT 0,
  `autoupdatesystems_id` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `is_template` (`is_template`),
  KEY `is_global` (`is_global`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `manufacturers_id` (`manufacturers_id`),
  KEY `groups_id` (`groups_id`),
  KEY `users_id` (`users_id`),
  KEY `locations_id` (`locations_id`),
  KEY `printermodels_id` (`printermodels_id`),
  KEY `networks_id` (`networks_id`),
  KEY `states_id` (`states_id`),
  KEY `users_id_tech` (`users_id_tech`),
  KEY `printertypes_id` (`printertypes_id`),
  KEY `is_deleted` (`is_deleted`),
  KEY `date_mod` (`date_mod`),
  KEY `groups_id_tech` (`groups_id_tech`),
  KEY `last_pages_counter` (`last_pages_counter`),
  KEY `is_dynamic` (`is_dynamic`),
  KEY `serial` (`serial`),
  KEY `otherserial` (`otherserial`),
  KEY `uuid` (`uuid`),
  KEY `date_creation` (`date_creation`),
  KEY `snmpcredentials_id` (`snmpcredentials_id`),
  KEY `autoupdatesystems_id` (`autoupdatesystems_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_printers`
--

LOCK TABLES `glpi_printers` WRITE;
/*!40000 ALTER TABLE `glpi_printers` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_printers` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_printers_cartridgeinfos`
--

DROP TABLE IF EXISTS `glpi_printers_cartridgeinfos`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_printers_cartridgeinfos` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `printers_id` int(10) unsigned NOT NULL,
  `property` varchar(255) NOT NULL,
  `value` varchar(255) NOT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `printers_id` (`printers_id`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_printers_cartridgeinfos`
--

LOCK TABLES `glpi_printers_cartridgeinfos` WRITE;
/*!40000 ALTER TABLE `glpi_printers_cartridgeinfos` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_printers_cartridgeinfos` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_printertypes`
--

DROP TABLE IF EXISTS `glpi_printertypes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_printertypes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_printertypes`
--

LOCK TABLES `glpi_printertypes` WRITE;
/*!40000 ALTER TABLE `glpi_printertypes` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_printertypes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_problemcosts`
--

DROP TABLE IF EXISTS `glpi_problemcosts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_problemcosts` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `problems_id` int(10) unsigned NOT NULL DEFAULT 0,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `begin_date` date DEFAULT NULL,
  `end_date` date DEFAULT NULL,
  `actiontime` int(11) NOT NULL DEFAULT 0,
  `cost_time` decimal(20,4) NOT NULL DEFAULT 0.0000,
  `cost_fixed` decimal(20,4) NOT NULL DEFAULT 0.0000,
  `cost_material` decimal(20,4) NOT NULL DEFAULT 0.0000,
  `budgets_id` int(10) unsigned NOT NULL DEFAULT 0,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `problems_id` (`problems_id`),
  KEY `begin_date` (`begin_date`),
  KEY `end_date` (`end_date`),
  KEY `entities_id` (`entities_id`),
  KEY `budgets_id` (`budgets_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_problemcosts`
--

LOCK TABLES `glpi_problemcosts` WRITE;
/*!40000 ALTER TABLE `glpi_problemcosts` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_problemcosts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_problems`
--

DROP TABLE IF EXISTS `glpi_problems`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_problems` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `is_deleted` tinyint(4) NOT NULL DEFAULT 0,
  `status` int(11) NOT NULL DEFAULT 1,
  `content` longtext DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date` timestamp NULL DEFAULT NULL,
  `solvedate` timestamp NULL DEFAULT NULL,
  `closedate` timestamp NULL DEFAULT NULL,
  `time_to_resolve` timestamp NULL DEFAULT NULL,
  `users_id_recipient` int(10) unsigned NOT NULL DEFAULT 0,
  `users_id_lastupdater` int(10) unsigned NOT NULL DEFAULT 0,
  `urgency` int(11) NOT NULL DEFAULT 1,
  `impact` int(11) NOT NULL DEFAULT 1,
  `priority` int(11) NOT NULL DEFAULT 1,
  `itilcategories_id` int(10) unsigned NOT NULL DEFAULT 0,
  `impactcontent` longtext DEFAULT NULL,
  `causecontent` longtext DEFAULT NULL,
  `symptomcontent` longtext DEFAULT NULL,
  `actiontime` int(11) NOT NULL DEFAULT 0,
  `begin_waiting_date` timestamp NULL DEFAULT NULL,
  `waiting_duration` int(11) NOT NULL DEFAULT 0,
  `close_delay_stat` int(11) NOT NULL DEFAULT 0,
  `solve_delay_stat` int(11) NOT NULL DEFAULT 0,
  `date_creation` timestamp NULL DEFAULT NULL,
  `locations_id` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `is_deleted` (`is_deleted`),
  KEY `date` (`date`),
  KEY `closedate` (`closedate`),
  KEY `status` (`status`),
  KEY `priority` (`priority`),
  KEY `date_mod` (`date_mod`),
  KEY `itilcategories_id` (`itilcategories_id`),
  KEY `users_id_recipient` (`users_id_recipient`),
  KEY `solvedate` (`solvedate`),
  KEY `urgency` (`urgency`),
  KEY `impact` (`impact`),
  KEY `time_to_resolve` (`time_to_resolve`),
  KEY `users_id_lastupdater` (`users_id_lastupdater`),
  KEY `date_creation` (`date_creation`),
  KEY `locations_id` (`locations_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_problems`
--

LOCK TABLES `glpi_problems` WRITE;
/*!40000 ALTER TABLE `glpi_problems` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_problems` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_problems_suppliers`
--

DROP TABLE IF EXISTS `glpi_problems_suppliers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_problems_suppliers` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `problems_id` int(10) unsigned NOT NULL DEFAULT 0,
  `suppliers_id` int(10) unsigned NOT NULL DEFAULT 0,
  `type` int(11) NOT NULL DEFAULT 1,
  `use_notification` tinyint(4) NOT NULL DEFAULT 0,
  `alternative_email` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`problems_id`,`type`,`suppliers_id`),
  KEY `group` (`suppliers_id`,`type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_problems_suppliers`
--

LOCK TABLES `glpi_problems_suppliers` WRITE;
/*!40000 ALTER TABLE `glpi_problems_suppliers` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_problems_suppliers` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_problems_tickets`
--

DROP TABLE IF EXISTS `glpi_problems_tickets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_problems_tickets` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `problems_id` int(10) unsigned NOT NULL DEFAULT 0,
  `tickets_id` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`problems_id`,`tickets_id`),
  KEY `tickets_id` (`tickets_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_problems_tickets`
--

LOCK TABLES `glpi_problems_tickets` WRITE;
/*!40000 ALTER TABLE `glpi_problems_tickets` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_problems_tickets` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_problems_users`
--

DROP TABLE IF EXISTS `glpi_problems_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_problems_users` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `problems_id` int(10) unsigned NOT NULL DEFAULT 0,
  `users_id` int(10) unsigned NOT NULL DEFAULT 0,
  `type` int(11) NOT NULL DEFAULT 1,
  `use_notification` tinyint(4) NOT NULL DEFAULT 0,
  `alternative_email` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`problems_id`,`type`,`users_id`,`alternative_email`),
  KEY `user` (`users_id`,`type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_problems_users`
--

LOCK TABLES `glpi_problems_users` WRITE;
/*!40000 ALTER TABLE `glpi_problems_users` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_problems_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_problemtasks`
--

DROP TABLE IF EXISTS `glpi_problemtasks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_problemtasks` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `uuid` varchar(255) DEFAULT NULL,
  `problems_id` int(10) unsigned NOT NULL DEFAULT 0,
  `taskcategories_id` int(10) unsigned NOT NULL DEFAULT 0,
  `date` timestamp NULL DEFAULT NULL,
  `begin` timestamp NULL DEFAULT NULL,
  `end` timestamp NULL DEFAULT NULL,
  `users_id` int(10) unsigned NOT NULL DEFAULT 0,
  `users_id_editor` int(10) unsigned NOT NULL DEFAULT 0,
  `users_id_tech` int(10) unsigned NOT NULL DEFAULT 0,
  `groups_id_tech` int(10) unsigned NOT NULL DEFAULT 0,
  `content` longtext DEFAULT NULL,
  `actiontime` int(11) NOT NULL DEFAULT 0,
  `state` int(11) NOT NULL DEFAULT 0,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  `tasktemplates_id` int(10) unsigned NOT NULL DEFAULT 0,
  `timeline_position` tinyint(4) NOT NULL DEFAULT 0,
  `is_private` tinyint(4) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  UNIQUE KEY `uuid` (`uuid`),
  KEY `problems_id` (`problems_id`),
  KEY `users_id` (`users_id`),
  KEY `users_id_editor` (`users_id_editor`),
  KEY `users_id_tech` (`users_id_tech`),
  KEY `groups_id_tech` (`groups_id_tech`),
  KEY `date` (`date`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`),
  KEY `begin` (`begin`),
  KEY `end` (`end`),
  KEY `state` (`state`),
  KEY `taskcategories_id` (`taskcategories_id`),
  KEY `tasktemplates_id` (`tasktemplates_id`),
  KEY `is_private` (`is_private`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_problemtasks`
--

LOCK TABLES `glpi_problemtasks` WRITE;
/*!40000 ALTER TABLE `glpi_problemtasks` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_problemtasks` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_problemtemplatehiddenfields`
--

DROP TABLE IF EXISTS `glpi_problemtemplatehiddenfields`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_problemtemplatehiddenfields` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `problemtemplates_id` int(10) unsigned NOT NULL DEFAULT 0,
  `num` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`problemtemplates_id`,`num`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_problemtemplatehiddenfields`
--

LOCK TABLES `glpi_problemtemplatehiddenfields` WRITE;
/*!40000 ALTER TABLE `glpi_problemtemplatehiddenfields` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_problemtemplatehiddenfields` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_problemtemplatemandatoryfields`
--

DROP TABLE IF EXISTS `glpi_problemtemplatemandatoryfields`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_problemtemplatemandatoryfields` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `problemtemplates_id` int(10) unsigned NOT NULL DEFAULT 0,
  `num` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`problemtemplates_id`,`num`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_problemtemplatemandatoryfields`
--

LOCK TABLES `glpi_problemtemplatemandatoryfields` WRITE;
/*!40000 ALTER TABLE `glpi_problemtemplatemandatoryfields` DISABLE KEYS */;
INSERT INTO `glpi_problemtemplatemandatoryfields` VALUES
(1,1,21);
/*!40000 ALTER TABLE `glpi_problemtemplatemandatoryfields` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_problemtemplatepredefinedfields`
--

DROP TABLE IF EXISTS `glpi_problemtemplatepredefinedfields`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_problemtemplatepredefinedfields` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `problemtemplates_id` int(10) unsigned NOT NULL DEFAULT 0,
  `num` int(11) NOT NULL DEFAULT 0,
  `value` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `problemtemplates_id` (`problemtemplates_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_problemtemplatepredefinedfields`
--

LOCK TABLES `glpi_problemtemplatepredefinedfields` WRITE;
/*!40000 ALTER TABLE `glpi_problemtemplatepredefinedfields` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_problemtemplatepredefinedfields` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_problemtemplates`
--

DROP TABLE IF EXISTS `glpi_problemtemplates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_problemtemplates` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `comment` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_problemtemplates`
--

LOCK TABLES `glpi_problemtemplates` WRITE;
/*!40000 ALTER TABLE `glpi_problemtemplates` DISABLE KEYS */;
INSERT INTO `glpi_problemtemplates` VALUES
(1,'Default',0,1,NULL);
/*!40000 ALTER TABLE `glpi_problemtemplates` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_profilerights`
--

DROP TABLE IF EXISTS `glpi_profilerights`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_profilerights` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `profiles_id` int(10) unsigned NOT NULL DEFAULT 0,
  `name` varchar(255) DEFAULT NULL,
  `rights` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`profiles_id`,`name`),
  KEY `name` (`name`)
) ENGINE=InnoDB AUTO_INCREMENT=756 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_profilerights`
--

LOCK TABLES `glpi_profilerights` WRITE;
/*!40000 ALTER TABLE `glpi_profilerights` DISABLE KEYS */;
INSERT INTO `glpi_profilerights` VALUES
(1,1,'computer',0),
(2,1,'monitor',0),
(3,1,'software',0),
(4,1,'networking',0),
(5,1,'internet',0),
(6,1,'printer',0),
(7,1,'peripheral',0),
(8,1,'cartridge',0),
(9,1,'consumable',0),
(10,1,'phone',0),
(11,6,'queuednotification',0),
(12,1,'contact_enterprise',0),
(13,1,'document',0),
(14,1,'contract',0),
(15,1,'infocom',0),
(16,1,'knowbase',0),
(17,1,'reservation',0),
(18,1,'reports',0),
(19,1,'dropdown',0),
(20,1,'device',0),
(21,1,'typedoc',0),
(22,1,'link',0),
(23,1,'config',0),
(24,1,'rule_ticket',0),
(25,1,'rule_import',0),
(26,1,'rule_location',0),
(27,1,'rule_ldap',0),
(28,1,'rule_softwarecategories',0),
(29,1,'search_config',0),
(30,5,'location',0),
(31,7,'domain',31),
(32,1,'profile',0),
(33,1,'user',0),
(34,1,'group',0),
(35,1,'entity',0),
(36,1,'transfer',0),
(37,1,'logs',0),
(38,1,'reminder_public',1),
(39,1,'rssfeed_public',0),
(40,1,'bookmark_public',0),
(41,1,'backup',0),
(42,1,'ticket',1),
(43,1,'followup',5),
(44,1,'task',1),
(45,1,'planning',0),
(46,2,'state',0),
(47,2,'taskcategory',0),
(48,1,'statistic',0),
(49,1,'password_update',0),
(50,1,'show_group_hardware',0),
(51,1,'rule_dictionnary_software',0),
(52,1,'rule_dictionnary_dropdown',0),
(53,1,'budget',0),
(54,1,'notification',0),
(55,1,'rule_mailcollector',0),
(56,7,'solutiontemplate',23),
(57,7,'itilfollowuptemplate',23),
(58,1,'calendar',0),
(59,1,'slm',0),
(60,1,'rule_dictionnary_printer',0),
(61,1,'problem',0),
(62,2,'cable_management',0),
(63,4,'knowbasecategory',23),
(64,5,'itilcategory',0),
(65,1,'itiltemplate',0),
(66,1,'ticketrecurrent',0),
(67,1,'ticketcost',0),
(68,6,'changevalidation',20),
(69,1,'ticketvalidation',0),
(70,2,'computer',33),
(71,2,'monitor',33),
(72,2,'software',33),
(73,2,'networking',33),
(74,2,'internet',1),
(75,2,'printer',33),
(76,2,'peripheral',33),
(77,2,'cartridge',33),
(78,2,'consumable',33),
(79,2,'phone',33),
(80,5,'queuednotification',0),
(81,2,'contact_enterprise',33),
(82,2,'document',33),
(83,2,'contract',33),
(84,2,'infocom',1),
(85,2,'knowbase',10241),
(86,2,'reservation',1025),
(87,2,'reports',1),
(88,2,'dropdown',0),
(89,2,'device',0),
(90,2,'typedoc',1),
(91,2,'link',1),
(92,2,'config',0),
(93,2,'rule_ticket',0),
(94,2,'rule_import',0),
(95,2,'rule_location',0),
(96,2,'rule_ldap',0),
(97,2,'rule_softwarecategories',0),
(98,2,'search_config',1024),
(99,4,'location',23),
(100,6,'domain',0),
(101,2,'profile',0),
(102,2,'user',2049),
(103,2,'group',33),
(104,2,'entity',0),
(105,2,'transfer',0),
(106,2,'logs',0),
(107,2,'reminder_public',129),
(108,2,'rssfeed_public',129),
(109,2,'bookmark_public',0),
(110,2,'backup',0),
(111,2,'ticket',168989),
(112,2,'followup',5),
(113,2,'task',1),
(114,6,'projecttask',1025),
(115,7,'projecttask',1025),
(116,2,'planning',1),
(117,1,'state',0),
(118,1,'taskcategory',0),
(119,2,'statistic',1),
(120,2,'password_update',1),
(121,2,'show_group_hardware',0),
(122,2,'rule_dictionnary_software',0),
(123,2,'rule_dictionnary_dropdown',0),
(124,2,'budget',33),
(125,2,'notification',0),
(126,2,'rule_mailcollector',0),
(127,5,'solutiontemplate',0),
(128,5,'itilfollowuptemplate',0),
(129,6,'solutiontemplate',0),
(130,6,'itilfollowuptemplate',0),
(131,2,'calendar',0),
(132,2,'slm',0),
(133,2,'rule_dictionnary_printer',0),
(134,2,'problem',1057),
(135,1,'cable_management',0),
(136,3,'knowbasecategory',23),
(137,4,'itilcategory',23),
(138,2,'itiltemplate',0),
(139,2,'ticketrecurrent',0),
(140,2,'ticketcost',1),
(141,4,'changevalidation',1044),
(142,5,'changevalidation',20),
(143,2,'ticketvalidation',15376),
(144,3,'computer',127),
(145,3,'monitor',127),
(146,3,'software',127),
(147,3,'networking',127),
(148,3,'internet',31),
(149,3,'printer',127),
(150,3,'peripheral',127),
(151,3,'cartridge',127),
(152,3,'consumable',127),
(153,3,'phone',127),
(154,4,'queuednotification',31),
(155,3,'contact_enterprise',127),
(156,3,'document',127),
(157,3,'contract',127),
(158,3,'infocom',23),
(159,3,'knowbase',14359),
(160,3,'reservation',1055),
(161,3,'reports',1),
(162,3,'dropdown',23),
(163,3,'device',23),
(164,3,'typedoc',23),
(165,3,'link',23),
(166,3,'config',0),
(167,3,'rule_ticket',1047),
(168,3,'rule_import',0),
(169,3,'rule_location',0),
(170,3,'rule_ldap',0),
(171,3,'rule_softwarecategories',0),
(172,3,'search_config',3072),
(173,3,'location',23),
(174,5,'domain',0),
(175,3,'profile',1),
(176,3,'user',7199),
(177,3,'group',119),
(178,3,'entity',33),
(179,3,'transfer',1),
(180,3,'logs',1),
(181,3,'reminder_public',151),
(182,3,'rssfeed_public',151),
(183,3,'bookmark_public',23),
(184,3,'backup',1024),
(185,3,'ticket',261151),
(186,3,'followup',31767),
(187,3,'task',13329),
(188,3,'projecttask',1121),
(189,4,'projecttask',1121),
(190,5,'projecttask',0),
(191,3,'planning',3073),
(192,7,'taskcategory',23),
(193,7,'cable_management',31),
(194,3,'statistic',1),
(195,3,'password_update',1),
(196,3,'show_group_hardware',0),
(197,3,'rule_dictionnary_software',0),
(198,3,'rule_dictionnary_dropdown',0),
(199,3,'budget',127),
(200,3,'notification',0),
(201,3,'rule_mailcollector',23),
(202,3,'solutiontemplate',23),
(203,3,'itilfollowuptemplate',23),
(204,4,'solutiontemplate',23),
(205,4,'itilfollowuptemplate',23),
(206,3,'calendar',23),
(207,3,'slm',23),
(208,3,'rule_dictionnary_printer',0),
(209,3,'problem',1151),
(210,2,'knowbasecategory',0),
(211,3,'itilcategory',23),
(212,3,'itiltemplate',23),
(213,3,'ticketrecurrent',1),
(214,3,'ticketcost',23),
(215,2,'changevalidation',1044),
(216,3,'changevalidation',1044),
(217,3,'ticketvalidation',15376),
(218,4,'computer',255),
(219,4,'monitor',255),
(220,4,'software',255),
(221,4,'networking',255),
(222,4,'internet',159),
(223,4,'printer',255),
(224,4,'peripheral',255),
(225,4,'cartridge',255),
(226,4,'consumable',255),
(227,4,'phone',255),
(228,4,'contact_enterprise',255),
(229,4,'document',255),
(230,4,'contract',255),
(231,4,'infocom',23),
(232,4,'knowbase',15383),
(233,4,'reservation',1055),
(234,4,'reports',1),
(235,4,'dropdown',23),
(236,4,'device',23),
(237,4,'typedoc',23),
(238,4,'link',159),
(239,4,'config',3),
(240,4,'rule_ticket',1047),
(241,4,'rule_import',23),
(242,4,'rule_location',23),
(243,4,'rule_ldap',23),
(244,4,'rule_softwarecategories',23),
(245,4,'search_config',3072),
(246,2,'location',0),
(247,4,'domain',31),
(248,4,'profile',23),
(249,4,'user',7327),
(250,4,'group',119),
(251,4,'entity',3327),
(252,4,'transfer',23),
(253,4,'logs',1),
(254,4,'reminder_public',159),
(255,4,'rssfeed_public',159),
(256,4,'bookmark_public',23),
(257,4,'backup',1045),
(258,4,'ticket',261151),
(259,4,'followup',31767),
(260,4,'task',13329),
(261,7,'project',1151),
(262,1,'projecttask',0),
(263,2,'projecttask',1025),
(264,4,'planning',3073),
(265,6,'taskcategory',0),
(266,6,'cable_management',0),
(267,4,'statistic',1),
(268,4,'password_update',1),
(269,4,'show_group_hardware',1),
(270,4,'rule_dictionnary_software',23),
(271,4,'rule_dictionnary_dropdown',23),
(272,4,'budget',127),
(273,4,'notification',23),
(274,4,'rule_mailcollector',23),
(275,1,'solutiontemplate',0),
(276,1,'itilfollowuptemplate',0),
(277,2,'solutiontemplate',0),
(278,2,'itilfollowuptemplate',0),
(279,4,'calendar',23),
(280,4,'slm',23),
(281,4,'rule_dictionnary_printer',23),
(282,4,'problem',1151),
(283,1,'knowbasecategory',0),
(284,2,'itilcategory',0),
(285,4,'itiltemplate',23),
(286,4,'ticketrecurrent',23),
(287,4,'ticketcost',23),
(288,7,'change',1151),
(289,1,'changevalidation',0),
(290,4,'ticketvalidation',15376),
(291,5,'computer',0),
(292,5,'monitor',0),
(293,5,'software',0),
(294,5,'networking',0),
(295,5,'internet',0),
(296,5,'printer',0),
(297,5,'peripheral',0),
(298,5,'cartridge',0),
(299,5,'consumable',0),
(300,5,'phone',0),
(301,3,'queuednotification',0),
(302,5,'contact_enterprise',0),
(303,5,'document',0),
(304,5,'contract',0),
(305,5,'infocom',0),
(306,5,'knowbase',10240),
(307,5,'reservation',0),
(308,5,'reports',0),
(309,5,'dropdown',0),
(310,5,'device',0),
(311,5,'typedoc',0),
(312,5,'link',0),
(313,5,'config',0),
(314,5,'rule_ticket',0),
(315,5,'rule_import',0),
(316,5,'rule_location',0),
(317,5,'rule_ldap',0),
(318,5,'rule_softwarecategories',0),
(319,5,'search_config',0),
(320,1,'location',0),
(321,3,'domain',31),
(322,5,'profile',0),
(323,5,'user',1025),
(324,5,'group',0),
(325,5,'entity',0),
(326,5,'transfer',0),
(327,5,'logs',0),
(328,5,'reminder_public',128),
(329,5,'rssfeed_public',128),
(330,5,'bookmark_public',0),
(331,5,'backup',0),
(332,5,'ticket',140295),
(333,5,'followup',12295),
(334,5,'task',8193),
(335,4,'project',1151),
(336,5,'project',1151),
(337,6,'project',1151),
(338,5,'planning',1),
(339,5,'taskcategory',0),
(340,5,'cable_management',0),
(341,5,'statistic',1),
(342,5,'password_update',1),
(343,5,'show_group_hardware',0),
(344,5,'rule_dictionnary_software',0),
(345,5,'rule_dictionnary_dropdown',0),
(346,5,'budget',0),
(347,5,'notification',0),
(348,5,'rule_mailcollector',0),
(349,6,'state',0),
(350,7,'state',23),
(351,5,'calendar',0),
(352,5,'slm',0),
(353,5,'rule_dictionnary_printer',0),
(354,5,'problem',1024),
(355,7,'knowbasecategory',23),
(356,1,'itilcategory',0),
(357,5,'itiltemplate',0),
(358,5,'ticketrecurrent',0),
(359,5,'ticketcost',23),
(360,5,'change',1054),
(361,6,'change',1151),
(362,5,'ticketvalidation',3088),
(363,6,'computer',127),
(364,6,'monitor',127),
(365,6,'software',127),
(366,6,'networking',127),
(367,6,'internet',31),
(368,6,'printer',127),
(369,6,'peripheral',127),
(370,6,'cartridge',127),
(371,6,'consumable',127),
(372,6,'phone',127),
(373,2,'queuednotification',0),
(374,6,'contact_enterprise',96),
(375,6,'document',127),
(376,6,'contract',96),
(377,6,'infocom',0),
(378,6,'knowbase',14359),
(379,6,'reservation',1055),
(380,6,'reports',1),
(381,6,'dropdown',0),
(382,6,'device',0),
(383,6,'typedoc',0),
(384,6,'link',0),
(385,6,'config',0),
(386,6,'rule_ticket',0),
(387,6,'rule_import',0),
(388,6,'rule_location',0),
(389,6,'rule_ldap',0),
(390,6,'rule_softwarecategories',0),
(391,6,'search_config',0),
(392,2,'domain',0),
(393,6,'profile',0),
(394,6,'user',1055),
(395,6,'group',1),
(396,6,'entity',33),
(397,6,'transfer',1),
(398,6,'logs',0),
(399,6,'reminder_public',151),
(400,6,'rssfeed_public',151),
(401,6,'bookmark_public',0),
(402,6,'backup',0),
(403,6,'ticket',166919),
(404,6,'followup',13319),
(405,6,'task',13329),
(406,1,'project',0),
(407,2,'project',1025),
(408,3,'project',1151),
(409,6,'planning',1),
(410,4,'taskcategory',23),
(411,4,'cable_management',31),
(412,6,'statistic',1),
(413,6,'password_update',1),
(414,6,'show_group_hardware',0),
(415,6,'rule_dictionnary_software',0),
(416,6,'rule_dictionnary_dropdown',0),
(417,6,'budget',96),
(418,6,'notification',0),
(419,6,'rule_mailcollector',0),
(420,4,'state',23),
(421,5,'state',0),
(422,6,'calendar',0),
(423,6,'slm',1),
(424,6,'rule_dictionnary_printer',0),
(425,6,'problem',1121),
(426,6,'knowbasecategory',0),
(427,7,'itilcategory',23),
(428,7,'location',23),
(429,6,'itiltemplate',1),
(430,6,'ticketrecurrent',1),
(431,6,'ticketcost',23),
(432,3,'change',1151),
(433,4,'change',1151),
(434,6,'ticketvalidation',3088),
(435,7,'computer',127),
(436,7,'monitor',127),
(437,7,'software',127),
(438,7,'networking',127),
(439,7,'internet',31),
(440,7,'printer',127),
(441,7,'peripheral',127),
(442,7,'cartridge',127),
(443,7,'consumable',127),
(444,7,'phone',127),
(445,1,'queuednotification',0),
(446,7,'contact_enterprise',96),
(447,7,'document',127),
(448,7,'contract',96),
(449,7,'infocom',0),
(450,7,'knowbase',14359),
(451,7,'reservation',1055),
(452,7,'reports',1),
(453,7,'dropdown',0),
(454,7,'device',0),
(455,7,'typedoc',0),
(456,7,'link',0),
(457,7,'config',0),
(458,7,'rule_ticket',1047),
(459,7,'rule_import',0),
(460,7,'rule_location',0),
(461,7,'rule_ldap',0),
(462,7,'rule_softwarecategories',0),
(463,7,'search_config',0),
(464,1,'domain',0),
(465,7,'profile',0),
(466,7,'user',1055),
(467,7,'group',1),
(468,7,'entity',33),
(469,7,'transfer',1),
(470,7,'logs',1),
(471,7,'reminder_public',151),
(472,7,'rssfeed_public',151),
(473,7,'bookmark_public',0),
(474,7,'backup',0),
(475,7,'ticket',261151),
(476,7,'followup',31767),
(477,7,'task',13329),
(478,7,'queuednotification',0),
(479,7,'planning',3073),
(480,3,'taskcategory',23),
(481,3,'cable_management',31),
(482,7,'statistic',1),
(483,7,'password_update',1),
(484,7,'show_group_hardware',0),
(485,7,'rule_dictionnary_software',0),
(486,7,'rule_dictionnary_dropdown',0),
(487,7,'budget',96),
(488,7,'notification',0),
(489,7,'rule_mailcollector',23),
(490,7,'changevalidation',1044),
(491,3,'state',23),
(492,7,'calendar',23),
(493,7,'slm',23),
(494,7,'rule_dictionnary_printer',0),
(495,7,'problem',1151),
(496,5,'knowbasecategory',0),
(497,6,'itilcategory',0),
(498,6,'location',0),
(499,7,'itiltemplate',23),
(500,7,'ticketrecurrent',1),
(501,7,'ticketcost',23),
(502,1,'change',0),
(503,2,'change',1057),
(504,7,'ticketvalidation',15376),
(505,8,'backup',1),
(506,8,'bookmark_public',1),
(507,8,'budget',33),
(508,8,'calendar',1),
(509,8,'cartridge',33),
(510,8,'change',1057),
(511,8,'changevalidation',0),
(512,8,'computer',33),
(513,8,'config',1),
(514,8,'consumable',33),
(515,8,'contact_enterprise',33),
(516,8,'contract',33),
(517,8,'device',1),
(518,8,'document',33),
(519,8,'domain',1),
(520,8,'dropdown',1),
(521,8,'entity',33),
(522,8,'followup',8193),
(523,8,'global_validation',0),
(524,8,'group',33),
(525,8,'infocom',1),
(526,8,'internet',1),
(527,8,'itilcategory',1),
(528,8,'knowbase',10241),
(529,8,'knowbasecategory',1),
(530,8,'link',1),
(531,8,'location',1),
(532,8,'logs',1),
(533,8,'monitor',33),
(534,8,'cable_management',1),
(535,8,'networking',33),
(536,8,'notification',1),
(537,8,'password_update',0),
(538,8,'peripheral',33),
(539,8,'phone',33),
(540,8,'planning',3073),
(541,8,'printer',33),
(542,8,'problem',1057),
(543,8,'profile',1),
(544,8,'project',1057),
(545,8,'projecttask',33),
(546,8,'queuednotification',1),
(547,8,'reminder_public',1),
(548,8,'reports',1),
(549,8,'reservation',129),
(550,8,'rssfeed_public',129),
(551,8,'rule_dictionnary_dropdown',1),
(552,8,'rule_dictionnary_printer',1),
(553,8,'rule_dictionnary_software',1),
(554,8,'rule_import',1),
(555,8,'rule_location',1),
(556,8,'rule_ldap',1),
(557,8,'rule_mailcollector',1),
(558,8,'rule_softwarecategories',1),
(559,8,'rule_ticket',1),
(560,8,'search_config',0),
(561,8,'show_group_hardware',1),
(562,8,'slm',1),
(563,8,'software',33),
(564,8,'solutiontemplate',1),
(565,8,'itilfollowuptemplate',1),
(566,8,'state',1),
(567,8,'statistic',1),
(568,8,'task',8193),
(569,8,'taskcategory',1),
(570,8,'ticket',138241),
(571,8,'ticketcost',1),
(572,8,'ticketrecurrent',1),
(573,8,'itiltemplate',1),
(574,8,'ticketvalidation',0),
(575,8,'transfer',1),
(576,8,'typedoc',1),
(577,8,'user',1),
(578,1,'license',0),
(579,2,'license',33),
(580,3,'license',127),
(581,4,'license',255),
(582,5,'license',0),
(583,6,'license',127),
(584,7,'license',127),
(585,8,'license',33),
(586,1,'line',0),
(587,2,'line',33),
(588,3,'line',127),
(589,4,'line',255),
(590,5,'line',0),
(591,6,'line',127),
(592,7,'line',127),
(593,8,'line',33),
(594,1,'lineoperator',0),
(595,2,'lineoperator',33),
(596,3,'lineoperator',23),
(597,4,'lineoperator',23),
(598,5,'lineoperator',0),
(599,6,'lineoperator',0),
(600,7,'lineoperator',23),
(601,8,'lineoperator',1),
(602,1,'devicesimcard_pinpuk',0),
(603,2,'devicesimcard_pinpuk',1),
(604,3,'devicesimcard_pinpuk',3),
(605,4,'devicesimcard_pinpuk',3),
(606,5,'devicesimcard_pinpuk',0),
(607,6,'devicesimcard_pinpuk',3),
(608,7,'devicesimcard_pinpuk',3),
(609,8,'devicesimcard_pinpuk',1),
(610,1,'certificate',0),
(611,2,'certificate',33),
(612,3,'certificate',127),
(613,4,'certificate',255),
(614,5,'certificate',0),
(615,6,'certificate',127),
(616,7,'certificate',127),
(617,8,'certificate',33),
(618,1,'datacenter',0),
(619,2,'datacenter',1),
(620,3,'datacenter',31),
(621,4,'datacenter',31),
(622,5,'datacenter',0),
(623,6,'datacenter',31),
(624,7,'datacenter',31),
(625,8,'datacenter',1),
(626,4,'rule_asset',1047),
(627,1,'personalization',3),
(628,2,'personalization',3),
(629,3,'personalization',3),
(630,4,'personalization',3),
(631,5,'personalization',3),
(632,6,'personalization',3),
(633,7,'personalization',3),
(634,8,'personalization',3),
(635,1,'rule_asset',0),
(636,2,'rule_asset',0),
(637,3,'rule_asset',0),
(638,5,'rule_asset',0),
(639,6,'rule_asset',0),
(640,7,'rule_asset',0),
(641,8,'rule_asset',0),
(642,1,'global_validation',0),
(643,2,'global_validation',0),
(644,3,'global_validation',0),
(645,4,'global_validation',0),
(646,5,'global_validation',0),
(647,6,'global_validation',0),
(648,7,'global_validation',0),
(649,1,'cluster',0),
(650,2,'cluster',1),
(651,3,'cluster',31),
(652,4,'cluster',31),
(653,5,'cluster',0),
(654,6,'cluster',31),
(655,7,'cluster',31),
(656,8,'cluster',1),
(657,1,'externalevent',0),
(658,2,'externalevent',1),
(659,3,'externalevent',1055),
(660,4,'externalevent',1055),
(661,5,'externalevent',0),
(662,6,'externalevent',1),
(663,7,'externalevent',31),
(664,8,'externalevent',1),
(665,1,'dashboard',0),
(666,2,'dashboard',0),
(667,3,'dashboard',0),
(668,4,'dashboard',23),
(669,5,'dashboard',1),
(670,6,'dashboard',0),
(671,7,'dashboard',0),
(672,8,'dashboard',0),
(673,1,'appliance',0),
(674,2,'appliance',1),
(675,3,'appliance',31),
(676,4,'appliance',31),
(677,5,'appliance',0),
(678,6,'appliance',31),
(679,7,'appliance',31),
(680,8,'appliance',1),
(681,1,'inventory',0),
(682,2,'inventory',0),
(683,3,'inventory',3073),
(684,4,'inventory',3073),
(685,5,'inventory',0),
(686,6,'inventory',0),
(687,7,'inventory',0),
(688,8,'inventory',0),
(689,1,'pendingreason',0),
(690,2,'pendingreason',0),
(691,3,'pendingreason',31),
(692,4,'pendingreason',31),
(693,5,'pendingreason',1),
(694,6,'pendingreason',1),
(695,7,'pendingreason',1),
(696,8,'pendingreason',1),
(697,1,'database',0),
(698,2,'database',1),
(699,3,'database',31),
(700,4,'database',31),
(701,5,'database',0),
(702,6,'database',31),
(703,7,'database',31),
(704,8,'database',1),
(705,1,'recurrentchange',0),
(706,2,'recurrentchange',0),
(707,3,'recurrentchange',1),
(708,4,'recurrentchange',31),
(709,5,'recurrentchange',0),
(710,6,'recurrentchange',1),
(711,7,'recurrentchange',1),
(712,8,'recurrentchange',1),
(713,1,'locked_field',0),
(714,2,'locked_field',0),
(715,3,'locked_field',0),
(716,4,'locked_field',6),
(717,5,'locked_field',0),
(718,6,'locked_field',0),
(719,7,'locked_field',0),
(720,8,'locked_field',0),
(721,1,'snmpcredential',0),
(722,2,'snmpcredential',0),
(723,3,'snmpcredential',0),
(724,4,'snmpcredential',31),
(725,5,'snmpcredential',0),
(726,6,'snmpcredential',0),
(727,7,'snmpcredential',0),
(728,8,'snmpcredential',0),
(729,1,'refusedequipment',0),
(730,2,'refusedequipment',0),
(731,3,'refusedequipment',0),
(732,4,'refusedequipment',19),
(733,5,'refusedequipment',0),
(734,6,'refusedequipment',0),
(735,7,'refusedequipment',0),
(736,8,'refusedequipment',0),
(737,1,'agent',0),
(738,2,'agent',0),
(739,3,'agent',0),
(740,4,'agent',19),
(741,5,'agent',0),
(742,6,'agent',0),
(743,7,'agent',0),
(744,8,'agent',0),
(745,1,'unmanaged',0),
(746,2,'unmanaged',0),
(747,3,'unmanaged',0),
(748,4,'unmanaged',27),
(749,5,'unmanaged',0),
(750,6,'unmanaged',0),
(751,7,'unmanaged',0),
(752,8,'unmanaged',0),
(753,4,'system_logs',1),
(754,5,'system_logs',0),
(755,1,'system_logs',0);
/*!40000 ALTER TABLE `glpi_profilerights` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_profiles`
--

DROP TABLE IF EXISTS `glpi_profiles`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_profiles` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `interface` varchar(255) DEFAULT 'helpdesk',
  `is_default` tinyint(4) NOT NULL DEFAULT 0,
  `helpdesk_hardware` int(11) NOT NULL DEFAULT 0,
  `helpdesk_item_type` text DEFAULT NULL,
  `ticket_status` text DEFAULT NULL COMMENT 'json encoded array of from/dest allowed status change',
  `date_mod` timestamp NULL DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `problem_status` text DEFAULT NULL COMMENT 'json encoded array of from/dest allowed status change',
  `create_ticket_on_login` tinyint(4) NOT NULL DEFAULT 0,
  `tickettemplates_id` int(10) unsigned NOT NULL DEFAULT 0,
  `changetemplates_id` int(10) unsigned NOT NULL DEFAULT 0,
  `problemtemplates_id` int(10) unsigned NOT NULL DEFAULT 0,
  `change_status` text DEFAULT NULL COMMENT 'json encoded array of from/dest allowed status change',
  `managed_domainrecordtypes` text DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `interface` (`interface`),
  KEY `is_default` (`is_default`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`),
  KEY `tickettemplates_id` (`tickettemplates_id`),
  KEY `changetemplates_id` (`changetemplates_id`),
  KEY `problemtemplates_id` (`problemtemplates_id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_profiles`
--

LOCK TABLES `glpi_profiles` WRITE;
/*!40000 ALTER TABLE `glpi_profiles` DISABLE KEYS */;
INSERT INTO `glpi_profiles` VALUES
(1,'Usuário Padrão','helpdesk',1,1,'[\"Computer\",\"Monitor\",\"NetworkEquipment\",\"Peripheral\",\"Phone\",\"Printer\",\"Software\",\"DCRoom\",\"Rack\",\"Enclosure\",\"Database\"]','{\"1\":{\"2\":0,\"3\":0,\"4\":0,\"5\":0,\"6\":0},\"2\":{\"1\":0,\"3\":0,\"4\":0,\"5\":0,\"6\":0},\"3\":{\"1\":0,\"2\":0,\"4\":0,\"5\":0,\"6\":0},\"4\":{\"1\":0,\"2\":0,\"3\":0,\"5\":0,\"6\":0},\"5\":{\"1\":0,\"2\":0,\"3\":0,\"4\":0},\"6\":{\"1\":0,\"2\":0,\"3\":0,\"4\":0,\"5\":0}}','2025-01-29 03:17:03','','[]',0,0,0,0,NULL,'[]',NULL),
(2,'Observer','central',0,1,'[\"Computer\",\"Monitor\",\"NetworkEquipment\",\"Peripheral\",\"Phone\",\"Printer\",\"Software\", \"DCRoom\", \"Rack\", \"Enclosure\", \"Database\"]','[]',NULL,'','[]',0,0,0,0,NULL,'[]',NULL),
(3,'Admin','central',0,3,'[\"Computer\",\"Monitor\",\"NetworkEquipment\",\"Peripheral\",\"Phone\",\"Printer\",\"Software\", \"DCRoom\", \"Rack\", \"Enclosure\", \"Database\"]','[]',NULL,'','[]',0,0,0,0,NULL,'[-1]',NULL),
(4,'Super-Admin','central',0,3,'[\"Computer\",\"Monitor\",\"NetworkEquipment\",\"Peripheral\",\"Phone\",\"Printer\",\"Software\", \"DCRoom\", \"Rack\", \"Enclosure\", \"Database\"]','[]',NULL,'','[]',0,0,0,0,NULL,'[-1]',NULL),
(5,'Wintech','central',0,3,'[\"Computer\",\"Monitor\",\"NetworkEquipment\",\"Peripheral\",\"Phone\",\"Printer\",\"Software\", \"DCRoom\", \"Rack\", \"Enclosure\", \"Database\"]','[]','2025-01-03 01:33:28','','[]',1,0,0,0,NULL,'[]',NULL),
(6,'Technician','central',0,3,'[\"Computer\",\"Monitor\",\"NetworkEquipment\",\"Peripheral\",\"Phone\",\"Printer\",\"Software\", \"DCRoom\", \"Rack\", \"Enclosure\", \"Database\"]','[]',NULL,'','[]',0,0,0,0,NULL,'[]',NULL),
(7,'Supervisor','central',0,3,'[\"Computer\",\"Monitor\",\"NetworkEquipment\",\"Peripheral\",\"Phone\",\"Printer\",\"Software\", \"DCRoom\", \"Rack\", \"Enclosure\", \"Database\"]','[]',NULL,'','[]',0,0,0,0,NULL,'[]',NULL),
(8,'Read-Only','central',0,0,'[]','{\"1\":{\"2\":0,\"3\":0,\"4\":0,\"5\":0,\"6\":0},\"2\":{\"1\":0,\"3\":0,\"4\":0,\"5\":0,\"6\":0},\"3\":{\"1\":0,\"2\":0,\"4\":0,\"5\":0,\"6\":0},\"4\":{\"1\":0,\"2\":0,\"3\":0,\"5\":0,\"6\":0},\"5\":{\"1\":0,\"2\":0,\"3\":0,\"4\":0,\"6\":0},\"6\":{\"1\":0,\"2\":0,\"3\":0,\"4\":0,\"5\":0}}',NULL,'This profile defines read-only access. It is used when objects are locked. It can also be used to give to users rights to unlock objects.','{\"1\":{\"7\":0,\"2\":0,\"3\":0,\"4\":0,\"5\":0,\"8\":0,\"6\":0},\"7\":{\"1\":0,\"2\":0,\"3\":0,\"4\":0,\"5\":0,\"8\":0,\"6\":0},\"2\":{\"1\":0,\"7\":0,\"3\":0,\"4\":0,\"5\":0,\"8\":0,\"6\":0},\"3\":{\"1\":0,\"7\":0,\"2\":0,\"4\":0,\"5\":0,\"8\":0,\"6\":0},\"4\":{\"1\":0,\"7\":0,\"2\":0,\"3\":0,\"5\":0,\"8\":0,\"6\":0},\"5\":{\"1\":0,\"7\":0,\"2\":0,\"3\":0,\"4\":0,\"8\":0,\"6\":0},\"8\":{\"1\":0,\"7\":0,\"2\":0,\"3\":0,\"4\":0,\"5\":0,\"6\":0},\"6\":{\"1\":0,\"7\":0,\"2\":0,\"3\":0,\"4\":0,\"5\":0,\"8\":0}}',0,0,0,0,'{\"1\":{\"9\":0,\"10\":0,\"7\":0,\"4\":0,\"11\":0,\"12\":0,\"5\":0,\"8\":0,\"6\":0},\"9\":{\"1\":0,\"10\":0,\"7\":0,\"4\":0,\"11\":0,\"12\":0,\"5\":0,\"8\":0,\"6\":0},\"10\":{\"1\":0,\"9\":0,\"7\":0,\"4\":0,\"11\":0,\"12\":0,\"5\":0,\"8\":0,\"6\":0},\"7\":{\"1\":0,\"9\":0,\"10\":0,\"4\":0,\"11\":0,\"12\":0,\"5\":0,\"8\":0,\"6\":0},\"4\":{\"1\":0,\"9\":0,\"10\":0,\"7\":0,\"11\":0,\"12\":0,\"5\":0,\"8\":0,\"6\":0},\"11\":{\"1\":0,\"9\":0,\"10\":0,\"7\":0,\"4\":0,\"12\":0,\"5\":0,\"8\":0,\"6\":0},\"12\":{\"1\":0,\"9\":0,\"10\":0,\"7\":0,\"4\":0,\"11\":0,\"5\":0,\"8\":0,\"6\":0},\"5\":{\"1\":0,\"9\":0,\"10\":0,\"7\":0,\"4\":0,\"11\":0,\"12\":0,\"8\":0,\"6\":0},\"8\":{\"1\":0,\"9\":0,\"10\":0,\"7\":0,\"4\":0,\"11\":0,\"12\":0,\"5\":0,\"6\":0},\"6\":{\"1\":0,\"9\":0,\"10\":0,\"7\":0,\"4\":0,\"11\":0,\"12\":0,\"5\":0,\"8\":0}}','[]',NULL);
/*!40000 ALTER TABLE `glpi_profiles` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_profiles_reminders`
--

DROP TABLE IF EXISTS `glpi_profiles_reminders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_profiles_reminders` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `reminders_id` int(10) unsigned NOT NULL DEFAULT 0,
  `profiles_id` int(10) unsigned NOT NULL DEFAULT 0,
  `entities_id` int(10) unsigned DEFAULT NULL,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `no_entity_restriction` tinyint(4) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `reminders_id` (`reminders_id`),
  KEY `profiles_id` (`profiles_id`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_profiles_reminders`
--

LOCK TABLES `glpi_profiles_reminders` WRITE;
/*!40000 ALTER TABLE `glpi_profiles_reminders` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_profiles_reminders` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_profiles_rssfeeds`
--

DROP TABLE IF EXISTS `glpi_profiles_rssfeeds`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_profiles_rssfeeds` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `rssfeeds_id` int(10) unsigned NOT NULL DEFAULT 0,
  `profiles_id` int(10) unsigned NOT NULL DEFAULT 0,
  `entities_id` int(10) unsigned DEFAULT NULL,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `no_entity_restriction` tinyint(4) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `rssfeeds_id` (`rssfeeds_id`),
  KEY `profiles_id` (`profiles_id`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_profiles_rssfeeds`
--

LOCK TABLES `glpi_profiles_rssfeeds` WRITE;
/*!40000 ALTER TABLE `glpi_profiles_rssfeeds` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_profiles_rssfeeds` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_profiles_users`
--

DROP TABLE IF EXISTS `glpi_profiles_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_profiles_users` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `users_id` int(10) unsigned NOT NULL DEFAULT 0,
  `profiles_id` int(10) unsigned NOT NULL DEFAULT 0,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 1,
  `is_dynamic` tinyint(4) NOT NULL DEFAULT 0,
  `is_default_profile` tinyint(4) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `entities_id` (`entities_id`),
  KEY `profiles_id` (`profiles_id`),
  KEY `users_id` (`users_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `is_dynamic` (`is_dynamic`)
) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_profiles_users`
--

LOCK TABLES `glpi_profiles_users` WRITE;
/*!40000 ALTER TABLE `glpi_profiles_users` DISABLE KEYS */;
INSERT INTO `glpi_profiles_users` VALUES
(7,8,4,0,1,0,0),
(10,8,5,0,1,0,0),
(11,9,1,2,0,0,0),
(14,7,4,0,1,0,0),
(15,10,5,0,1,0,0),
(16,7,5,3,1,0,0),
(17,7,4,3,1,0,0);
/*!40000 ALTER TABLE `glpi_profiles_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_projectcosts`
--

DROP TABLE IF EXISTS `glpi_projectcosts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_projectcosts` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `projects_id` int(10) unsigned NOT NULL DEFAULT 0,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `begin_date` date DEFAULT NULL,
  `end_date` date DEFAULT NULL,
  `cost` decimal(20,4) NOT NULL DEFAULT 0.0000,
  `budgets_id` int(10) unsigned NOT NULL DEFAULT 0,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `projects_id` (`projects_id`),
  KEY `begin_date` (`begin_date`),
  KEY `end_date` (`end_date`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `budgets_id` (`budgets_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_projectcosts`
--

LOCK TABLES `glpi_projectcosts` WRITE;
/*!40000 ALTER TABLE `glpi_projectcosts` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_projectcosts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_projects`
--

DROP TABLE IF EXISTS `glpi_projects`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_projects` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `code` varchar(255) DEFAULT NULL,
  `priority` int(11) NOT NULL DEFAULT 1,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `projects_id` int(10) unsigned NOT NULL DEFAULT 0,
  `projectstates_id` int(10) unsigned NOT NULL DEFAULT 0,
  `projecttypes_id` int(10) unsigned NOT NULL DEFAULT 0,
  `date` timestamp NULL DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `users_id` int(10) unsigned NOT NULL DEFAULT 0,
  `groups_id` int(10) unsigned NOT NULL DEFAULT 0,
  `plan_start_date` timestamp NULL DEFAULT NULL,
  `plan_end_date` timestamp NULL DEFAULT NULL,
  `real_start_date` timestamp NULL DEFAULT NULL,
  `real_end_date` timestamp NULL DEFAULT NULL,
  `percent_done` int(11) NOT NULL DEFAULT 0,
  `auto_percent_done` tinyint(4) NOT NULL DEFAULT 0,
  `show_on_global_gantt` tinyint(4) NOT NULL DEFAULT 0,
  `content` longtext DEFAULT NULL,
  `comment` longtext DEFAULT NULL,
  `is_deleted` tinyint(4) NOT NULL DEFAULT 0,
  `date_creation` timestamp NULL DEFAULT NULL,
  `projecttemplates_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_template` tinyint(4) NOT NULL DEFAULT 0,
  `template_name` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `code` (`code`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `is_deleted` (`is_deleted`),
  KEY `projects_id` (`projects_id`),
  KEY `projectstates_id` (`projectstates_id`),
  KEY `projecttypes_id` (`projecttypes_id`),
  KEY `priority` (`priority`),
  KEY `date` (`date`),
  KEY `date_mod` (`date_mod`),
  KEY `users_id` (`users_id`),
  KEY `groups_id` (`groups_id`),
  KEY `plan_start_date` (`plan_start_date`),
  KEY `plan_end_date` (`plan_end_date`),
  KEY `real_start_date` (`real_start_date`),
  KEY `real_end_date` (`real_end_date`),
  KEY `percent_done` (`percent_done`),
  KEY `show_on_global_gantt` (`show_on_global_gantt`),
  KEY `date_creation` (`date_creation`),
  KEY `projecttemplates_id` (`projecttemplates_id`),
  KEY `is_template` (`is_template`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_projects`
--

LOCK TABLES `glpi_projects` WRITE;
/*!40000 ALTER TABLE `glpi_projects` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_projects` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_projectstates`
--

DROP TABLE IF EXISTS `glpi_projectstates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_projectstates` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `color` varchar(255) DEFAULT NULL,
  `is_finished` tinyint(4) NOT NULL DEFAULT 0,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `is_finished` (`is_finished`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_projectstates`
--

LOCK TABLES `glpi_projectstates` WRITE;
/*!40000 ALTER TABLE `glpi_projectstates` DISABLE KEYS */;
INSERT INTO `glpi_projectstates` VALUES
(1,'New',NULL,'#06ff00',0,NULL,NULL),
(2,'Processing',NULL,'#ffb800',0,NULL,NULL),
(3,'Closed',NULL,'#ff0000',1,NULL,NULL);
/*!40000 ALTER TABLE `glpi_projectstates` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_projecttasklinks`
--

DROP TABLE IF EXISTS `glpi_projecttasklinks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_projecttasklinks` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `projecttasks_id_source` int(10) unsigned NOT NULL,
  `source_uuid` varchar(255) NOT NULL,
  `projecttasks_id_target` int(10) unsigned NOT NULL,
  `target_uuid` varchar(255) NOT NULL,
  `type` tinyint(4) NOT NULL DEFAULT 0,
  `lag` smallint(6) DEFAULT 0,
  `lead` smallint(6) DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `projecttasks_id_source` (`projecttasks_id_source`),
  KEY `projecttasks_id_target` (`projecttasks_id_target`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_projecttasklinks`
--

LOCK TABLES `glpi_projecttasklinks` WRITE;
/*!40000 ALTER TABLE `glpi_projecttasklinks` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_projecttasklinks` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_projecttasks`
--

DROP TABLE IF EXISTS `glpi_projecttasks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_projecttasks` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `uuid` varchar(255) DEFAULT NULL,
  `name` varchar(255) DEFAULT NULL,
  `content` longtext DEFAULT NULL,
  `comment` longtext DEFAULT NULL,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `projects_id` int(10) unsigned NOT NULL DEFAULT 0,
  `projecttasks_id` int(10) unsigned NOT NULL DEFAULT 0,
  `date_creation` timestamp NULL DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `plan_start_date` timestamp NULL DEFAULT NULL,
  `plan_end_date` timestamp NULL DEFAULT NULL,
  `real_start_date` timestamp NULL DEFAULT NULL,
  `real_end_date` timestamp NULL DEFAULT NULL,
  `planned_duration` int(11) NOT NULL DEFAULT 0,
  `effective_duration` int(11) NOT NULL DEFAULT 0,
  `projectstates_id` int(10) unsigned NOT NULL DEFAULT 0,
  `projecttasktypes_id` int(10) unsigned NOT NULL DEFAULT 0,
  `users_id` int(10) unsigned NOT NULL DEFAULT 0,
  `percent_done` int(11) NOT NULL DEFAULT 0,
  `auto_percent_done` tinyint(4) NOT NULL DEFAULT 0,
  `is_milestone` tinyint(4) NOT NULL DEFAULT 0,
  `projecttasktemplates_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_template` tinyint(4) NOT NULL DEFAULT 0,
  `template_name` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `uuid` (`uuid`),
  KEY `name` (`name`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `projects_id` (`projects_id`),
  KEY `projecttasks_id` (`projecttasks_id`),
  KEY `date_creation` (`date_creation`),
  KEY `date_mod` (`date_mod`),
  KEY `users_id` (`users_id`),
  KEY `plan_start_date` (`plan_start_date`),
  KEY `plan_end_date` (`plan_end_date`),
  KEY `real_start_date` (`real_start_date`),
  KEY `real_end_date` (`real_end_date`),
  KEY `percent_done` (`percent_done`),
  KEY `projectstates_id` (`projectstates_id`),
  KEY `projecttasktypes_id` (`projecttasktypes_id`),
  KEY `projecttasktemplates_id` (`projecttasktemplates_id`),
  KEY `is_template` (`is_template`),
  KEY `is_milestone` (`is_milestone`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_projecttasks`
--

LOCK TABLES `glpi_projecttasks` WRITE;
/*!40000 ALTER TABLE `glpi_projecttasks` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_projecttasks` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_projecttasks_tickets`
--

DROP TABLE IF EXISTS `glpi_projecttasks_tickets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_projecttasks_tickets` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `tickets_id` int(10) unsigned NOT NULL DEFAULT 0,
  `projecttasks_id` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`tickets_id`,`projecttasks_id`),
  KEY `projects_id` (`projecttasks_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_projecttasks_tickets`
--

LOCK TABLES `glpi_projecttasks_tickets` WRITE;
/*!40000 ALTER TABLE `glpi_projecttasks_tickets` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_projecttasks_tickets` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_projecttaskteams`
--

DROP TABLE IF EXISTS `glpi_projecttaskteams`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_projecttaskteams` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `projecttasks_id` int(10) unsigned NOT NULL DEFAULT 0,
  `itemtype` varchar(100) DEFAULT NULL,
  `items_id` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`projecttasks_id`,`itemtype`,`items_id`),
  KEY `item` (`itemtype`,`items_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_projecttaskteams`
--

LOCK TABLES `glpi_projecttaskteams` WRITE;
/*!40000 ALTER TABLE `glpi_projecttaskteams` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_projecttaskteams` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_projecttasktemplates`
--

DROP TABLE IF EXISTS `glpi_projecttasktemplates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_projecttasktemplates` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `name` varchar(255) DEFAULT NULL,
  `description` longtext DEFAULT NULL,
  `comment` longtext DEFAULT NULL,
  `projects_id` int(10) unsigned NOT NULL DEFAULT 0,
  `projecttasks_id` int(10) unsigned NOT NULL DEFAULT 0,
  `plan_start_date` timestamp NULL DEFAULT NULL,
  `plan_end_date` timestamp NULL DEFAULT NULL,
  `real_start_date` timestamp NULL DEFAULT NULL,
  `real_end_date` timestamp NULL DEFAULT NULL,
  `planned_duration` int(11) NOT NULL DEFAULT 0,
  `effective_duration` int(11) NOT NULL DEFAULT 0,
  `projectstates_id` int(10) unsigned NOT NULL DEFAULT 0,
  `projecttasktypes_id` int(10) unsigned NOT NULL DEFAULT 0,
  `users_id` int(10) unsigned NOT NULL DEFAULT 0,
  `percent_done` int(11) NOT NULL DEFAULT 0,
  `is_milestone` tinyint(4) NOT NULL DEFAULT 0,
  `comments` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `projects_id` (`projects_id`),
  KEY `projecttasks_id` (`projecttasks_id`),
  KEY `date_creation` (`date_creation`),
  KEY `date_mod` (`date_mod`),
  KEY `users_id` (`users_id`),
  KEY `plan_start_date` (`plan_start_date`),
  KEY `plan_end_date` (`plan_end_date`),
  KEY `real_start_date` (`real_start_date`),
  KEY `real_end_date` (`real_end_date`),
  KEY `percent_done` (`percent_done`),
  KEY `projectstates_id` (`projectstates_id`),
  KEY `projecttasktypes_id` (`projecttasktypes_id`),
  KEY `is_milestone` (`is_milestone`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_projecttasktemplates`
--

LOCK TABLES `glpi_projecttasktemplates` WRITE;
/*!40000 ALTER TABLE `glpi_projecttasktemplates` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_projecttasktemplates` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_projecttasktypes`
--

DROP TABLE IF EXISTS `glpi_projecttasktypes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_projecttasktypes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_projecttasktypes`
--

LOCK TABLES `glpi_projecttasktypes` WRITE;
/*!40000 ALTER TABLE `glpi_projecttasktypes` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_projecttasktypes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_projectteams`
--

DROP TABLE IF EXISTS `glpi_projectteams`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_projectteams` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `projects_id` int(10) unsigned NOT NULL DEFAULT 0,
  `itemtype` varchar(100) DEFAULT NULL,
  `items_id` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`projects_id`,`itemtype`,`items_id`),
  KEY `item` (`itemtype`,`items_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_projectteams`
--

LOCK TABLES `glpi_projectteams` WRITE;
/*!40000 ALTER TABLE `glpi_projectteams` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_projectteams` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_projecttypes`
--

DROP TABLE IF EXISTS `glpi_projecttypes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_projecttypes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_projecttypes`
--

LOCK TABLES `glpi_projecttypes` WRITE;
/*!40000 ALTER TABLE `glpi_projecttypes` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_projecttypes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_queuednotifications`
--

DROP TABLE IF EXISTS `glpi_queuednotifications`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_queuednotifications` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `itemtype` varchar(100) DEFAULT NULL,
  `items_id` int(10) unsigned NOT NULL DEFAULT 0,
  `notificationtemplates_id` int(10) unsigned NOT NULL DEFAULT 0,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_deleted` tinyint(4) NOT NULL DEFAULT 0,
  `sent_try` int(11) NOT NULL DEFAULT 0,
  `create_time` timestamp NULL DEFAULT NULL,
  `send_time` timestamp NULL DEFAULT NULL,
  `sent_time` timestamp NULL DEFAULT NULL,
  `name` text DEFAULT NULL,
  `sender` text DEFAULT NULL,
  `sendername` text DEFAULT NULL,
  `recipient` text DEFAULT NULL,
  `recipientname` text DEFAULT NULL,
  `replyto` text DEFAULT NULL,
  `replytoname` text DEFAULT NULL,
  `headers` text DEFAULT NULL,
  `body_html` longtext DEFAULT NULL,
  `body_text` longtext DEFAULT NULL,
  `messageid` text DEFAULT NULL,
  `documents` text DEFAULT NULL,
  `mode` varchar(20) NOT NULL COMMENT 'See Notification_NotificationTemplate::MODE_* constants',
  `event` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `item` (`itemtype`,`items_id`,`notificationtemplates_id`),
  KEY `is_deleted` (`is_deleted`),
  KEY `entities_id` (`entities_id`),
  KEY `sent_try` (`sent_try`),
  KEY `create_time` (`create_time`),
  KEY `send_time` (`send_time`),
  KEY `sent_time` (`sent_time`),
  KEY `mode` (`mode`),
  KEY `notificationtemplates_id` (`notificationtemplates_id`),
  KEY `recipient` (`recipient`(255))
) ENGINE=InnoDB AUTO_INCREMENT=1332 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_queuednotifications`
--

LOCK TABLES `glpi_queuednotifications` WRITE;
/*!40000 ALTER TABLE `glpi_queuednotifications` DISABLE KEYS */;
INSERT INTO `glpi_queuednotifications` VALUES
(128,'Ticket',43,4,2,1,6,'2025-01-17 12:02:32','2025-01-20 11:19:23',NULL,'[GLPI #0000043] Encerramento do chamado Lentidão jose.carmo@tecnomulti.com','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000043] Encerramento do chamado Lentid&#38;atilde;o jose.carmo@tecnomulti.com&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_43\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_43&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Lentid&#38;atilde;o jose.carmo@tecnomulti.com &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:16-01-2025 07:59 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:17-01-2025 09:02 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- Novo chamado     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Lentidão&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;jose.carmo@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 8695-4083&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;O notebook não está abrindo mais de 2 &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 16-01-2025 10:21&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [16-01-2025 10:21]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alex Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Foram excluídos arquivos de log da pasta winevt e deixaremos em observação se volta acontecer. Se sim, será necessário a reinstalação do sistema operacional.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;16-01-2025 10:21&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [16-01-2025 10:14]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alex Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Foi encontrada uma pasta do sistema operacional gerando logs quase que diariamente ocasionando a falta de espaço em disco. &#60;/p&#62;\r\n&#60;p&#62;&#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=9&#38;amp;itemtype=Ticket&#38;amp;items_id=43\" target=\"_blank\"&#62;&#60;img alt=\"796eb77d-b2d8e96f-67890626156559.26126155\" width=\"625\" src=\"/front/document.send.php?docid=9&#38;amp;itemtype=Ticket&#38;amp;items_id=43\" /&#62;&#60;/a&#62;&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;16-01-2025 10:14&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [16-01-2025 09:47]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alex Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Olá, bom dia.&#60;/p&#62;\r\n&#60;p&#62;Posso acessar para verificar. Por favor me passe o ID do anydesk.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;16-01-2025 09:47&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 3&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_43 \n\n Chamado: Descrição\n\n Título : Lentidão jose.carmo@tecnomulti.com\n Requerentes :  tecnomulti  \n Data de abertura : 16-01-2025 07:59\n Data de fechamento : 17-01-2025 09:02\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - Novo chamado\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Lentidão\n2) E-MAIL : jose.carmo@tecnomulti.com\n3) TELEFONE : 81 8695-4083\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nO notebook não está abrindo mais de 2 \n \n\n Data da solução : 16-01-2025 10:21\n Tipo de solução : \n Solução : \n \n\n\n[16-01-2025 10:21]\nAutor Alex Cruz\nDescrição Foram excluídos arquivos de log da pasta winevt e deixaremos em observação se volta acontecer. Se sim, será necessário a reinstalação do sistema operacional.\nData de abertura 16-01-2025 10:21\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[16-01-2025 10:14]\nAutor Alex Cruz\nDescrição Foi encontrada uma pasta do sistema operacional gerando logs quase que diariamente ocasionando a falta de espaço em disco. \n\n[796eb77d-b2d8e96f-67890626156559.26126155] [https://oswintech.ddns.net/front/document.send.php?docid=9&#38;itemtype=Ticket&#38;items_id=43]\n\n \nData de abertura 16-01-2025 10:14\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[16-01-2025 09:47]\nAutor Alex Cruz\nDescrição Olá, bom dia.\n\nPosso acessar para verificar. Por favor me passe o ID do anydesk.\nData de abertura 16-01-2025 09:47\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-43/closed.1737115353.1801106496@test-ubuntu-glpi-vm','','mailing','closed'),
(129,'Ticket',43,4,2,1,6,'2025-01-17 12:02:32','2025-01-20 11:19:23',NULL,'[GLPI #0000043] Encerramento do chamado Lentidão jose.carmo@tecnomulti.com','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000043] Encerramento do chamado Lentid&#38;atilde;o jose.carmo@tecnomulti.com&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_43\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_43&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Lentid&#38;atilde;o jose.carmo@tecnomulti.com &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:16-01-2025 07:59 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:17-01-2025 09:02 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- Novo chamado     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Lentidão&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;jose.carmo@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 8695-4083&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;O notebook não está abrindo mais de 2 &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 16-01-2025 10:21&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [16-01-2025 10:21]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alex Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Foram excluídos arquivos de log da pasta winevt e deixaremos em observação se volta acontecer. Se sim, será necessário a reinstalação do sistema operacional.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;16-01-2025 10:21&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [16-01-2025 10:14]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alex Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Foi encontrada uma pasta do sistema operacional gerando logs quase que diariamente ocasionando a falta de espaço em disco. &#60;/p&#62;\r\n&#60;p&#62;&#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=9&#38;amp;itemtype=Ticket&#38;amp;items_id=43\" target=\"_blank\"&#62;&#60;img alt=\"796eb77d-b2d8e96f-67890626156559.26126155\" width=\"625\" src=\"/front/document.send.php?docid=9&#38;amp;itemtype=Ticket&#38;amp;items_id=43\" /&#62;&#60;/a&#62;&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;16-01-2025 10:14&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [16-01-2025 09:47]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alex Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Olá, bom dia.&#60;/p&#62;\r\n&#60;p&#62;Posso acessar para verificar. Por favor me passe o ID do anydesk.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;16-01-2025 09:47&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 3&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_43 \n\n Chamado: Descrição\n\n Título : Lentidão jose.carmo@tecnomulti.com\n Requerentes :  tecnomulti  \n Data de abertura : 16-01-2025 07:59\n Data de fechamento : 17-01-2025 09:02\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - Novo chamado\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Lentidão\n2) E-MAIL : jose.carmo@tecnomulti.com\n3) TELEFONE : 81 8695-4083\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nO notebook não está abrindo mais de 2 \n \n\n Data da solução : 16-01-2025 10:21\n Tipo de solução : \n Solução : \n \n\n\n[16-01-2025 10:21]\nAutor Alex Cruz\nDescrição Foram excluídos arquivos de log da pasta winevt e deixaremos em observação se volta acontecer. Se sim, será necessário a reinstalação do sistema operacional.\nData de abertura 16-01-2025 10:21\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[16-01-2025 10:14]\nAutor Alex Cruz\nDescrição Foi encontrada uma pasta do sistema operacional gerando logs quase que diariamente ocasionando a falta de espaço em disco. \n\n[796eb77d-b2d8e96f-67890626156559.26126155] [https://oswintech.ddns.net/front/document.send.php?docid=9&#38;itemtype=Ticket&#38;items_id=43]\n\n \nData de abertura 16-01-2025 10:14\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[16-01-2025 09:47]\nAutor Alex Cruz\nDescrição Olá, bom dia.\n\nPosso acessar para verificar. Por favor me passe o ID do anydesk.\nData de abertura 16-01-2025 09:47\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-43/closed.1737115353.61254663@test-ubuntu-glpi-vm','','mailing','closed'),
(130,'Ticket',36,4,2,1,6,'2025-01-17 12:03:23','2025-01-20 11:19:23',NULL,'[GLPI #0000036] Novo acompanhamento MEMORIA CHEIA','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000036] Novo acompanhamento MEMORIA CHEIA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_36\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_36&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:MEMORIA CHEIA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:15-01-2025 16:02 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Helpdesk&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;p&#62;Telefone: 81 8695-4083&#60;/p&#62;\n&#60;p&#62;E-mail: jose.carmo@tecnomulti.com&#60;/p&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [17-01-2025 09:03]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alex Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Chamado em duplicidade&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;17-01-2025 09:03&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_36 \n\n Chamado: Descrição\n\n Título : MEMORIA CHEIA\n Requerentes :  tecnomulti  \n Data de abertura : 15-01-2025 16:02\n Data de fechamento : \n Origem da requisição : Helpdesk\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : Telefone: 81 8695-4083\n\nE-mail: jose.carmo@tecnomulti.com\n \n\n\n[17-01-2025 09:03]\nAutor Alex Cruz\nDescrição Chamado em duplicidade\nData de abertura 17-01-2025 09:03\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-36/add_followup.1737115404.1111753737@test-ubuntu-glpi-vm','','mailing','add_followup'),
(131,'Ticket',36,4,2,1,6,'2025-01-17 12:03:23','2025-01-20 11:19:23',NULL,'[GLPI #0000036] Novo acompanhamento MEMORIA CHEIA','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000036] Novo acompanhamento MEMORIA CHEIA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_36\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_36&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:MEMORIA CHEIA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:15-01-2025 16:02 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Helpdesk&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;p&#62;Telefone: 81 8695-4083&#60;/p&#62;\n&#60;p&#62;E-mail: jose.carmo@tecnomulti.com&#60;/p&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [17-01-2025 09:03]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alex Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Chamado em duplicidade&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;17-01-2025 09:03&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_36 \n\n Chamado: Descrição\n\n Título : MEMORIA CHEIA\n Requerentes :  tecnomulti  \n Data de abertura : 15-01-2025 16:02\n Data de fechamento : \n Origem da requisição : Helpdesk\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : Telefone: 81 8695-4083\n\nE-mail: jose.carmo@tecnomulti.com\n \n\n\n[17-01-2025 09:03]\nAutor Alex Cruz\nDescrição Chamado em duplicidade\nData de abertura 17-01-2025 09:03\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-36/add_followup.1737115404.1382010613@test-ubuntu-glpi-vm','','mailing','add_followup'),
(132,'Ticket',36,4,2,1,6,'2025-01-17 12:03:35','2025-01-20 11:19:23',NULL,'[GLPI #0000036] Encerramento do chamado MEMORIA CHEIA','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000036] Encerramento do chamado MEMORIA CHEIA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_36\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_36&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:MEMORIA CHEIA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:15-01-2025 16:02 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:17-01-2025 09:03 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Helpdesk&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;p&#62;Telefone: 81 8695-4083&#60;/p&#62;\n&#60;p&#62;E-mail: jose.carmo@tecnomulti.com&#60;/p&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 17-01-2025 09:03&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [17-01-2025 09:03]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alex Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Chamado em duplicidade&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;17-01-2025 09:03&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_36 \n\n Chamado: Descrição\n\n Título : MEMORIA CHEIA\n Requerentes :  tecnomulti  \n Data de abertura : 15-01-2025 16:02\n Data de fechamento : 17-01-2025 09:03\n Origem da requisição : Helpdesk\nItem associado :\n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : Telefone: 81 8695-4083\n\nE-mail: jose.carmo@tecnomulti.com\n \n\n Data da solução : 17-01-2025 09:03\n Tipo de solução : \n Solução : \n \n\n\n[17-01-2025 09:03]\nAutor Alex Cruz\nDescrição Chamado em duplicidade\nData de abertura 17-01-2025 09:03\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-36/closed.1737115415.734685296@test-ubuntu-glpi-vm','','mailing','closed'),
(133,'Ticket',36,4,2,1,6,'2025-01-17 12:03:35','2025-01-20 11:19:23',NULL,'[GLPI #0000036] Encerramento do chamado MEMORIA CHEIA','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000036] Encerramento do chamado MEMORIA CHEIA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_36\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_36&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:MEMORIA CHEIA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:15-01-2025 16:02 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:17-01-2025 09:03 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Helpdesk&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;p&#62;Telefone: 81 8695-4083&#60;/p&#62;\n&#60;p&#62;E-mail: jose.carmo@tecnomulti.com&#60;/p&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 17-01-2025 09:03&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [17-01-2025 09:03]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alex Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Chamado em duplicidade&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;17-01-2025 09:03&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_36 \n\n Chamado: Descrição\n\n Título : MEMORIA CHEIA\n Requerentes :  tecnomulti  \n Data de abertura : 15-01-2025 16:02\n Data de fechamento : 17-01-2025 09:03\n Origem da requisição : Helpdesk\nItem associado :\n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : Telefone: 81 8695-4083\n\nE-mail: jose.carmo@tecnomulti.com\n \n\n Data da solução : 17-01-2025 09:03\n Tipo de solução : \n Solução : \n \n\n\n[17-01-2025 09:03]\nAutor Alex Cruz\nDescrição Chamado em duplicidade\nData de abertura 17-01-2025 09:03\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-36/closed.1737115415.113260075@test-ubuntu-glpi-vm','','mailing','closed'),
(134,'PluginFormcreatorFormAnswer',8,29,2,1,6,'2025-01-17 14:47:06','2025-01-20 15:11:13',NULL,'[GLPI] Sua requisição foi salva','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI] Sua requisi&#38;ccedil;&#38;atilde;o foi salva&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;p&#62;Olá,&#60;br /&#62;Sua requisição do GLPI foi salva com sucesso com o número 8 e transmitido para a equipe de helpdesk.&#60;br /&#62;Você pode ver suas respostas no seguinte link:&#60;br /&#62;https://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=8&#60;/p&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;','Olá,\nSua requisição do GLPI foi salva com sucesso com o número 8 e transmitido para a equipe de helpdesk.\nVocê pode ver suas respostas no seguinte link:\nhttps://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=8\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-PluginFormcreatorFormAnswer-8/plugin_formcreator_form_created.1737125226.492089168@test-ubuntu-glpi-vm','','mailing','plugin_formcreator_form_created'),
(139,'Ticket',44,4,2,1,6,'2025-01-17 14:47:06','2025-01-20 15:11:13',NULL,'[GLPI #0000044] Novo chamado Problema no email. jayana.monte@tecnomulti.com','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000044] Novo chamado Problema no email. jayana.monte@tecnomulti.com&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_44\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_44&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Problema no email. jayana.monte@tecnomulti.com &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:17-01-2025 11:47 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Problema no email.&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;jayana.monte@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81996609102&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Recebi um email falando sobre a conta de email está cheia, porém não tem muita coisa no email.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_44 \n\n Chamado: Descrição\n\n Título : Problema no email. jayana.monte@tecnomulti.com\n Requerentes :  tecnomulti  \n Data de abertura : 17-01-2025 11:47\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Problema no email.\n2) E-MAIL : jayana.monte@tecnomulti.com\n3) TELEFONE : 81996609102\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nRecebi um email falando sobre a conta de email está cheia, porém não tem muita coisa no email.\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-44/new@test-ubuntu-glpi-vm','','mailing','new'),
(140,'Ticket',44,4,2,1,6,'2025-01-17 14:47:06','2025-01-20 15:11:13',NULL,'[GLPI #0000044] Novo chamado Problema no email. jayana.monte@tecnomulti.com','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000044] Novo chamado Problema no email. jayana.monte@tecnomulti.com&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_44\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_44&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Problema no email. jayana.monte@tecnomulti.com &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:17-01-2025 11:47 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Problema no email.&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;jayana.monte@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81996609102&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Recebi um email falando sobre a conta de email está cheia, porém não tem muita coisa no email.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_44 \n\n Chamado: Descrição\n\n Título : Problema no email. jayana.monte@tecnomulti.com\n Requerentes :  tecnomulti  \n Data de abertura : 17-01-2025 11:47\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Problema no email.\n2) E-MAIL : jayana.monte@tecnomulti.com\n3) TELEFONE : 81996609102\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nRecebi um email falando sobre a conta de email está cheia, porém não tem muita coisa no email.\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-44/new@test-ubuntu-glpi-vm','','mailing','new'),
(141,'Ticket',44,4,2,1,6,'2025-01-17 14:47:06','2025-01-20 15:11:13',NULL,'[GLPI #0000044] Novo chamado Problema no email. jayana.monte@tecnomulti.com','admsys@localhost','','alexcruzfab@hotmail.com','Alex Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000044] Novo chamado Problema no email. jayana.monte@tecnomulti.com&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_44\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_44&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Problema no email. jayana.monte@tecnomulti.com &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:17-01-2025 11:47 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Problema no email.&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;jayana.monte@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81996609102&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Recebi um email falando sobre a conta de email está cheia, porém não tem muita coisa no email.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_44 \n\n Chamado: Descrição\n\n Título : Problema no email. jayana.monte@tecnomulti.com\n Requerentes :  tecnomulti  \n Data de abertura : 17-01-2025 11:47\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Problema no email.\n2) E-MAIL : jayana.monte@tecnomulti.com\n3) TELEFONE : 81996609102\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nRecebi um email falando sobre a conta de email está cheia, porém não tem muita coisa no email.\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-44/new@test-ubuntu-glpi-vm','','mailing','new'),
(142,'Ticket',44,4,2,1,6,'2025-01-17 14:47:06','2025-01-20 15:11:13',NULL,'[GLPI #0000044] Novo chamado Problema no email. jayana.monte@tecnomulti.com','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000044] Novo chamado Problema no email. jayana.monte@tecnomulti.com&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_44\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_44&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Problema no email. jayana.monte@tecnomulti.com &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:17-01-2025 11:47 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Problema no email.&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;jayana.monte@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81996609102&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Recebi um email falando sobre a conta de email está cheia, porém não tem muita coisa no email.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_44 \n\n Chamado: Descrição\n\n Título : Problema no email. jayana.monte@tecnomulti.com\n Requerentes :  tecnomulti  \n Data de abertura : 17-01-2025 11:47\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Problema no email.\n2) E-MAIL : jayana.monte@tecnomulti.com\n3) TELEFONE : 81996609102\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nRecebi um email falando sobre a conta de email está cheia, porém não tem muita coisa no email.\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-44/new@test-ubuntu-glpi-vm','','mailing','new'),
(143,'Ticket',44,4,2,1,6,'2025-01-17 17:57:43','2025-01-20 15:11:13',NULL,'[GLPI #0000044] Novo acompanhamento Problema no email. jayana.monte@tecnomulti.com','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000044] Novo acompanhamento Problema no email. jayana.monte@tecnomulti.com&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_44\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_44&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Problema no email. jayana.monte@tecnomulti.com &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:17-01-2025 11:47 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- Novo chamado     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Problema no email.&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;jayana.monte@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81996609102&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Recebi um email falando sobre a conta de email está cheia, porém não tem muita coisa no email.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [17-01-2025 14:57]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde Jayana, verificamos aqui e realmente sua caixa já estava com mais de 80% de uso, poderia ver qual o remetente e mandar um print do email por favor.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;17-01-2025 14:57&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_44 \n\n Chamado: Descrição\n\n Título : Problema no email. jayana.monte@tecnomulti.com\n Requerentes :  tecnomulti  \n Data de abertura : 17-01-2025 11:47\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - Novo chamado\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Problema no email.\n2) E-MAIL : jayana.monte@tecnomulti.com\n3) TELEFONE : 81996609102\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nRecebi um email falando sobre a conta de email está cheia, porém não tem muita coisa no email.\n \n\n\n[17-01-2025 14:57]\nAutor Luan Medeiros\nDescrição Boa tarde Jayana, verificamos aqui e realmente sua caixa já estava com mais de 80% de uso, poderia ver qual o remetente e mandar um print do email por favor.\nData de abertura 17-01-2025 14:57\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-44/add_followup.1737136664.1658967707@test-ubuntu-glpi-vm','','mailing','add_followup'),
(144,'Ticket',44,4,2,1,6,'2025-01-17 17:57:43','2025-01-20 15:11:13',NULL,'[GLPI #0000044] Novo acompanhamento Problema no email. jayana.monte@tecnomulti.com','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000044] Novo acompanhamento Problema no email. jayana.monte@tecnomulti.com&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_44\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_44&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Problema no email. jayana.monte@tecnomulti.com &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:17-01-2025 11:47 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- Novo chamado     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Problema no email.&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;jayana.monte@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81996609102&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Recebi um email falando sobre a conta de email está cheia, porém não tem muita coisa no email.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [17-01-2025 14:57]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde Jayana, verificamos aqui e realmente sua caixa já estava com mais de 80% de uso, poderia ver qual o remetente e mandar um print do email por favor.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;17-01-2025 14:57&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_44 \n\n Chamado: Descrição\n\n Título : Problema no email. jayana.monte@tecnomulti.com\n Requerentes :  tecnomulti  \n Data de abertura : 17-01-2025 11:47\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - Novo chamado\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Problema no email.\n2) E-MAIL : jayana.monte@tecnomulti.com\n3) TELEFONE : 81996609102\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nRecebi um email falando sobre a conta de email está cheia, porém não tem muita coisa no email.\n \n\n\n[17-01-2025 14:57]\nAutor Luan Medeiros\nDescrição Boa tarde Jayana, verificamos aqui e realmente sua caixa já estava com mais de 80% de uso, poderia ver qual o remetente e mandar um print do email por favor.\nData de abertura 17-01-2025 14:57\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-44/add_followup.1737136664.2083589122@test-ubuntu-glpi-vm','','mailing','add_followup'),
(145,'PluginFormcreatorFormAnswer',9,29,2,1,6,'2025-01-17 18:01:10','2025-01-20 15:11:13',NULL,'[GLPI] Sua requisição foi salva','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI] Sua requisi&#38;ccedil;&#38;atilde;o foi salva&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;p&#62;Olá,&#60;br /&#62;Sua requisição do GLPI foi salva com sucesso com o número 9 e transmitido para a equipe de helpdesk.&#60;br /&#62;Você pode ver suas respostas no seguinte link:&#60;br /&#62;https://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=9&#60;/p&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;','Olá,\nSua requisição do GLPI foi salva com sucesso com o número 9 e transmitido para a equipe de helpdesk.\nVocê pode ver suas respostas no seguinte link:\nhttps://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=9\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-PluginFormcreatorFormAnswer-9/plugin_formcreator_form_created.1737136870.37367739@test-ubuntu-glpi-vm','','mailing','plugin_formcreator_form_created'),
(150,'Ticket',45,4,2,1,6,'2025-01-17 18:01:10','2025-01-20 15:11:13',NULL,'[GLPI #0000045] Novo chamado Eu já desinstalei o aplicativo da impressora e já instalei novamente e a impressora não conecta karla.minelly@tecnomulti.com','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000045] Novo chamado Eu j&#38;aacute; desinstalei o aplicativo da impressora e j&#38;aacute; instalei novamente e a impressora n&#38;atilde;o conecta karla.minelly@tecnomulti.com&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_45\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_45&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Eu j&#38;aacute; desinstalei o aplicativo da impressora e j&#38;aacute; instalei novamente e a impressora n&#38;atilde;o conecta karla.minelly@tecnomulti.com &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:17-01-2025 15:01 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Eu já desinstalei o aplicativo da impressora e já instalei novamente e a impressora não conecta&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;karla.minelly@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83988277027&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Eu já desinstalei o aplicativo da impressora e já instalei novamente e a impressora não conecta&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_45 \n\n Chamado: Descrição\n\n Título : Eu já desinstalei o aplicativo da impressora e já instalei novamente e a impressora não conecta karla.minelly@tecnomulti.com\n Requerentes :  tecnomulti  \n Data de abertura : 17-01-2025 15:01\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Eu já desinstalei o aplicativo da impressora e já instalei novamente e a impressora não conecta\n2) E-MAIL : karla.minelly@tecnomulti.com\n3) TELEFONE : 83988277027\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nEu já desinstalei o aplicativo da impressora e já instalei novamente e a impressora não conecta\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-45/new@test-ubuntu-glpi-vm','','mailing','new'),
(151,'Ticket',45,4,2,1,6,'2025-01-17 18:01:10','2025-01-20 15:11:13',NULL,'[GLPI #0000045] Novo chamado Eu já desinstalei o aplicativo da impressora e já instalei novamente e a impressora não conecta karla.minelly@tecnomulti.com','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000045] Novo chamado Eu j&#38;aacute; desinstalei o aplicativo da impressora e j&#38;aacute; instalei novamente e a impressora n&#38;atilde;o conecta karla.minelly@tecnomulti.com&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_45\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_45&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Eu j&#38;aacute; desinstalei o aplicativo da impressora e j&#38;aacute; instalei novamente e a impressora n&#38;atilde;o conecta karla.minelly@tecnomulti.com &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:17-01-2025 15:01 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Eu já desinstalei o aplicativo da impressora e já instalei novamente e a impressora não conecta&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;karla.minelly@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83988277027&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Eu já desinstalei o aplicativo da impressora e já instalei novamente e a impressora não conecta&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_45 \n\n Chamado: Descrição\n\n Título : Eu já desinstalei o aplicativo da impressora e já instalei novamente e a impressora não conecta karla.minelly@tecnomulti.com\n Requerentes :  tecnomulti  \n Data de abertura : 17-01-2025 15:01\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Eu já desinstalei o aplicativo da impressora e já instalei novamente e a impressora não conecta\n2) E-MAIL : karla.minelly@tecnomulti.com\n3) TELEFONE : 83988277027\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nEu já desinstalei o aplicativo da impressora e já instalei novamente e a impressora não conecta\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-45/new@test-ubuntu-glpi-vm','','mailing','new'),
(152,'Ticket',45,4,2,1,6,'2025-01-17 18:01:10','2025-01-20 15:11:13',NULL,'[GLPI #0000045] Novo chamado Eu já desinstalei o aplicativo da impressora e já instalei novamente e a impressora não conecta karla.minelly@tecnomulti.com','admsys@localhost','','alexcruzfab@hotmail.com','Alex Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000045] Novo chamado Eu j&#38;aacute; desinstalei o aplicativo da impressora e j&#38;aacute; instalei novamente e a impressora n&#38;atilde;o conecta karla.minelly@tecnomulti.com&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_45\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_45&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Eu j&#38;aacute; desinstalei o aplicativo da impressora e j&#38;aacute; instalei novamente e a impressora n&#38;atilde;o conecta karla.minelly@tecnomulti.com &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:17-01-2025 15:01 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Eu já desinstalei o aplicativo da impressora e já instalei novamente e a impressora não conecta&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;karla.minelly@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83988277027&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Eu já desinstalei o aplicativo da impressora e já instalei novamente e a impressora não conecta&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_45 \n\n Chamado: Descrição\n\n Título : Eu já desinstalei o aplicativo da impressora e já instalei novamente e a impressora não conecta karla.minelly@tecnomulti.com\n Requerentes :  tecnomulti  \n Data de abertura : 17-01-2025 15:01\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Eu já desinstalei o aplicativo da impressora e já instalei novamente e a impressora não conecta\n2) E-MAIL : karla.minelly@tecnomulti.com\n3) TELEFONE : 83988277027\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nEu já desinstalei o aplicativo da impressora e já instalei novamente e a impressora não conecta\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-45/new@test-ubuntu-glpi-vm','','mailing','new'),
(153,'Ticket',45,4,2,1,6,'2025-01-17 18:01:10','2025-01-20 15:11:13',NULL,'[GLPI #0000045] Novo chamado Eu já desinstalei o aplicativo da impressora e já instalei novamente e a impressora não conecta karla.minelly@tecnomulti.com','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000045] Novo chamado Eu j&#38;aacute; desinstalei o aplicativo da impressora e j&#38;aacute; instalei novamente e a impressora n&#38;atilde;o conecta karla.minelly@tecnomulti.com&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_45\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_45&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Eu j&#38;aacute; desinstalei o aplicativo da impressora e j&#38;aacute; instalei novamente e a impressora n&#38;atilde;o conecta karla.minelly@tecnomulti.com &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:17-01-2025 15:01 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Eu já desinstalei o aplicativo da impressora e já instalei novamente e a impressora não conecta&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;karla.minelly@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83988277027&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Eu já desinstalei o aplicativo da impressora e já instalei novamente e a impressora não conecta&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_45 \n\n Chamado: Descrição\n\n Título : Eu já desinstalei o aplicativo da impressora e já instalei novamente e a impressora não conecta karla.minelly@tecnomulti.com\n Requerentes :  tecnomulti  \n Data de abertura : 17-01-2025 15:01\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Eu já desinstalei o aplicativo da impressora e já instalei novamente e a impressora não conecta\n2) E-MAIL : karla.minelly@tecnomulti.com\n3) TELEFONE : 83988277027\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nEu já desinstalei o aplicativo da impressora e já instalei novamente e a impressora não conecta\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-45/new@test-ubuntu-glpi-vm','','mailing','new'),
(154,'Ticket',45,4,2,1,6,'2025-01-20 11:08:13','2025-01-21 13:47:24',NULL,'[GLPI #0000045] Novo acompanhamento Eu já desinstalei o aplicativo da impressora e já instalei novamente e a impressora não conecta karla.minelly@tecnomulti.com','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000045] Novo acompanhamento Eu j&#38;aacute; desinstalei o aplicativo da impressora e j&#38;aacute; instalei novamente e a impressora n&#38;atilde;o conecta karla.minelly@tecnomulti.com&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_45\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_45&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Eu j&#38;aacute; desinstalei o aplicativo da impressora e j&#38;aacute; instalei novamente e a impressora n&#38;atilde;o conecta karla.minelly@tecnomulti.com &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:17-01-2025 15:01 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- Novo chamado     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Eu já desinstalei o aplicativo da impressora e já instalei novamente e a impressora não conecta&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;karla.minelly@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83988277027&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Eu já desinstalei o aplicativo da impressora e já instalei novamente e a impressora não conecta&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [20-01-2025 08:08]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia Karla, poderia me informar o acesso remoto(anydesk ou teamviewer) do seu computador por favor.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;20-01-2025 08:08&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_45 \n\n Chamado: Descrição\n\n Título : Eu já desinstalei o aplicativo da impressora e já instalei novamente e a impressora não conecta karla.minelly@tecnomulti.com\n Requerentes :  tecnomulti  \n Data de abertura : 17-01-2025 15:01\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - Novo chamado\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Eu já desinstalei o aplicativo da impressora e já instalei novamente e a impressora não conecta\n2) E-MAIL : karla.minelly@tecnomulti.com\n3) TELEFONE : 83988277027\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nEu já desinstalei o aplicativo da impressora e já instalei novamente e a impressora não conecta\n \n\n\n[20-01-2025 08:08]\nAutor Luan Medeiros\nDescrição Bom dia Karla, poderia me informar o acesso remoto(anydesk ou teamviewer) do seu computador por favor.\nData de abertura 20-01-2025 08:08\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-45/add_followup.1737371293.120847183@oswintech.ddns.net','','mailing','add_followup'),
(155,'Ticket',45,4,2,1,6,'2025-01-20 11:08:13','2025-01-21 13:47:24',NULL,'[GLPI #0000045] Novo acompanhamento Eu já desinstalei o aplicativo da impressora e já instalei novamente e a impressora não conecta karla.minelly@tecnomulti.com','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000045] Novo acompanhamento Eu j&#38;aacute; desinstalei o aplicativo da impressora e j&#38;aacute; instalei novamente e a impressora n&#38;atilde;o conecta karla.minelly@tecnomulti.com&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_45\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_45&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Eu j&#38;aacute; desinstalei o aplicativo da impressora e j&#38;aacute; instalei novamente e a impressora n&#38;atilde;o conecta karla.minelly@tecnomulti.com &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:17-01-2025 15:01 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- Novo chamado     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Eu já desinstalei o aplicativo da impressora e já instalei novamente e a impressora não conecta&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;karla.minelly@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83988277027&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Eu já desinstalei o aplicativo da impressora e já instalei novamente e a impressora não conecta&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [20-01-2025 08:08]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia Karla, poderia me informar o acesso remoto(anydesk ou teamviewer) do seu computador por favor.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;20-01-2025 08:08&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_45 \n\n Chamado: Descrição\n\n Título : Eu já desinstalei o aplicativo da impressora e já instalei novamente e a impressora não conecta karla.minelly@tecnomulti.com\n Requerentes :  tecnomulti  \n Data de abertura : 17-01-2025 15:01\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - Novo chamado\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Eu já desinstalei o aplicativo da impressora e já instalei novamente e a impressora não conecta\n2) E-MAIL : karla.minelly@tecnomulti.com\n3) TELEFONE : 83988277027\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nEu já desinstalei o aplicativo da impressora e já instalei novamente e a impressora não conecta\n \n\n\n[20-01-2025 08:08]\nAutor Luan Medeiros\nDescrição Bom dia Karla, poderia me informar o acesso remoto(anydesk ou teamviewer) do seu computador por favor.\nData de abertura 20-01-2025 08:08\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-45/add_followup.1737371293.1578887420@oswintech.ddns.net','','mailing','add_followup'),
(156,'PluginFormcreatorFormAnswer',10,29,2,1,6,'2025-01-20 11:22:02','2025-01-21 14:46:39',NULL,'[GLPI] Sua requisição foi salva','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI] Sua requisi&#38;ccedil;&#38;atilde;o foi salva&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;p&#62;Olá,&#60;br /&#62;Sua requisição do GLPI foi salva com sucesso com o número 10 e transmitido para a equipe de helpdesk.&#60;br /&#62;Você pode ver suas respostas no seguinte link:&#60;br /&#62;https://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=10&#60;/p&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;','Olá,\nSua requisição do GLPI foi salva com sucesso com o número 10 e transmitido para a equipe de helpdesk.\nVocê pode ver suas respostas no seguinte link:\nhttps://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=10\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-PluginFormcreatorFormAnswer-10/plugin_formcreator_form_created.1737372122.120457618@oswintech.ddns.net','','mailing','plugin_formcreator_form_created'),
(157,'Ticket',46,4,2,1,0,'2025-01-20 11:22:02','2025-01-20 11:22:02','2025-01-20 11:22:07','[GLPI #0000046] Novo chamado KARLA KINELLY DE AQUINO ALEXANDRE',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_46 \n\n Chamado: Descrição\n\n Título : KARLA KINELLY DE AQUINO ALEXANDRE\n Requerentes :  tecnomulti  \n Data de abertura : 20-01-2025 08:22\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : KARLA KINELLY DE AQUINO ALEXANDRE\n2) E-MAIL : karla.minelly@tecnomulti.com\n3) TELEFONE : 83988277027\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nA IMPRESSORA NÃO CONECTA AO APLICATIVO INSTADO. JÁ DESINSTELEI E INSTALEI O APLICATIVO, MESMO ASSIM NÃO CONECTA.\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(158,'Ticket',46,4,2,1,0,'2025-01-20 11:22:02','2025-01-20 11:22:02','2025-01-30 15:37:32','[GLPI #0000046] Novo chamado KARLA KINELLY DE AQUINO ALEXANDRE',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_46 \n\n Chamado: Descrição\n\n Título : KARLA KINELLY DE AQUINO ALEXANDRE\n Requerentes :  tecnomulti  \n Data de abertura : 20-01-2025 08:22\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : KARLA KINELLY DE AQUINO ALEXANDRE\n2) E-MAIL : karla.minelly@tecnomulti.com\n3) TELEFONE : 83988277027\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nA IMPRESSORA NÃO CONECTA AO APLICATIVO INSTADO. JÁ DESINSTELEI E INSTALEI O APLICATIVO, MESMO ASSIM NÃO CONECTA.\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(159,'Ticket',46,4,2,1,0,'2025-01-20 11:22:02','2025-01-20 11:22:02','2025-01-30 15:49:46','[GLPI #0000046] Novo chamado KARLA KINELLY DE AQUINO ALEXANDRE',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_46 \n\n Chamado: Descrição\n\n Título : KARLA KINELLY DE AQUINO ALEXANDRE\n Requerentes :  tecnomulti  \n Data de abertura : 20-01-2025 08:22\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : KARLA KINELLY DE AQUINO ALEXANDRE\n2) E-MAIL : karla.minelly@tecnomulti.com\n3) TELEFONE : 83988277027\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nA IMPRESSORA NÃO CONECTA AO APLICATIVO INSTADO. JÁ DESINSTELEI E INSTALEI O APLICATIVO, MESMO ASSIM NÃO CONECTA.\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(160,'Ticket',46,4,2,1,0,'2025-01-20 11:22:02','2025-01-20 11:22:02','2025-01-21 02:39:16','[GLPI #0000046] Novo chamado KARLA KINELLY DE AQUINO ALEXANDRE',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_46 \n\n Chamado: Descrição\n\n Título : KARLA KINELLY DE AQUINO ALEXANDRE\n Requerentes :  tecnomulti  \n Data de abertura : 20-01-2025 08:22\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : KARLA KINELLY DE AQUINO ALEXANDRE\n2) E-MAIL : karla.minelly@tecnomulti.com\n3) TELEFONE : 83988277027\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nA IMPRESSORA NÃO CONECTA AO APLICATIVO INSTADO. JÁ DESINSTELEI E INSTALEI O APLICATIVO, MESMO ASSIM NÃO CONECTA.\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(161,'Ticket',46,4,2,1,6,'2025-01-20 11:22:02','2025-01-21 14:46:39',NULL,'[GLPI #0000046] Novo chamado KARLA KINELLY DE AQUINO ALEXANDRE','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000046] Novo chamado KARLA KINELLY DE AQUINO ALEXANDRE&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_46\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_46&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:KARLA KINELLY DE AQUINO ALEXANDRE &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:20-01-2025 08:22 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;KARLA KINELLY DE AQUINO ALEXANDRE&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;karla.minelly@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83988277027&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;A IMPRESSORA NÃO CONECTA AO APLICATIVO INSTADO. JÁ DESINSTELEI E INSTALEI O APLICATIVO, MESMO ASSIM NÃO CONECTA.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_46 \n\n Chamado: Descrição\n\n Título : KARLA KINELLY DE AQUINO ALEXANDRE\n Requerentes :  tecnomulti  \n Data de abertura : 20-01-2025 08:22\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : KARLA KINELLY DE AQUINO ALEXANDRE\n2) E-MAIL : karla.minelly@tecnomulti.com\n3) TELEFONE : 83988277027\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nA IMPRESSORA NÃO CONECTA AO APLICATIVO INSTADO. JÁ DESINSTELEI E INSTALEI O APLICATIVO, MESMO ASSIM NÃO CONECTA.\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-46/new@oswintech.ddns.net','','mailing','new'),
(162,'Ticket',46,4,2,1,6,'2025-01-20 11:22:02','2025-01-21 14:46:39',NULL,'[GLPI #0000046] Novo chamado KARLA KINELLY DE AQUINO ALEXANDRE','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000046] Novo chamado KARLA KINELLY DE AQUINO ALEXANDRE&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_46\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_46&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:KARLA KINELLY DE AQUINO ALEXANDRE &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:20-01-2025 08:22 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;KARLA KINELLY DE AQUINO ALEXANDRE&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;karla.minelly@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83988277027&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;A IMPRESSORA NÃO CONECTA AO APLICATIVO INSTADO. JÁ DESINSTELEI E INSTALEI O APLICATIVO, MESMO ASSIM NÃO CONECTA.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_46 \n\n Chamado: Descrição\n\n Título : KARLA KINELLY DE AQUINO ALEXANDRE\n Requerentes :  tecnomulti  \n Data de abertura : 20-01-2025 08:22\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : KARLA KINELLY DE AQUINO ALEXANDRE\n2) E-MAIL : karla.minelly@tecnomulti.com\n3) TELEFONE : 83988277027\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nA IMPRESSORA NÃO CONECTA AO APLICATIVO INSTADO. JÁ DESINSTELEI E INSTALEI O APLICATIVO, MESMO ASSIM NÃO CONECTA.\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-46/new@oswintech.ddns.net','','mailing','new'),
(163,'Ticket',46,4,2,1,6,'2025-01-20 11:22:02','2025-01-21 14:46:39',NULL,'[GLPI #0000046] Novo chamado KARLA KINELLY DE AQUINO ALEXANDRE','admsys@localhost','','alexcruzfab@hotmail.com','Alex Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000046] Novo chamado KARLA KINELLY DE AQUINO ALEXANDRE&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_46\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_46&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:KARLA KINELLY DE AQUINO ALEXANDRE &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:20-01-2025 08:22 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;KARLA KINELLY DE AQUINO ALEXANDRE&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;karla.minelly@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83988277027&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;A IMPRESSORA NÃO CONECTA AO APLICATIVO INSTADO. JÁ DESINSTELEI E INSTALEI O APLICATIVO, MESMO ASSIM NÃO CONECTA.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_46 \n\n Chamado: Descrição\n\n Título : KARLA KINELLY DE AQUINO ALEXANDRE\n Requerentes :  tecnomulti  \n Data de abertura : 20-01-2025 08:22\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : KARLA KINELLY DE AQUINO ALEXANDRE\n2) E-MAIL : karla.minelly@tecnomulti.com\n3) TELEFONE : 83988277027\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nA IMPRESSORA NÃO CONECTA AO APLICATIVO INSTADO. JÁ DESINSTELEI E INSTALEI O APLICATIVO, MESMO ASSIM NÃO CONECTA.\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-46/new@oswintech.ddns.net','','mailing','new'),
(164,'Ticket',46,4,2,1,6,'2025-01-20 11:22:02','2025-01-21 14:46:39',NULL,'[GLPI #0000046] Novo chamado KARLA KINELLY DE AQUINO ALEXANDRE','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000046] Novo chamado KARLA KINELLY DE AQUINO ALEXANDRE&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_46\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_46&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:KARLA KINELLY DE AQUINO ALEXANDRE &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:20-01-2025 08:22 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;KARLA KINELLY DE AQUINO ALEXANDRE&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;karla.minelly@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83988277027&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;A IMPRESSORA NÃO CONECTA AO APLICATIVO INSTADO. JÁ DESINSTELEI E INSTALEI O APLICATIVO, MESMO ASSIM NÃO CONECTA.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_46 \n\n Chamado: Descrição\n\n Título : KARLA KINELLY DE AQUINO ALEXANDRE\n Requerentes :  tecnomulti  \n Data de abertura : 20-01-2025 08:22\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : KARLA KINELLY DE AQUINO ALEXANDRE\n2) E-MAIL : karla.minelly@tecnomulti.com\n3) TELEFONE : 83988277027\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nA IMPRESSORA NÃO CONECTA AO APLICATIVO INSTADO. JÁ DESINSTELEI E INSTALEI O APLICATIVO, MESMO ASSIM NÃO CONECTA.\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-46/new@oswintech.ddns.net','','mailing','new'),
(165,'Ticket',46,4,2,1,6,'2025-01-20 11:23:38','2025-01-21 14:46:39',NULL,'[GLPI #0000046] Novo acompanhamento KARLA KINELLY DE AQUINO ALEXANDRE','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000046] Novo acompanhamento KARLA KINELLY DE AQUINO ALEXANDRE&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_46\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_46&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:KARLA KINELLY DE AQUINO ALEXANDRE &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:20-01-2025 08:22 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- karla.minelly@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;KARLA KINELLY DE AQUINO ALEXANDRE&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;karla.minelly@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83988277027&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;A IMPRESSORA NÃO CONECTA AO APLICATIVO INSTADO. JÁ DESINSTELEI E INSTALEI O APLICATIVO, MESMO ASSIM NÃO CONECTA.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [20-01-2025 08:23]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alex Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;\r\n&#60;p&#62;Favor, falar comigo pelo whatsapp.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;20-01-2025 08:23&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_46 \n\n Chamado: Descrição\n\n Título : KARLA KINELLY DE AQUINO ALEXANDRE\n Requerentes :  tecnomulti  \n Data de abertura : 20-01-2025 08:22\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - karla.minelly@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : KARLA KINELLY DE AQUINO ALEXANDRE\n2) E-MAIL : karla.minelly@tecnomulti.com\n3) TELEFONE : 83988277027\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nA IMPRESSORA NÃO CONECTA AO APLICATIVO INSTADO. JÁ DESINSTELEI E INSTALEI O APLICATIVO, MESMO ASSIM NÃO CONECTA.\n \n\n\n[20-01-2025 08:23]\nAutor Alex Cruz\nDescrição Bom dia,\n\n \n\nFavor, falar comigo pelo whatsapp.\nData de abertura 20-01-2025 08:23\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-46/add_followup.1737372218.1350685846@oswintech.ddns.net','','mailing','add_followup'),
(166,'Ticket',46,4,2,1,6,'2025-01-20 11:23:38','2025-01-21 14:46:39',NULL,'[GLPI #0000046] Novo acompanhamento KARLA KINELLY DE AQUINO ALEXANDRE','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000046] Novo acompanhamento KARLA KINELLY DE AQUINO ALEXANDRE&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_46\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_46&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:KARLA KINELLY DE AQUINO ALEXANDRE &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:20-01-2025 08:22 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- karla.minelly@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;KARLA KINELLY DE AQUINO ALEXANDRE&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;karla.minelly@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83988277027&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;A IMPRESSORA NÃO CONECTA AO APLICATIVO INSTADO. JÁ DESINSTELEI E INSTALEI O APLICATIVO, MESMO ASSIM NÃO CONECTA.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [20-01-2025 08:23]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alex Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;\r\n&#60;p&#62;Favor, falar comigo pelo whatsapp.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;20-01-2025 08:23&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_46 \n\n Chamado: Descrição\n\n Título : KARLA KINELLY DE AQUINO ALEXANDRE\n Requerentes :  tecnomulti  \n Data de abertura : 20-01-2025 08:22\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - karla.minelly@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : KARLA KINELLY DE AQUINO ALEXANDRE\n2) E-MAIL : karla.minelly@tecnomulti.com\n3) TELEFONE : 83988277027\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nA IMPRESSORA NÃO CONECTA AO APLICATIVO INSTADO. JÁ DESINSTELEI E INSTALEI O APLICATIVO, MESMO ASSIM NÃO CONECTA.\n \n\n\n[20-01-2025 08:23]\nAutor Alex Cruz\nDescrição Bom dia,\n\n \n\nFavor, falar comigo pelo whatsapp.\nData de abertura 20-01-2025 08:23\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-46/add_followup.1737372218.1535432078@oswintech.ddns.net','','mailing','add_followup'),
(167,'Ticket',44,4,2,1,6,'2025-01-20 11:47:29','2025-01-21 14:46:39',NULL,'[GLPI #0000044] Encerramento do chamado Problema no email. jayana.monte@tecnomulti.com','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000044] Encerramento do chamado Problema no email. jayana.monte@tecnomulti.com&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_44\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_44&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Problema no email. jayana.monte@tecnomulti.com &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:17-01-2025 11:47 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:20-01-2025 08:47 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- Novo chamado     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Problema no email.&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;jayana.monte@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81996609102&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Recebi um email falando sobre a conta de email está cheia, porém não tem muita coisa no email.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 20-01-2025 08:47&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [17-01-2025 14:57]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde Jayana, verificamos aqui e realmente sua caixa já estava com mais de 80% de uso, poderia ver qual o remetente e mandar um print do email por favor.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;17-01-2025 14:57&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_44 \n\n Chamado: Descrição\n\n Título : Problema no email. jayana.monte@tecnomulti.com\n Requerentes :  tecnomulti  \n Data de abertura : 17-01-2025 11:47\n Data de fechamento : 20-01-2025 08:47\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - Novo chamado\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Problema no email.\n2) E-MAIL : jayana.monte@tecnomulti.com\n3) TELEFONE : 81996609102\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nRecebi um email falando sobre a conta de email está cheia, porém não tem muita coisa no email.\n \n\n Data da solução : 20-01-2025 08:47\n Tipo de solução : \n Solução : \n \n\n\n[17-01-2025 14:57]\nAutor Luan Medeiros\nDescrição Boa tarde Jayana, verificamos aqui e realmente sua caixa já estava com mais de 80% de uso, poderia ver qual o remetente e mandar um print do email por favor.\nData de abertura 17-01-2025 14:57\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-44/closed.1737373649.769083928@oswintech.ddns.net','','mailing','closed'),
(168,'Ticket',44,4,2,1,6,'2025-01-20 11:47:29','2025-01-21 14:46:39',NULL,'[GLPI #0000044] Encerramento do chamado Problema no email. jayana.monte@tecnomulti.com','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000044] Encerramento do chamado Problema no email. jayana.monte@tecnomulti.com&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_44\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_44&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Problema no email. jayana.monte@tecnomulti.com &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:17-01-2025 11:47 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:20-01-2025 08:47 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- Novo chamado     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Problema no email.&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;jayana.monte@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81996609102&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Recebi um email falando sobre a conta de email está cheia, porém não tem muita coisa no email.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 20-01-2025 08:47&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [17-01-2025 14:57]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde Jayana, verificamos aqui e realmente sua caixa já estava com mais de 80% de uso, poderia ver qual o remetente e mandar um print do email por favor.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;17-01-2025 14:57&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_44 \n\n Chamado: Descrição\n\n Título : Problema no email. jayana.monte@tecnomulti.com\n Requerentes :  tecnomulti  \n Data de abertura : 17-01-2025 11:47\n Data de fechamento : 20-01-2025 08:47\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - Novo chamado\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Problema no email.\n2) E-MAIL : jayana.monte@tecnomulti.com\n3) TELEFONE : 81996609102\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nRecebi um email falando sobre a conta de email está cheia, porém não tem muita coisa no email.\n \n\n Data da solução : 20-01-2025 08:47\n Tipo de solução : \n Solução : \n \n\n\n[17-01-2025 14:57]\nAutor Luan Medeiros\nDescrição Boa tarde Jayana, verificamos aqui e realmente sua caixa já estava com mais de 80% de uso, poderia ver qual o remetente e mandar um print do email por favor.\nData de abertura 17-01-2025 14:57\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-44/closed.1737373649.1320641836@oswintech.ddns.net','','mailing','closed'),
(169,'Ticket',32,4,2,1,6,'2025-01-20 13:30:58','2025-01-21 14:46:39',NULL,'[GLPI #0000032] Novo acompanhamento AUTOCAD, KMZ','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000032] Novo acompanhamento AUTOCAD, KMZ&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_32\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_32&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:AUTOCAD, KMZ &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:14-01-2025 16:40 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Helpdesk&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Pendente&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;p&#62;Telefone: 84 987602692&#60;/p&#62;\n&#60;p&#62;E-mail: lucas.willams@tecnomulti.com&#60;/p&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [20-01-2025 10:30]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alex Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Olá, &#60;/p&#62;\r\n&#60;p&#62;Por falta de comunicação o chamado será encerrado. Se precisar novamente, favor abrir outro chamado. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;20-01-2025 10:30&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [14-01-2025 17:07]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, seria instalação?&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;14-01-2025 17:07&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_32 \n\n Chamado: Descrição\n\n Título : AUTOCAD, KMZ\n Requerentes :  tecnomulti  \n Data de abertura : 14-01-2025 16:40\n Data de fechamento : \n Origem da requisição : Helpdesk\nItem associado :\n\n\n\n Status : Pendente\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : Telefone: 84 987602692\n\nE-mail: lucas.willams@tecnomulti.com\n \n\n\n[20-01-2025 10:30]\nAutor Alex Cruz\nDescrição Olá, \n\nPor falta de comunicação o chamado será encerrado. Se precisar novamente, favor abrir outro chamado. \nData de abertura 20-01-2025 10:30\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[14-01-2025 17:07]\nAutor Luan Medeiros\nDescrição Boa tarde, seria instalação?\nData de abertura 14-01-2025 17:07\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-32/add_followup.1737379858.4657340@oswintech.ddns.net','','mailing','add_followup'),
(170,'Ticket',32,4,2,1,6,'2025-01-20 13:30:58','2025-01-21 14:46:39',NULL,'[GLPI #0000032] Novo acompanhamento AUTOCAD, KMZ','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000032] Novo acompanhamento AUTOCAD, KMZ&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_32\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_32&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:AUTOCAD, KMZ &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:14-01-2025 16:40 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Helpdesk&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Pendente&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;p&#62;Telefone: 84 987602692&#60;/p&#62;\n&#60;p&#62;E-mail: lucas.willams@tecnomulti.com&#60;/p&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [20-01-2025 10:30]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alex Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Olá, &#60;/p&#62;\r\n&#60;p&#62;Por falta de comunicação o chamado será encerrado. Se precisar novamente, favor abrir outro chamado. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;20-01-2025 10:30&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [14-01-2025 17:07]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, seria instalação?&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;14-01-2025 17:07&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_32 \n\n Chamado: Descrição\n\n Título : AUTOCAD, KMZ\n Requerentes :  tecnomulti  \n Data de abertura : 14-01-2025 16:40\n Data de fechamento : \n Origem da requisição : Helpdesk\nItem associado :\n\n\n\n Status : Pendente\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : Telefone: 84 987602692\n\nE-mail: lucas.willams@tecnomulti.com\n \n\n\n[20-01-2025 10:30]\nAutor Alex Cruz\nDescrição Olá, \n\nPor falta de comunicação o chamado será encerrado. Se precisar novamente, favor abrir outro chamado. \nData de abertura 20-01-2025 10:30\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[14-01-2025 17:07]\nAutor Luan Medeiros\nDescrição Boa tarde, seria instalação?\nData de abertura 14-01-2025 17:07\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-32/add_followup.1737379858.620151137@oswintech.ddns.net','','mailing','add_followup'),
(171,'Ticket',32,4,2,1,6,'2025-01-20 13:31:02','2025-01-21 14:46:39',NULL,'[GLPI #0000032] Encerramento do chamado AUTOCAD, KMZ','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000032] Encerramento do chamado AUTOCAD, KMZ&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_32\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_32&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:AUTOCAD, KMZ &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:14-01-2025 16:40 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:20-01-2025 10:31 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Helpdesk&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;p&#62;Telefone: 84 987602692&#60;/p&#62;\n&#60;p&#62;E-mail: lucas.willams@tecnomulti.com&#60;/p&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 20-01-2025 10:31&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [20-01-2025 10:30]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alex Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Olá, &#60;/p&#62;\r\n&#60;p&#62;Por falta de comunicação o chamado será encerrado. Se precisar novamente, favor abrir outro chamado. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;20-01-2025 10:30&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [14-01-2025 17:07]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, seria instalação?&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;14-01-2025 17:07&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_32 \n\n Chamado: Descrição\n\n Título : AUTOCAD, KMZ\n Requerentes :  tecnomulti  \n Data de abertura : 14-01-2025 16:40\n Data de fechamento : 20-01-2025 10:31\n Origem da requisição : Helpdesk\nItem associado :\n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : Telefone: 84 987602692\n\nE-mail: lucas.willams@tecnomulti.com\n \n\n Data da solução : 20-01-2025 10:31\n Tipo de solução : \n Solução : \n \n\n\n[20-01-2025 10:30]\nAutor Alex Cruz\nDescrição Olá, \n\nPor falta de comunicação o chamado será encerrado. Se precisar novamente, favor abrir outro chamado. \nData de abertura 20-01-2025 10:30\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[14-01-2025 17:07]\nAutor Luan Medeiros\nDescrição Boa tarde, seria instalação?\nData de abertura 14-01-2025 17:07\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-32/closed.1737379863.165807152@oswintech.ddns.net','','mailing','closed'),
(172,'Ticket',32,4,2,1,6,'2025-01-20 13:31:02','2025-01-21 14:46:39',NULL,'[GLPI #0000032] Encerramento do chamado AUTOCAD, KMZ','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000032] Encerramento do chamado AUTOCAD, KMZ&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_32\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_32&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:AUTOCAD, KMZ &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:14-01-2025 16:40 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:20-01-2025 10:31 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Helpdesk&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;p&#62;Telefone: 84 987602692&#60;/p&#62;\n&#60;p&#62;E-mail: lucas.willams@tecnomulti.com&#60;/p&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 20-01-2025 10:31&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [20-01-2025 10:30]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alex Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Olá, &#60;/p&#62;\r\n&#60;p&#62;Por falta de comunicação o chamado será encerrado. Se precisar novamente, favor abrir outro chamado. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;20-01-2025 10:30&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [14-01-2025 17:07]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, seria instalação?&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;14-01-2025 17:07&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_32 \n\n Chamado: Descrição\n\n Título : AUTOCAD, KMZ\n Requerentes :  tecnomulti  \n Data de abertura : 14-01-2025 16:40\n Data de fechamento : 20-01-2025 10:31\n Origem da requisição : Helpdesk\nItem associado :\n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : Telefone: 84 987602692\n\nE-mail: lucas.willams@tecnomulti.com\n \n\n Data da solução : 20-01-2025 10:31\n Tipo de solução : \n Solução : \n \n\n\n[20-01-2025 10:30]\nAutor Alex Cruz\nDescrição Olá, \n\nPor falta de comunicação o chamado será encerrado. Se precisar novamente, favor abrir outro chamado. \nData de abertura 20-01-2025 10:30\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[14-01-2025 17:07]\nAutor Luan Medeiros\nDescrição Boa tarde, seria instalação?\nData de abertura 14-01-2025 17:07\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-32/closed.1737379863.474630752@oswintech.ddns.net','','mailing','closed'),
(173,'PluginFormcreatorFormAnswer',11,29,2,1,6,'2025-01-20 13:39:01','2025-01-21 14:46:39',NULL,'[GLPI] Sua requisição foi salva','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI] Sua requisi&#38;ccedil;&#38;atilde;o foi salva&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;p&#62;Olá,&#60;br /&#62;Sua requisição do GLPI foi salva com sucesso com o número 11 e transmitido para a equipe de helpdesk.&#60;br /&#62;Você pode ver suas respostas no seguinte link:&#60;br /&#62;https://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=11&#60;/p&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;','Olá,\nSua requisição do GLPI foi salva com sucesso com o número 11 e transmitido para a equipe de helpdesk.\nVocê pode ver suas respostas no seguinte link:\nhttps://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=11\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-PluginFormcreatorFormAnswer-11/plugin_formcreator_form_created.1737380341.1972143942@oswintech.ddns.net','','mailing','plugin_formcreator_form_created'),
(174,'Ticket',47,4,2,1,0,'2025-01-20 13:39:01','2025-01-20 13:39:01','2025-01-20 13:39:04','[GLPI #0000047] Novo chamado Instalação de vpn',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_47 \n\n Chamado: Descrição\n\n Título : Instalação de vpn\n Requerentes :  tecnomulti  \n Data de abertura : 20-01-2025 10:39\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Instalação de vpn\n2) E-MAIL : gilberto.silva@tecnomulti.com\n3) TELEFONE : 81991391898\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nInstalação de vpn\n\n \n\n \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(175,'Ticket',47,4,2,1,0,'2025-01-20 13:39:01','2025-01-20 13:39:01','2025-01-30 15:37:32','[GLPI #0000047] Novo chamado Instalação de vpn',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_47 \n\n Chamado: Descrição\n\n Título : Instalação de vpn\n Requerentes :  tecnomulti  \n Data de abertura : 20-01-2025 10:39\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Instalação de vpn\n2) E-MAIL : gilberto.silva@tecnomulti.com\n3) TELEFONE : 81991391898\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nInstalação de vpn\n\n \n\n \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(176,'Ticket',47,4,2,1,0,'2025-01-20 13:39:01','2025-01-20 13:39:01','2025-01-30 15:49:46','[GLPI #0000047] Novo chamado Instalação de vpn',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_47 \n\n Chamado: Descrição\n\n Título : Instalação de vpn\n Requerentes :  tecnomulti  \n Data de abertura : 20-01-2025 10:39\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Instalação de vpn\n2) E-MAIL : gilberto.silva@tecnomulti.com\n3) TELEFONE : 81991391898\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nInstalação de vpn\n\n \n\n \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(177,'Ticket',47,4,2,1,0,'2025-01-20 13:39:01','2025-01-20 13:39:01','2025-01-21 02:39:16','[GLPI #0000047] Novo chamado Instalação de vpn',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_47 \n\n Chamado: Descrição\n\n Título : Instalação de vpn\n Requerentes :  tecnomulti  \n Data de abertura : 20-01-2025 10:39\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Instalação de vpn\n2) E-MAIL : gilberto.silva@tecnomulti.com\n3) TELEFONE : 81991391898\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nInstalação de vpn\n\n \n\n \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(178,'Ticket',47,4,2,1,6,'2025-01-20 13:39:01','2025-01-21 14:46:39',NULL,'[GLPI #0000047] Novo chamado Instalação de vpn','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000047] Novo chamado Instala&#38;ccedil;&#38;atilde;o de vpn&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_47\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_47&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Instala&#38;ccedil;&#38;atilde;o de vpn &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:20-01-2025 10:39 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Instalação de vpn&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;gilberto.silva@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81991391898&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Instalação de vpn&#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_47 \n\n Chamado: Descrição\n\n Título : Instalação de vpn\n Requerentes :  tecnomulti  \n Data de abertura : 20-01-2025 10:39\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Instalação de vpn\n2) E-MAIL : gilberto.silva@tecnomulti.com\n3) TELEFONE : 81991391898\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nInstalação de vpn\n\n \n\n \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-47/new@oswintech.ddns.net','','mailing','new'),
(179,'Ticket',47,4,2,1,6,'2025-01-20 13:39:01','2025-01-21 14:46:39',NULL,'[GLPI #0000047] Novo chamado Instalação de vpn','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000047] Novo chamado Instala&#38;ccedil;&#38;atilde;o de vpn&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_47\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_47&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Instala&#38;ccedil;&#38;atilde;o de vpn &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:20-01-2025 10:39 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Instalação de vpn&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;gilberto.silva@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81991391898&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Instalação de vpn&#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_47 \n\n Chamado: Descrição\n\n Título : Instalação de vpn\n Requerentes :  tecnomulti  \n Data de abertura : 20-01-2025 10:39\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Instalação de vpn\n2) E-MAIL : gilberto.silva@tecnomulti.com\n3) TELEFONE : 81991391898\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nInstalação de vpn\n\n \n\n \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-47/new@oswintech.ddns.net','','mailing','new'),
(180,'Ticket',47,4,2,1,6,'2025-01-20 13:39:01','2025-01-21 14:46:39',NULL,'[GLPI #0000047] Novo chamado Instalação de vpn','admsys@localhost','','alexcruzfab@hotmail.com','Alex Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000047] Novo chamado Instala&#38;ccedil;&#38;atilde;o de vpn&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_47\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_47&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Instala&#38;ccedil;&#38;atilde;o de vpn &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:20-01-2025 10:39 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Instalação de vpn&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;gilberto.silva@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81991391898&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Instalação de vpn&#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_47 \n\n Chamado: Descrição\n\n Título : Instalação de vpn\n Requerentes :  tecnomulti  \n Data de abertura : 20-01-2025 10:39\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Instalação de vpn\n2) E-MAIL : gilberto.silva@tecnomulti.com\n3) TELEFONE : 81991391898\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nInstalação de vpn\n\n \n\n \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-47/new@oswintech.ddns.net','','mailing','new'),
(181,'Ticket',47,4,2,1,6,'2025-01-20 13:39:01','2025-01-21 14:46:39',NULL,'[GLPI #0000047] Novo chamado Instalação de vpn','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000047] Novo chamado Instala&#38;ccedil;&#38;atilde;o de vpn&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_47\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_47&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Instala&#38;ccedil;&#38;atilde;o de vpn &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:20-01-2025 10:39 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Instalação de vpn&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;gilberto.silva@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81991391898&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Instalação de vpn&#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_47 \n\n Chamado: Descrição\n\n Título : Instalação de vpn\n Requerentes :  tecnomulti  \n Data de abertura : 20-01-2025 10:39\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Instalação de vpn\n2) E-MAIL : gilberto.silva@tecnomulti.com\n3) TELEFONE : 81991391898\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nInstalação de vpn\n\n \n\n \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-47/new@oswintech.ddns.net','','mailing','new'),
(182,'PluginFormcreatorFormAnswer',12,29,2,1,6,'2025-01-20 14:05:41','2025-01-21 14:46:39',NULL,'[GLPI] Sua requisição foi salva','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI] Sua requisi&#38;ccedil;&#38;atilde;o foi salva&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;p&#62;Olá,&#60;br /&#62;Sua requisição do GLPI foi salva com sucesso com o número 12 e transmitido para a equipe de helpdesk.&#60;br /&#62;Você pode ver suas respostas no seguinte link:&#60;br /&#62;https://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=12&#60;/p&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;','Olá,\nSua requisição do GLPI foi salva com sucesso com o número 12 e transmitido para a equipe de helpdesk.\nVocê pode ver suas respostas no seguinte link:\nhttps://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=12\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-PluginFormcreatorFormAnswer-12/plugin_formcreator_form_created.1737381942.89432198@oswintech.ddns.net','','mailing','plugin_formcreator_form_created'),
(183,'Ticket',48,4,2,1,0,'2025-01-20 14:05:41','2025-01-20 14:05:41','2025-01-20 14:06:37','[GLPI #0000048] Novo chamado CAIXA DE EMAIL CHEIA ',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_48 \n\n Chamado: Descrição\n\n Título : CAIXA DE EMAIL CHEIA \n Requerentes :  tecnomulti  \n Data de abertura : 20-01-2025 11:05\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CAIXA DE EMAIL CHEIA \n2) E-MAIL : graciane.coelho@tecnomulti.com\n3) TELEFONE : 81986981633\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \n[ec3ac8cc-b2d8e96f-678e5833761ee6.52395438] [https://oswintech.ddns.net/front/document.send.php?docid=10&#38;itemtype=Ticket&#38;items_id=48]\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(184,'Ticket',48,4,2,1,0,'2025-01-20 14:05:41','2025-01-20 14:05:41','2025-01-30 15:37:32','[GLPI #0000048] Novo chamado CAIXA DE EMAIL CHEIA ',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_48 \n\n Chamado: Descrição\n\n Título : CAIXA DE EMAIL CHEIA \n Requerentes :  tecnomulti  \n Data de abertura : 20-01-2025 11:05\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CAIXA DE EMAIL CHEIA \n2) E-MAIL : graciane.coelho@tecnomulti.com\n3) TELEFONE : 81986981633\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \n[ec3ac8cc-b2d8e96f-678e5833761ee6.52395438] [https://oswintech.ddns.net/front/document.send.php?docid=10&#38;itemtype=Ticket&#38;items_id=48]\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(185,'Ticket',48,4,2,1,0,'2025-01-20 14:05:41','2025-01-20 14:05:41','2025-01-30 15:49:46','[GLPI #0000048] Novo chamado CAIXA DE EMAIL CHEIA ',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_48 \n\n Chamado: Descrição\n\n Título : CAIXA DE EMAIL CHEIA \n Requerentes :  tecnomulti  \n Data de abertura : 20-01-2025 11:05\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CAIXA DE EMAIL CHEIA \n2) E-MAIL : graciane.coelho@tecnomulti.com\n3) TELEFONE : 81986981633\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \n[ec3ac8cc-b2d8e96f-678e5833761ee6.52395438] [https://oswintech.ddns.net/front/document.send.php?docid=10&#38;itemtype=Ticket&#38;items_id=48]\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(186,'Ticket',48,4,2,1,0,'2025-01-20 14:05:41','2025-01-20 14:05:41','2025-01-21 02:39:18','[GLPI #0000048] Novo chamado CAIXA DE EMAIL CHEIA ',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_48 \n\n Chamado: Descrição\n\n Título : CAIXA DE EMAIL CHEIA \n Requerentes :  tecnomulti  \n Data de abertura : 20-01-2025 11:05\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CAIXA DE EMAIL CHEIA \n2) E-MAIL : graciane.coelho@tecnomulti.com\n3) TELEFONE : 81986981633\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \n[ec3ac8cc-b2d8e96f-678e5833761ee6.52395438] [https://oswintech.ddns.net/front/document.send.php?docid=10&#38;itemtype=Ticket&#38;items_id=48]\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(187,'Ticket',48,4,2,1,6,'2025-01-20 14:05:41','2025-01-21 14:46:39',NULL,'[GLPI #0000048] Novo chamado CAIXA DE EMAIL CHEIA ','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000048] Novo chamado CAIXA DE EMAIL CHEIA &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_48\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_48&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:CAIXA DE EMAIL CHEIA  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:20-01-2025 11:05 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CAIXA DE EMAIL CHEIA &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;graciane.coelho@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81986981633&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;&#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=10&#38;amp;itemtype=Ticket&#38;amp;items_id=48\" target=\"_blank\"&#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-678e5833761ee6.52395438\" width=\"1366\" src=\"/front/document.send.php?docid=10&#38;amp;itemtype=Ticket&#38;amp;items_id=48\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_48 \n\n Chamado: Descrição\n\n Título : CAIXA DE EMAIL CHEIA \n Requerentes :  tecnomulti  \n Data de abertura : 20-01-2025 11:05\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CAIXA DE EMAIL CHEIA \n2) E-MAIL : graciane.coelho@tecnomulti.com\n3) TELEFONE : 81986981633\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \n[ec3ac8cc-b2d8e96f-678e5833761ee6.52395438] [https://oswintech.ddns.net/front/document.send.php?docid=10&#38;itemtype=Ticket&#38;items_id=48]\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-48/new@oswintech.ddns.net','','mailing','new'),
(188,'Ticket',48,4,2,1,6,'2025-01-20 14:05:41','2025-01-21 14:46:39',NULL,'[GLPI #0000048] Novo chamado CAIXA DE EMAIL CHEIA ','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000048] Novo chamado CAIXA DE EMAIL CHEIA &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_48\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_48&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:CAIXA DE EMAIL CHEIA  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:20-01-2025 11:05 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CAIXA DE EMAIL CHEIA &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;graciane.coelho@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81986981633&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;&#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=10&#38;amp;itemtype=Ticket&#38;amp;items_id=48\" target=\"_blank\"&#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-678e5833761ee6.52395438\" width=\"1366\" src=\"/front/document.send.php?docid=10&#38;amp;itemtype=Ticket&#38;amp;items_id=48\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_48 \n\n Chamado: Descrição\n\n Título : CAIXA DE EMAIL CHEIA \n Requerentes :  tecnomulti  \n Data de abertura : 20-01-2025 11:05\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CAIXA DE EMAIL CHEIA \n2) E-MAIL : graciane.coelho@tecnomulti.com\n3) TELEFONE : 81986981633\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \n[ec3ac8cc-b2d8e96f-678e5833761ee6.52395438] [https://oswintech.ddns.net/front/document.send.php?docid=10&#38;itemtype=Ticket&#38;items_id=48]\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-48/new@oswintech.ddns.net','','mailing','new'),
(189,'Ticket',48,4,2,1,6,'2025-01-20 14:05:41','2025-01-21 14:46:39',NULL,'[GLPI #0000048] Novo chamado CAIXA DE EMAIL CHEIA ','admsys@localhost','','alexcruzfab@hotmail.com','Alex Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000048] Novo chamado CAIXA DE EMAIL CHEIA &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_48\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_48&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:CAIXA DE EMAIL CHEIA  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:20-01-2025 11:05 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CAIXA DE EMAIL CHEIA &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;graciane.coelho@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81986981633&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;&#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=10&#38;amp;itemtype=Ticket&#38;amp;items_id=48\" target=\"_blank\"&#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-678e5833761ee6.52395438\" width=\"1366\" src=\"/front/document.send.php?docid=10&#38;amp;itemtype=Ticket&#38;amp;items_id=48\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_48 \n\n Chamado: Descrição\n\n Título : CAIXA DE EMAIL CHEIA \n Requerentes :  tecnomulti  \n Data de abertura : 20-01-2025 11:05\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CAIXA DE EMAIL CHEIA \n2) E-MAIL : graciane.coelho@tecnomulti.com\n3) TELEFONE : 81986981633\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \n[ec3ac8cc-b2d8e96f-678e5833761ee6.52395438] [https://oswintech.ddns.net/front/document.send.php?docid=10&#38;itemtype=Ticket&#38;items_id=48]\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-48/new@oswintech.ddns.net','','mailing','new'),
(190,'Ticket',48,4,2,1,6,'2025-01-20 14:05:41','2025-01-21 14:46:39',NULL,'[GLPI #0000048] Novo chamado CAIXA DE EMAIL CHEIA ','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000048] Novo chamado CAIXA DE EMAIL CHEIA &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_48\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_48&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:CAIXA DE EMAIL CHEIA  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:20-01-2025 11:05 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CAIXA DE EMAIL CHEIA &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;graciane.coelho@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81986981633&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;&#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=10&#38;amp;itemtype=Ticket&#38;amp;items_id=48\" target=\"_blank\"&#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-678e5833761ee6.52395438\" width=\"1366\" src=\"/front/document.send.php?docid=10&#38;amp;itemtype=Ticket&#38;amp;items_id=48\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_48 \n\n Chamado: Descrição\n\n Título : CAIXA DE EMAIL CHEIA \n Requerentes :  tecnomulti  \n Data de abertura : 20-01-2025 11:05\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CAIXA DE EMAIL CHEIA \n2) E-MAIL : graciane.coelho@tecnomulti.com\n3) TELEFONE : 81986981633\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \n[ec3ac8cc-b2d8e96f-678e5833761ee6.52395438] [https://oswintech.ddns.net/front/document.send.php?docid=10&#38;itemtype=Ticket&#38;items_id=48]\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-48/new@oswintech.ddns.net','','mailing','new'),
(191,'Ticket',46,4,2,1,6,'2025-01-20 14:21:01','2025-01-21 14:46:39',NULL,'[GLPI #0000046] Novo acompanhamento KARLA KINELLY DE AQUINO ALEXANDRE','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000046] Novo acompanhamento KARLA KINELLY DE AQUINO ALEXANDRE&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_46\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_46&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:KARLA KINELLY DE AQUINO ALEXANDRE &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:20-01-2025 08:22 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- karla.minelly@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;KARLA KINELLY DE AQUINO ALEXANDRE&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;karla.minelly@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83988277027&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;A IMPRESSORA NÃO CONECTA AO APLICATIVO INSTADO. JÁ DESINSTELEI E INSTALEI O APLICATIVO, MESMO ASSIM NÃO CONECTA.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [20-01-2025 11:21]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alex Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Realizado a instalação do programa NAPS2 e passodo as instruções de uso do programa. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;20-01-2025 11:21&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [20-01-2025 08:23]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alex Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;\r\n&#60;p&#62;Favor, falar comigo pelo whatsapp.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;20-01-2025 08:23&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_46 \n\n Chamado: Descrição\n\n Título : KARLA KINELLY DE AQUINO ALEXANDRE\n Requerentes :  tecnomulti  \n Data de abertura : 20-01-2025 08:22\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - karla.minelly@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : KARLA KINELLY DE AQUINO ALEXANDRE\n2) E-MAIL : karla.minelly@tecnomulti.com\n3) TELEFONE : 83988277027\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nA IMPRESSORA NÃO CONECTA AO APLICATIVO INSTADO. JÁ DESINSTELEI E INSTALEI O APLICATIVO, MESMO ASSIM NÃO CONECTA.\n \n\n\n[20-01-2025 11:21]\nAutor Alex Cruz\nDescrição Realizado a instalação do programa NAPS2 e passodo as instruções de uso do programa. \nData de abertura 20-01-2025 11:21\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[20-01-2025 08:23]\nAutor Alex Cruz\nDescrição Bom dia,\n\n \n\nFavor, falar comigo pelo whatsapp.\nData de abertura 20-01-2025 08:23\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-46/add_followup.1737382861.65376596@oswintech.ddns.net','','mailing','add_followup'),
(192,'Ticket',46,4,2,1,6,'2025-01-20 14:21:01','2025-01-21 14:46:39',NULL,'[GLPI #0000046] Novo acompanhamento KARLA KINELLY DE AQUINO ALEXANDRE','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000046] Novo acompanhamento KARLA KINELLY DE AQUINO ALEXANDRE&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_46\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_46&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:KARLA KINELLY DE AQUINO ALEXANDRE &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:20-01-2025 08:22 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- karla.minelly@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;KARLA KINELLY DE AQUINO ALEXANDRE&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;karla.minelly@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83988277027&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;A IMPRESSORA NÃO CONECTA AO APLICATIVO INSTADO. JÁ DESINSTELEI E INSTALEI O APLICATIVO, MESMO ASSIM NÃO CONECTA.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [20-01-2025 11:21]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alex Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Realizado a instalação do programa NAPS2 e passodo as instruções de uso do programa. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;20-01-2025 11:21&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [20-01-2025 08:23]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alex Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;\r\n&#60;p&#62;Favor, falar comigo pelo whatsapp.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;20-01-2025 08:23&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_46 \n\n Chamado: Descrição\n\n Título : KARLA KINELLY DE AQUINO ALEXANDRE\n Requerentes :  tecnomulti  \n Data de abertura : 20-01-2025 08:22\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - karla.minelly@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : KARLA KINELLY DE AQUINO ALEXANDRE\n2) E-MAIL : karla.minelly@tecnomulti.com\n3) TELEFONE : 83988277027\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nA IMPRESSORA NÃO CONECTA AO APLICATIVO INSTADO. JÁ DESINSTELEI E INSTALEI O APLICATIVO, MESMO ASSIM NÃO CONECTA.\n \n\n\n[20-01-2025 11:21]\nAutor Alex Cruz\nDescrição Realizado a instalação do programa NAPS2 e passodo as instruções de uso do programa. \nData de abertura 20-01-2025 11:21\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[20-01-2025 08:23]\nAutor Alex Cruz\nDescrição Bom dia,\n\n \n\nFavor, falar comigo pelo whatsapp.\nData de abertura 20-01-2025 08:23\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-46/add_followup.1737382861.409233522@oswintech.ddns.net','','mailing','add_followup'),
(193,'Ticket',46,4,2,1,6,'2025-01-20 14:21:10','2025-01-21 14:46:39',NULL,'[GLPI #0000046] Encerramento do chamado KARLA KINELLY DE AQUINO ALEXANDRE','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000046] Encerramento do chamado KARLA KINELLY DE AQUINO ALEXANDRE&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_46\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_46&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:KARLA KINELLY DE AQUINO ALEXANDRE &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:20-01-2025 08:22 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:20-01-2025 11:21 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- karla.minelly@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;KARLA KINELLY DE AQUINO ALEXANDRE&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;karla.minelly@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83988277027&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;A IMPRESSORA NÃO CONECTA AO APLICATIVO INSTADO. JÁ DESINSTELEI E INSTALEI O APLICATIVO, MESMO ASSIM NÃO CONECTA.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 20-01-2025 11:21&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [20-01-2025 11:21]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alex Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Realizado a instalação do programa NAPS2 e passodo as instruções de uso do programa. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;20-01-2025 11:21&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [20-01-2025 08:23]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alex Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;\r\n&#60;p&#62;Favor, falar comigo pelo whatsapp.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;20-01-2025 08:23&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_46 \n\n Chamado: Descrição\n\n Título : KARLA KINELLY DE AQUINO ALEXANDRE\n Requerentes :  tecnomulti  \n Data de abertura : 20-01-2025 08:22\n Data de fechamento : 20-01-2025 11:21\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - karla.minelly@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : KARLA KINELLY DE AQUINO ALEXANDRE\n2) E-MAIL : karla.minelly@tecnomulti.com\n3) TELEFONE : 83988277027\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nA IMPRESSORA NÃO CONECTA AO APLICATIVO INSTADO. JÁ DESINSTELEI E INSTALEI O APLICATIVO, MESMO ASSIM NÃO CONECTA.\n \n\n Data da solução : 20-01-2025 11:21\n Tipo de solução : \n Solução : \n \n\n\n[20-01-2025 11:21]\nAutor Alex Cruz\nDescrição Realizado a instalação do programa NAPS2 e passodo as instruções de uso do programa. \nData de abertura 20-01-2025 11:21\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[20-01-2025 08:23]\nAutor Alex Cruz\nDescrição Bom dia,\n\n \n\nFavor, falar comigo pelo whatsapp.\nData de abertura 20-01-2025 08:23\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-46/closed.1737382870.617232186@oswintech.ddns.net','','mailing','closed'),
(194,'Ticket',46,4,2,1,6,'2025-01-20 14:21:10','2025-01-21 14:46:39',NULL,'[GLPI #0000046] Encerramento do chamado KARLA KINELLY DE AQUINO ALEXANDRE','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000046] Encerramento do chamado KARLA KINELLY DE AQUINO ALEXANDRE&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_46\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_46&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:KARLA KINELLY DE AQUINO ALEXANDRE &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:20-01-2025 08:22 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:20-01-2025 11:21 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- karla.minelly@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;KARLA KINELLY DE AQUINO ALEXANDRE&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;karla.minelly@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83988277027&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;A IMPRESSORA NÃO CONECTA AO APLICATIVO INSTADO. JÁ DESINSTELEI E INSTALEI O APLICATIVO, MESMO ASSIM NÃO CONECTA.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 20-01-2025 11:21&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [20-01-2025 11:21]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alex Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Realizado a instalação do programa NAPS2 e passodo as instruções de uso do programa. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;20-01-2025 11:21&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [20-01-2025 08:23]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alex Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;\r\n&#60;p&#62;Favor, falar comigo pelo whatsapp.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;20-01-2025 08:23&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_46 \n\n Chamado: Descrição\n\n Título : KARLA KINELLY DE AQUINO ALEXANDRE\n Requerentes :  tecnomulti  \n Data de abertura : 20-01-2025 08:22\n Data de fechamento : 20-01-2025 11:21\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - karla.minelly@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : KARLA KINELLY DE AQUINO ALEXANDRE\n2) E-MAIL : karla.minelly@tecnomulti.com\n3) TELEFONE : 83988277027\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nA IMPRESSORA NÃO CONECTA AO APLICATIVO INSTADO. JÁ DESINSTELEI E INSTALEI O APLICATIVO, MESMO ASSIM NÃO CONECTA.\n \n\n Data da solução : 20-01-2025 11:21\n Tipo de solução : \n Solução : \n \n\n\n[20-01-2025 11:21]\nAutor Alex Cruz\nDescrição Realizado a instalação do programa NAPS2 e passodo as instruções de uso do programa. \nData de abertura 20-01-2025 11:21\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[20-01-2025 08:23]\nAutor Alex Cruz\nDescrição Bom dia,\n\n \n\nFavor, falar comigo pelo whatsapp.\nData de abertura 20-01-2025 08:23\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-46/closed.1737382870.9499767@oswintech.ddns.net','','mailing','closed'),
(195,'Ticket',45,4,2,1,6,'2025-01-20 14:21:50','2025-01-21 14:46:39',NULL,'[GLPI #0000045] Novo acompanhamento Eu já desinstalei o aplicativo da impressora e já instalei novamente e a impressora não conecta karla.minelly@tecnomulti.com','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000045] Novo acompanhamento Eu j&#38;aacute; desinstalei o aplicativo da impressora e j&#38;aacute; instalei novamente e a impressora n&#38;atilde;o conecta karla.minelly@tecnomulti.com&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_45\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_45&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Eu j&#38;aacute; desinstalei o aplicativo da impressora e j&#38;aacute; instalei novamente e a impressora n&#38;atilde;o conecta karla.minelly@tecnomulti.com &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:17-01-2025 15:01 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- Novo chamado     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Eu já desinstalei o aplicativo da impressora e já instalei novamente e a impressora não conecta&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;karla.minelly@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83988277027&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Eu já desinstalei o aplicativo da impressora e já instalei novamente e a impressora não conecta&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [20-01-2025 11:21]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alex Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Atendimento em duplicidade e já solucionado. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;20-01-2025 11:21&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [20-01-2025 08:08]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia Karla, poderia me informar o acesso remoto(anydesk ou teamviewer) do seu computador por favor.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;20-01-2025 08:08&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_45 \n\n Chamado: Descrição\n\n Título : Eu já desinstalei o aplicativo da impressora e já instalei novamente e a impressora não conecta karla.minelly@tecnomulti.com\n Requerentes :  tecnomulti  \n Data de abertura : 17-01-2025 15:01\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - Novo chamado\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Eu já desinstalei o aplicativo da impressora e já instalei novamente e a impressora não conecta\n2) E-MAIL : karla.minelly@tecnomulti.com\n3) TELEFONE : 83988277027\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nEu já desinstalei o aplicativo da impressora e já instalei novamente e a impressora não conecta\n \n\n\n[20-01-2025 11:21]\nAutor Alex Cruz\nDescrição Atendimento em duplicidade e já solucionado. \nData de abertura 20-01-2025 11:21\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[20-01-2025 08:08]\nAutor Luan Medeiros\nDescrição Bom dia Karla, poderia me informar o acesso remoto(anydesk ou teamviewer) do seu computador por favor.\nData de abertura 20-01-2025 08:08\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-45/add_followup.1737382910.1798019756@oswintech.ddns.net','','mailing','add_followup'),
(196,'Ticket',45,4,2,1,6,'2025-01-20 14:21:50','2025-01-21 14:46:39',NULL,'[GLPI #0000045] Novo acompanhamento Eu já desinstalei o aplicativo da impressora e já instalei novamente e a impressora não conecta karla.minelly@tecnomulti.com','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000045] Novo acompanhamento Eu j&#38;aacute; desinstalei o aplicativo da impressora e j&#38;aacute; instalei novamente e a impressora n&#38;atilde;o conecta karla.minelly@tecnomulti.com&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_45\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_45&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Eu j&#38;aacute; desinstalei o aplicativo da impressora e j&#38;aacute; instalei novamente e a impressora n&#38;atilde;o conecta karla.minelly@tecnomulti.com &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:17-01-2025 15:01 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- Novo chamado     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Eu já desinstalei o aplicativo da impressora e já instalei novamente e a impressora não conecta&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;karla.minelly@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83988277027&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Eu já desinstalei o aplicativo da impressora e já instalei novamente e a impressora não conecta&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [20-01-2025 11:21]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alex Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Atendimento em duplicidade e já solucionado. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;20-01-2025 11:21&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [20-01-2025 08:08]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia Karla, poderia me informar o acesso remoto(anydesk ou teamviewer) do seu computador por favor.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;20-01-2025 08:08&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_45 \n\n Chamado: Descrição\n\n Título : Eu já desinstalei o aplicativo da impressora e já instalei novamente e a impressora não conecta karla.minelly@tecnomulti.com\n Requerentes :  tecnomulti  \n Data de abertura : 17-01-2025 15:01\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - Novo chamado\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Eu já desinstalei o aplicativo da impressora e já instalei novamente e a impressora não conecta\n2) E-MAIL : karla.minelly@tecnomulti.com\n3) TELEFONE : 83988277027\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nEu já desinstalei o aplicativo da impressora e já instalei novamente e a impressora não conecta\n \n\n\n[20-01-2025 11:21]\nAutor Alex Cruz\nDescrição Atendimento em duplicidade e já solucionado. \nData de abertura 20-01-2025 11:21\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[20-01-2025 08:08]\nAutor Luan Medeiros\nDescrição Bom dia Karla, poderia me informar o acesso remoto(anydesk ou teamviewer) do seu computador por favor.\nData de abertura 20-01-2025 08:08\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-45/add_followup.1737382910.94596234@oswintech.ddns.net','','mailing','add_followup'),
(197,'Ticket',45,4,2,1,6,'2025-01-20 14:21:56','2025-01-21 14:46:39',NULL,'[GLPI #0000045] Encerramento do chamado Eu já desinstalei o aplicativo da impressora e já instalei novamente e a impressora não conecta karla.minelly@tecnomulti.com','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000045] Encerramento do chamado Eu j&#38;aacute; desinstalei o aplicativo da impressora e j&#38;aacute; instalei novamente e a impressora n&#38;atilde;o conecta karla.minelly@tecnomulti.com&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_45\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_45&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Eu j&#38;aacute; desinstalei o aplicativo da impressora e j&#38;aacute; instalei novamente e a impressora n&#38;atilde;o conecta karla.minelly@tecnomulti.com &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:17-01-2025 15:01 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:20-01-2025 11:21 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- Novo chamado     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Eu já desinstalei o aplicativo da impressora e já instalei novamente e a impressora não conecta&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;karla.minelly@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83988277027&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Eu já desinstalei o aplicativo da impressora e já instalei novamente e a impressora não conecta&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 20-01-2025 11:21&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [20-01-2025 11:21]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alex Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Atendimento em duplicidade e já solucionado. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;20-01-2025 11:21&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [20-01-2025 08:08]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia Karla, poderia me informar o acesso remoto(anydesk ou teamviewer) do seu computador por favor.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;20-01-2025 08:08&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_45 \n\n Chamado: Descrição\n\n Título : Eu já desinstalei o aplicativo da impressora e já instalei novamente e a impressora não conecta karla.minelly@tecnomulti.com\n Requerentes :  tecnomulti  \n Data de abertura : 17-01-2025 15:01\n Data de fechamento : 20-01-2025 11:21\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - Novo chamado\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Eu já desinstalei o aplicativo da impressora e já instalei novamente e a impressora não conecta\n2) E-MAIL : karla.minelly@tecnomulti.com\n3) TELEFONE : 83988277027\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nEu já desinstalei o aplicativo da impressora e já instalei novamente e a impressora não conecta\n \n\n Data da solução : 20-01-2025 11:21\n Tipo de solução : \n Solução : \n \n\n\n[20-01-2025 11:21]\nAutor Alex Cruz\nDescrição Atendimento em duplicidade e já solucionado. \nData de abertura 20-01-2025 11:21\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[20-01-2025 08:08]\nAutor Luan Medeiros\nDescrição Bom dia Karla, poderia me informar o acesso remoto(anydesk ou teamviewer) do seu computador por favor.\nData de abertura 20-01-2025 08:08\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-45/closed.1737382916.1386124731@oswintech.ddns.net','','mailing','closed'),
(198,'Ticket',45,4,2,1,6,'2025-01-20 14:21:56','2025-01-21 14:46:39',NULL,'[GLPI #0000045] Encerramento do chamado Eu já desinstalei o aplicativo da impressora e já instalei novamente e a impressora não conecta karla.minelly@tecnomulti.com','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000045] Encerramento do chamado Eu j&#38;aacute; desinstalei o aplicativo da impressora e j&#38;aacute; instalei novamente e a impressora n&#38;atilde;o conecta karla.minelly@tecnomulti.com&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_45\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_45&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Eu j&#38;aacute; desinstalei o aplicativo da impressora e j&#38;aacute; instalei novamente e a impressora n&#38;atilde;o conecta karla.minelly@tecnomulti.com &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:17-01-2025 15:01 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:20-01-2025 11:21 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- Novo chamado     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Eu já desinstalei o aplicativo da impressora e já instalei novamente e a impressora não conecta&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;karla.minelly@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83988277027&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Eu já desinstalei o aplicativo da impressora e já instalei novamente e a impressora não conecta&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 20-01-2025 11:21&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [20-01-2025 11:21]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alex Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Atendimento em duplicidade e já solucionado. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;20-01-2025 11:21&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [20-01-2025 08:08]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia Karla, poderia me informar o acesso remoto(anydesk ou teamviewer) do seu computador por favor.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;20-01-2025 08:08&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_45 \n\n Chamado: Descrição\n\n Título : Eu já desinstalei o aplicativo da impressora e já instalei novamente e a impressora não conecta karla.minelly@tecnomulti.com\n Requerentes :  tecnomulti  \n Data de abertura : 17-01-2025 15:01\n Data de fechamento : 20-01-2025 11:21\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - Novo chamado\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Eu já desinstalei o aplicativo da impressora e já instalei novamente e a impressora não conecta\n2) E-MAIL : karla.minelly@tecnomulti.com\n3) TELEFONE : 83988277027\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nEu já desinstalei o aplicativo da impressora e já instalei novamente e a impressora não conecta\n \n\n Data da solução : 20-01-2025 11:21\n Tipo de solução : \n Solução : \n \n\n\n[20-01-2025 11:21]\nAutor Alex Cruz\nDescrição Atendimento em duplicidade e já solucionado. \nData de abertura 20-01-2025 11:21\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[20-01-2025 08:08]\nAutor Luan Medeiros\nDescrição Bom dia Karla, poderia me informar o acesso remoto(anydesk ou teamviewer) do seu computador por favor.\nData de abertura 20-01-2025 08:08\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-45/closed.1737382916.1785927112@oswintech.ddns.net','','mailing','closed'),
(199,'Ticket',47,4,2,1,6,'2025-01-20 14:23:36','2025-01-21 14:46:39',NULL,'[GLPI #0000047] Novo acompanhamento Instalação de vpn','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000047] Novo acompanhamento Instala&#38;ccedil;&#38;atilde;o de vpn&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_47\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_47&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Instala&#38;ccedil;&#38;atilde;o de vpn &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:20-01-2025 10:39 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- gilberto.silva@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Instalação de vpn&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;gilberto.silva@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81991391898&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Instalação de vpn&#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [20-01-2025 11:23]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alex Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, &#60;/p&#62;\r\n&#60;p&#62;Vou realziar a configuração. Falarei com vc via whatsapp.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;20-01-2025 11:23&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_47 \n\n Chamado: Descrição\n\n Título : Instalação de vpn\n Requerentes :  tecnomulti  \n Data de abertura : 20-01-2025 10:39\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - gilberto.silva@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Instalação de vpn\n2) E-MAIL : gilberto.silva@tecnomulti.com\n3) TELEFONE : 81991391898\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nInstalação de vpn\n\n \n\n \n \n\n\n[20-01-2025 11:23]\nAutor Alex Cruz\nDescrição Bom dia, \n\nVou realziar a configuração. Falarei com vc via whatsapp.\nData de abertura 20-01-2025 11:23\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-47/add_followup.1737383016.2115152597@oswintech.ddns.net','','mailing','add_followup'),
(200,'Ticket',47,4,2,1,6,'2025-01-20 14:23:36','2025-01-21 14:46:39',NULL,'[GLPI #0000047] Novo acompanhamento Instalação de vpn','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000047] Novo acompanhamento Instala&#38;ccedil;&#38;atilde;o de vpn&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_47\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_47&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Instala&#38;ccedil;&#38;atilde;o de vpn &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:20-01-2025 10:39 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- gilberto.silva@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Instalação de vpn&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;gilberto.silva@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81991391898&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Instalação de vpn&#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [20-01-2025 11:23]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alex Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, &#60;/p&#62;\r\n&#60;p&#62;Vou realziar a configuração. Falarei com vc via whatsapp.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;20-01-2025 11:23&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_47 \n\n Chamado: Descrição\n\n Título : Instalação de vpn\n Requerentes :  tecnomulti  \n Data de abertura : 20-01-2025 10:39\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - gilberto.silva@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Instalação de vpn\n2) E-MAIL : gilberto.silva@tecnomulti.com\n3) TELEFONE : 81991391898\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nInstalação de vpn\n\n \n\n \n \n\n\n[20-01-2025 11:23]\nAutor Alex Cruz\nDescrição Bom dia, \n\nVou realziar a configuração. Falarei com vc via whatsapp.\nData de abertura 20-01-2025 11:23\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-47/add_followup.1737383016.713715576@oswintech.ddns.net','','mailing','add_followup'),
(201,'Ticket',47,4,2,1,6,'2025-01-20 14:32:58','2025-01-21 14:46:39',NULL,'[GLPI #0000047] Novo acompanhamento Instalação de vpn','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000047] Novo acompanhamento Instala&#38;ccedil;&#38;atilde;o de vpn&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_47\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_47&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Instala&#38;ccedil;&#38;atilde;o de vpn &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:20-01-2025 10:39 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- gilberto.silva@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Instalação de vpn&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;gilberto.silva@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81991391898&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Instalação de vpn&#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [20-01-2025 11:32]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alex Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Configuração concluída.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;20-01-2025 11:32&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [20-01-2025 11:23]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alex Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, &#60;/p&#62;\r\n&#60;p&#62;Vou realziar a configuração. Falarei com vc via whatsapp.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;20-01-2025 11:23&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_47 \n\n Chamado: Descrição\n\n Título : Instalação de vpn\n Requerentes :  tecnomulti  \n Data de abertura : 20-01-2025 10:39\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - gilberto.silva@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Instalação de vpn\n2) E-MAIL : gilberto.silva@tecnomulti.com\n3) TELEFONE : 81991391898\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nInstalação de vpn\n\n \n\n \n \n\n\n[20-01-2025 11:32]\nAutor Alex Cruz\nDescrição Configuração concluída.\nData de abertura 20-01-2025 11:32\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[20-01-2025 11:23]\nAutor Alex Cruz\nDescrição Bom dia, \n\nVou realziar a configuração. Falarei com vc via whatsapp.\nData de abertura 20-01-2025 11:23\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-47/add_followup.1737383578.1191040403@oswintech.ddns.net','','mailing','add_followup'),
(202,'Ticket',47,4,2,1,6,'2025-01-20 14:32:58','2025-01-21 15:41:36',NULL,'[GLPI #0000047] Novo acompanhamento Instalação de vpn','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000047] Novo acompanhamento Instala&#38;ccedil;&#38;atilde;o de vpn&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_47\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_47&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Instala&#38;ccedil;&#38;atilde;o de vpn &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:20-01-2025 10:39 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- gilberto.silva@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Instalação de vpn&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;gilberto.silva@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81991391898&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Instalação de vpn&#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [20-01-2025 11:32]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alex Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Configuração concluída.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;20-01-2025 11:32&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [20-01-2025 11:23]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alex Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, &#60;/p&#62;\r\n&#60;p&#62;Vou realziar a configuração. Falarei com vc via whatsapp.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;20-01-2025 11:23&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_47 \n\n Chamado: Descrição\n\n Título : Instalação de vpn\n Requerentes :  tecnomulti  \n Data de abertura : 20-01-2025 10:39\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - gilberto.silva@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Instalação de vpn\n2) E-MAIL : gilberto.silva@tecnomulti.com\n3) TELEFONE : 81991391898\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nInstalação de vpn\n\n \n\n \n \n\n\n[20-01-2025 11:32]\nAutor Alex Cruz\nDescrição Configuração concluída.\nData de abertura 20-01-2025 11:32\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[20-01-2025 11:23]\nAutor Alex Cruz\nDescrição Bom dia, \n\nVou realziar a configuração. Falarei com vc via whatsapp.\nData de abertura 20-01-2025 11:23\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-47/add_followup.1737383578.18236937@oswintech.ddns.net','','mailing','add_followup'),
(203,'Ticket',47,4,2,1,6,'2025-01-20 14:33:05','2025-01-21 15:41:36',NULL,'[GLPI #0000047] Encerramento do chamado Instalação de vpn','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000047] Encerramento do chamado Instala&#38;ccedil;&#38;atilde;o de vpn&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_47\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_47&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Instala&#38;ccedil;&#38;atilde;o de vpn &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:20-01-2025 10:39 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:20-01-2025 11:33 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- gilberto.silva@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Instalação de vpn&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;gilberto.silva@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81991391898&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Instalação de vpn&#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 20-01-2025 11:33&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [20-01-2025 11:32]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alex Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Configuração concluída.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;20-01-2025 11:32&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [20-01-2025 11:23]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alex Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, &#60;/p&#62;\r\n&#60;p&#62;Vou realziar a configuração. Falarei com vc via whatsapp.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;20-01-2025 11:23&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_47 \n\n Chamado: Descrição\n\n Título : Instalação de vpn\n Requerentes :  tecnomulti  \n Data de abertura : 20-01-2025 10:39\n Data de fechamento : 20-01-2025 11:33\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - gilberto.silva@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Instalação de vpn\n2) E-MAIL : gilberto.silva@tecnomulti.com\n3) TELEFONE : 81991391898\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nInstalação de vpn\n\n \n\n \n \n\n Data da solução : 20-01-2025 11:33\n Tipo de solução : \n Solução : \n \n\n\n[20-01-2025 11:32]\nAutor Alex Cruz\nDescrição Configuração concluída.\nData de abertura 20-01-2025 11:32\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[20-01-2025 11:23]\nAutor Alex Cruz\nDescrição Bom dia, \n\nVou realziar a configuração. Falarei com vc via whatsapp.\nData de abertura 20-01-2025 11:23\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-47/closed.1737383585.1377308474@oswintech.ddns.net','','mailing','closed'),
(204,'Ticket',47,4,2,1,6,'2025-01-20 14:33:05','2025-01-21 18:07:22',NULL,'[GLPI #0000047] Encerramento do chamado Instalação de vpn','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000047] Encerramento do chamado Instala&#38;ccedil;&#38;atilde;o de vpn&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_47\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_47&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Instala&#38;ccedil;&#38;atilde;o de vpn &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:20-01-2025 10:39 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:20-01-2025 11:33 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- gilberto.silva@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Instalação de vpn&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;gilberto.silva@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81991391898&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Instalação de vpn&#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 20-01-2025 11:33&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [20-01-2025 11:32]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alex Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Configuração concluída.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;20-01-2025 11:32&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [20-01-2025 11:23]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alex Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, &#60;/p&#62;\r\n&#60;p&#62;Vou realziar a configuração. Falarei com vc via whatsapp.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;20-01-2025 11:23&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_47 \n\n Chamado: Descrição\n\n Título : Instalação de vpn\n Requerentes :  tecnomulti  \n Data de abertura : 20-01-2025 10:39\n Data de fechamento : 20-01-2025 11:33\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - gilberto.silva@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Instalação de vpn\n2) E-MAIL : gilberto.silva@tecnomulti.com\n3) TELEFONE : 81991391898\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nInstalação de vpn\n\n \n\n \n \n\n Data da solução : 20-01-2025 11:33\n Tipo de solução : \n Solução : \n \n\n\n[20-01-2025 11:32]\nAutor Alex Cruz\nDescrição Configuração concluída.\nData de abertura 20-01-2025 11:32\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[20-01-2025 11:23]\nAutor Alex Cruz\nDescrição Bom dia, \n\nVou realziar a configuração. Falarei com vc via whatsapp.\nData de abertura 20-01-2025 11:23\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-47/closed.1737383585.1930393025@oswintech.ddns.net','','mailing','closed'),
(205,'Ticket',48,4,2,1,6,'2025-01-20 14:35:46','2025-01-21 18:07:22',NULL,'[GLPI #0000048] Novo acompanhamento CAIXA DE EMAIL CHEIA ','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000048] Novo acompanhamento CAIXA DE EMAIL CHEIA &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_48\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_48&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:CAIXA DE EMAIL CHEIA  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:20-01-2025 11:05 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- graciane.coelho@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CAIXA DE EMAIL CHEIA &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;graciane.coelho@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81986981633&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;&#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=10&#38;amp;itemtype=Ticket&#38;amp;items_id=48\" target=\"_blank\"&#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-678e5833761ee6.52395438\" width=\"1366\" src=\"/front/document.send.php?docid=10&#38;amp;itemtype=Ticket&#38;amp;items_id=48\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [20-01-2025 11:35]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alex Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Olá, Bom dia!&#60;/p&#62;\r\n&#60;p&#62;Uma dica de quando receber esses e-mail é comunicarmos e não clicar em nada pois pode ser spamm. Vocês está com problema de envio ou recebimento?&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;20-01-2025 11:35&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_48 \n\n Chamado: Descrição\n\n Título : CAIXA DE EMAIL CHEIA \n Requerentes :  tecnomulti  \n Data de abertura : 20-01-2025 11:05\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - graciane.coelho@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CAIXA DE EMAIL CHEIA \n2) E-MAIL : graciane.coelho@tecnomulti.com\n3) TELEFONE : 81986981633\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \n[ec3ac8cc-b2d8e96f-678e5833761ee6.52395438] [https://oswintech.ddns.net/front/document.send.php?docid=10&#38;itemtype=Ticket&#38;items_id=48]\n \n\n\n[20-01-2025 11:35]\nAutor Alex Cruz\nDescrição Olá, Bom dia!\n\nUma dica de quando receber esses e-mail é comunicarmos e não clicar em nada pois pode ser spamm. Vocês está com problema de envio ou recebimento?\nData de abertura 20-01-2025 11:35\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-48/add_followup.1737383747.202651450@oswintech.ddns.net','','mailing','add_followup'),
(206,'Ticket',48,4,2,1,6,'2025-01-20 14:35:46','2025-01-21 18:07:22',NULL,'[GLPI #0000048] Novo acompanhamento CAIXA DE EMAIL CHEIA ','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000048] Novo acompanhamento CAIXA DE EMAIL CHEIA &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_48\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_48&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:CAIXA DE EMAIL CHEIA  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:20-01-2025 11:05 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- graciane.coelho@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CAIXA DE EMAIL CHEIA &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;graciane.coelho@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81986981633&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;&#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=10&#38;amp;itemtype=Ticket&#38;amp;items_id=48\" target=\"_blank\"&#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-678e5833761ee6.52395438\" width=\"1366\" src=\"/front/document.send.php?docid=10&#38;amp;itemtype=Ticket&#38;amp;items_id=48\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [20-01-2025 11:35]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alex Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Olá, Bom dia!&#60;/p&#62;\r\n&#60;p&#62;Uma dica de quando receber esses e-mail é comunicarmos e não clicar em nada pois pode ser spamm. Vocês está com problema de envio ou recebimento?&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;20-01-2025 11:35&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_48 \n\n Chamado: Descrição\n\n Título : CAIXA DE EMAIL CHEIA \n Requerentes :  tecnomulti  \n Data de abertura : 20-01-2025 11:05\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - graciane.coelho@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CAIXA DE EMAIL CHEIA \n2) E-MAIL : graciane.coelho@tecnomulti.com\n3) TELEFONE : 81986981633\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \n[ec3ac8cc-b2d8e96f-678e5833761ee6.52395438] [https://oswintech.ddns.net/front/document.send.php?docid=10&#38;itemtype=Ticket&#38;items_id=48]\n \n\n\n[20-01-2025 11:35]\nAutor Alex Cruz\nDescrição Olá, Bom dia!\n\nUma dica de quando receber esses e-mail é comunicarmos e não clicar em nada pois pode ser spamm. Vocês está com problema de envio ou recebimento?\nData de abertura 20-01-2025 11:35\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-48/add_followup.1737383747.1349307712@oswintech.ddns.net','','mailing','add_followup'),
(207,'PluginFormcreatorFormAnswer',13,29,2,1,6,'2025-01-21 00:18:58','2025-01-21 18:07:22',NULL,'[GLPI] Sua requisição foi salva','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI] Sua requisi&#38;ccedil;&#38;atilde;o foi salva&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;p&#62;Olá,&#60;br /&#62;Sua requisição do GLPI foi salva com sucesso com o número 13 e transmitido para a equipe de helpdesk.&#60;br /&#62;Você pode ver suas respostas no seguinte link:&#60;br /&#62;https://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=13&#60;/p&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;','Olá,\nSua requisição do GLPI foi salva com sucesso com o número 13 e transmitido para a equipe de helpdesk.\nVocê pode ver suas respostas no seguinte link:\nhttps://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=13\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-PluginFormcreatorFormAnswer-13/plugin_formcreator_form_created.1737418738.1266282040@oswintech.ddns.net','','mailing','plugin_formcreator_form_created'),
(208,'Ticket',49,4,2,1,0,'2025-01-21 00:18:58','2025-01-21 00:18:58','2025-01-21 14:06:04','[GLPI #0000049] Novo chamado Erro navegador',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_49 \n\n Chamado: Descrição\n\n Título : Erro navegador\n Requerentes :  tecnomulti  \n Data de abertura : 20-01-2025 21:18\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Erro navegador\n2) E-MAIL : suporte@tecnomulti.com\n3) TELEFONE : 84998426881\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nNão está abrindo pagina xxx.xxxx\n\n[ec3ac8cc-b2d8e96f-678ee7e6eb9177.72480582] [https://oswintech.ddns.net/front/document.send.php?docid=11&#38;itemtype=Ticket&#38;items_id=49]\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(209,'Ticket',49,4,2,1,0,'2025-01-21 00:18:58','2025-01-21 00:18:58','2025-01-30 15:37:32','[GLPI #0000049] Novo chamado Erro navegador',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_49 \n\n Chamado: Descrição\n\n Título : Erro navegador\n Requerentes :  tecnomulti  \n Data de abertura : 20-01-2025 21:18\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Erro navegador\n2) E-MAIL : suporte@tecnomulti.com\n3) TELEFONE : 84998426881\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nNão está abrindo pagina xxx.xxxx\n\n[ec3ac8cc-b2d8e96f-678ee7e6eb9177.72480582] [https://oswintech.ddns.net/front/document.send.php?docid=11&#38;itemtype=Ticket&#38;items_id=49]\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(210,'Ticket',49,4,2,1,0,'2025-01-21 00:18:58','2025-01-21 00:18:58','2025-01-30 15:49:46','[GLPI #0000049] Novo chamado Erro navegador',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_49 \n\n Chamado: Descrição\n\n Título : Erro navegador\n Requerentes :  tecnomulti  \n Data de abertura : 20-01-2025 21:18\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Erro navegador\n2) E-MAIL : suporte@tecnomulti.com\n3) TELEFONE : 84998426881\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nNão está abrindo pagina xxx.xxxx\n\n[ec3ac8cc-b2d8e96f-678ee7e6eb9177.72480582] [https://oswintech.ddns.net/front/document.send.php?docid=11&#38;itemtype=Ticket&#38;items_id=49]\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(211,'Ticket',49,4,2,1,0,'2025-01-21 00:18:58','2025-01-21 00:18:58','2025-01-21 02:39:18','[GLPI #0000049] Novo chamado Erro navegador',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_49 \n\n Chamado: Descrição\n\n Título : Erro navegador\n Requerentes :  tecnomulti  \n Data de abertura : 20-01-2025 21:18\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Erro navegador\n2) E-MAIL : suporte@tecnomulti.com\n3) TELEFONE : 84998426881\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nNão está abrindo pagina xxx.xxxx\n\n[ec3ac8cc-b2d8e96f-678ee7e6eb9177.72480582] [https://oswintech.ddns.net/front/document.send.php?docid=11&#38;itemtype=Ticket&#38;items_id=49]\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(212,'Ticket',49,4,2,1,6,'2025-01-21 00:18:58','2025-01-21 18:07:22',NULL,'[GLPI #0000049] Novo chamado Erro navegador','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000049] Novo chamado Erro navegador&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_49\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_49&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Erro navegador &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:20-01-2025 21:18 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Erro navegador&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;suporte@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84998426881&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Não está abrindo pagina xxx.xxxx&#60;/p&#62;\n&#60;p&#62;&#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=11&#38;amp;itemtype=Ticket&#38;amp;items_id=49\" target=\"_blank\"&#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-678ee7e6eb9177.72480582\" width=\"443\" src=\"/front/document.send.php?docid=11&#38;amp;itemtype=Ticket&#38;amp;items_id=49\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_49 \n\n Chamado: Descrição\n\n Título : Erro navegador\n Requerentes :  tecnomulti  \n Data de abertura : 20-01-2025 21:18\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Erro navegador\n2) E-MAIL : suporte@tecnomulti.com\n3) TELEFONE : 84998426881\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nNão está abrindo pagina xxx.xxxx\n\n[ec3ac8cc-b2d8e96f-678ee7e6eb9177.72480582] [https://oswintech.ddns.net/front/document.send.php?docid=11&#38;itemtype=Ticket&#38;items_id=49]\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-49/new@oswintech.ddns.net','','mailing','new'),
(213,'Ticket',49,4,2,1,6,'2025-01-21 00:18:58','2025-01-21 18:07:22',NULL,'[GLPI #0000049] Novo chamado Erro navegador','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000049] Novo chamado Erro navegador&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_49\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_49&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Erro navegador &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:20-01-2025 21:18 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Erro navegador&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;suporte@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84998426881&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Não está abrindo pagina xxx.xxxx&#60;/p&#62;\n&#60;p&#62;&#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=11&#38;amp;itemtype=Ticket&#38;amp;items_id=49\" target=\"_blank\"&#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-678ee7e6eb9177.72480582\" width=\"443\" src=\"/front/document.send.php?docid=11&#38;amp;itemtype=Ticket&#38;amp;items_id=49\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_49 \n\n Chamado: Descrição\n\n Título : Erro navegador\n Requerentes :  tecnomulti  \n Data de abertura : 20-01-2025 21:18\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Erro navegador\n2) E-MAIL : suporte@tecnomulti.com\n3) TELEFONE : 84998426881\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nNão está abrindo pagina xxx.xxxx\n\n[ec3ac8cc-b2d8e96f-678ee7e6eb9177.72480582] [https://oswintech.ddns.net/front/document.send.php?docid=11&#38;itemtype=Ticket&#38;items_id=49]\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-49/new@oswintech.ddns.net','','mailing','new'),
(214,'Ticket',49,4,2,1,6,'2025-01-21 00:18:58','2025-01-21 18:07:22',NULL,'[GLPI #0000049] Novo chamado Erro navegador','admsys@localhost','','alexcruzfab@hotmail.com','Alex Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000049] Novo chamado Erro navegador&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_49\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_49&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Erro navegador &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:20-01-2025 21:18 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Erro navegador&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;suporte@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84998426881&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Não está abrindo pagina xxx.xxxx&#60;/p&#62;\n&#60;p&#62;&#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=11&#38;amp;itemtype=Ticket&#38;amp;items_id=49\" target=\"_blank\"&#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-678ee7e6eb9177.72480582\" width=\"443\" src=\"/front/document.send.php?docid=11&#38;amp;itemtype=Ticket&#38;amp;items_id=49\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_49 \n\n Chamado: Descrição\n\n Título : Erro navegador\n Requerentes :  tecnomulti  \n Data de abertura : 20-01-2025 21:18\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Erro navegador\n2) E-MAIL : suporte@tecnomulti.com\n3) TELEFONE : 84998426881\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nNão está abrindo pagina xxx.xxxx\n\n[ec3ac8cc-b2d8e96f-678ee7e6eb9177.72480582] [https://oswintech.ddns.net/front/document.send.php?docid=11&#38;itemtype=Ticket&#38;items_id=49]\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-49/new@oswintech.ddns.net','','mailing','new'),
(215,'Ticket',49,4,2,1,6,'2025-01-21 00:18:58','2025-01-21 18:07:23',NULL,'[GLPI #0000049] Novo chamado Erro navegador','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000049] Novo chamado Erro navegador&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_49\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_49&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Erro navegador &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:20-01-2025 21:18 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Erro navegador&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;suporte@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84998426881&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Não está abrindo pagina xxx.xxxx&#60;/p&#62;\n&#60;p&#62;&#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=11&#38;amp;itemtype=Ticket&#38;amp;items_id=49\" target=\"_blank\"&#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-678ee7e6eb9177.72480582\" width=\"443\" src=\"/front/document.send.php?docid=11&#38;amp;itemtype=Ticket&#38;amp;items_id=49\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_49 \n\n Chamado: Descrição\n\n Título : Erro navegador\n Requerentes :  tecnomulti  \n Data de abertura : 20-01-2025 21:18\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Erro navegador\n2) E-MAIL : suporte@tecnomulti.com\n3) TELEFONE : 84998426881\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nNão está abrindo pagina xxx.xxxx\n\n[ec3ac8cc-b2d8e96f-678ee7e6eb9177.72480582] [https://oswintech.ddns.net/front/document.send.php?docid=11&#38;itemtype=Ticket&#38;items_id=49]\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-49/new@oswintech.ddns.net','','mailing','new'),
(216,'Ticket',49,4,2,1,6,'2025-01-21 00:23:57','2025-01-21 19:25:14',NULL,'[GLPI #0000049] Novo acompanhamento Erro navegador','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000049] Novo acompanhamento Erro navegador&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_49\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_49&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Erro navegador &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:20-01-2025 21:18 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- suporte@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Erro navegador&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;suporte@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84998426881&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Não está abrindo pagina xxx.xxxx&#60;/p&#62;\n&#60;p&#62;&#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=11&#38;amp;itemtype=Ticket&#38;amp;items_id=49\" target=\"_blank\"&#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-678ee7e6eb9177.72480582\" width=\"443\" src=\"/front/document.send.php?docid=11&#38;amp;itemtype=Ticket&#38;amp;items_id=49\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [20-01-2025 21:23]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alex Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Olá, &#60;/p&#62;\r\n&#60;p&#62;Por favor, me informe o ID do anydesk para ter acesso a máquina.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;20-01-2025 21:23&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_49 \n\n Chamado: Descrição\n\n Título : Erro navegador\n Requerentes :  tecnomulti  \n Data de abertura : 20-01-2025 21:18\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - suporte@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Erro navegador\n2) E-MAIL : suporte@tecnomulti.com\n3) TELEFONE : 84998426881\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nNão está abrindo pagina xxx.xxxx\n\n[ec3ac8cc-b2d8e96f-678ee7e6eb9177.72480582] [https://oswintech.ddns.net/front/document.send.php?docid=11&#38;itemtype=Ticket&#38;items_id=49]\n \n\n\n[20-01-2025 21:23]\nAutor Alex Cruz\nDescrição Olá, \n\nPor favor, me informe o ID do anydesk para ter acesso a máquina.\nData de abertura 20-01-2025 21:23\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-49/add_followup.1737419038.2139415332@oswintech.ddns.net','','mailing','add_followup'),
(217,'Ticket',49,4,2,1,6,'2025-01-21 00:23:57','2025-01-21 19:25:14',NULL,'[GLPI #0000049] Novo acompanhamento Erro navegador','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000049] Novo acompanhamento Erro navegador&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_49\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_49&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Erro navegador &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:20-01-2025 21:18 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- suporte@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Erro navegador&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;suporte@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84998426881&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Não está abrindo pagina xxx.xxxx&#60;/p&#62;\n&#60;p&#62;&#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=11&#38;amp;itemtype=Ticket&#38;amp;items_id=49\" target=\"_blank\"&#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-678ee7e6eb9177.72480582\" width=\"443\" src=\"/front/document.send.php?docid=11&#38;amp;itemtype=Ticket&#38;amp;items_id=49\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [20-01-2025 21:23]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alex Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Olá, &#60;/p&#62;\r\n&#60;p&#62;Por favor, me informe o ID do anydesk para ter acesso a máquina.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;20-01-2025 21:23&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_49 \n\n Chamado: Descrição\n\n Título : Erro navegador\n Requerentes :  tecnomulti  \n Data de abertura : 20-01-2025 21:18\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - suporte@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Erro navegador\n2) E-MAIL : suporte@tecnomulti.com\n3) TELEFONE : 84998426881\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nNão está abrindo pagina xxx.xxxx\n\n[ec3ac8cc-b2d8e96f-678ee7e6eb9177.72480582] [https://oswintech.ddns.net/front/document.send.php?docid=11&#38;itemtype=Ticket&#38;items_id=49]\n \n\n\n[20-01-2025 21:23]\nAutor Alex Cruz\nDescrição Olá, \n\nPor favor, me informe o ID do anydesk para ter acesso a máquina.\nData de abertura 20-01-2025 21:23\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-49/add_followup.1737419038.881162810@oswintech.ddns.net','','mailing','add_followup'),
(218,'Ticket',49,4,2,1,6,'2025-01-21 11:13:32','2025-01-22 12:10:43',NULL,'[GLPI #0000049] Exclusão de um chamado Erro navegador','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000049] Exclus&#38;atilde;o de um chamado Erro navegador&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_49\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_49&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Erro navegador &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:20-01-2025 21:18 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- suporte@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Erro navegador&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;suporte@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84998426881&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Não está abrindo pagina xxx.xxxx&#60;/p&#62;\n&#60;p&#62;&#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=11&#38;amp;itemtype=Ticket&#38;amp;items_id=49\" target=\"_blank\"&#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-678ee7e6eb9177.72480582\" width=\"443\" src=\"/front/document.send.php?docid=11&#38;amp;itemtype=Ticket&#38;amp;items_id=49\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [20-01-2025 21:23]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alex Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Olá, &#60;/p&#62;\r\n&#60;p&#62;Por favor, me informe o ID do anydesk para ter acesso a máquina.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;20-01-2025 21:23&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_49 \n\n Chamado: Descrição\n\n Título : Erro navegador\n Requerentes :  tecnomulti  \n Data de abertura : 20-01-2025 21:18\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - suporte@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Erro navegador\n2) E-MAIL : suporte@tecnomulti.com\n3) TELEFONE : 84998426881\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nNão está abrindo pagina xxx.xxxx\n\n[ec3ac8cc-b2d8e96f-678ee7e6eb9177.72480582] [https://oswintech.ddns.net/front/document.send.php?docid=11&#38;itemtype=Ticket&#38;items_id=49]\n \n\n\n[20-01-2025 21:23]\nAutor Alex Cruz\nDescrição Olá, \n\nPor favor, me informe o ID do anydesk para ter acesso a máquina.\nData de abertura 20-01-2025 21:23\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-49/delete.1737458012.1006928561@oswintech.ddns.net','','mailing','delete'),
(219,'Ticket',49,4,2,1,6,'2025-01-21 11:13:42','2025-01-22 12:10:43',NULL,'[GLPI #0000049] Exclusão de um chamado Erro navegador','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000049] Exclus&#38;atilde;o de um chamado Erro navegador&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_49\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_49&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Erro navegador &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:20-01-2025 21:18 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- suporte@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Erro navegador&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;suporte@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84998426881&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Não está abrindo pagina xxx.xxxx&#60;/p&#62;\n&#60;p&#62;&#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=11&#38;amp;itemtype=Ticket&#38;amp;items_id=49\" target=\"_blank\"&#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-678ee7e6eb9177.72480582\" width=\"443\" src=\"/front/document.send.php?docid=11&#38;amp;itemtype=Ticket&#38;amp;items_id=49\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [20-01-2025 21:23]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alex Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Olá, &#60;/p&#62;\r\n&#60;p&#62;Por favor, me informe o ID do anydesk para ter acesso a máquina.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;20-01-2025 21:23&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_49 \n\n Chamado: Descrição\n\n Título : Erro navegador\n Requerentes :  tecnomulti  \n Data de abertura : 20-01-2025 21:18\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - suporte@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Erro navegador\n2) E-MAIL : suporte@tecnomulti.com\n3) TELEFONE : 84998426881\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nNão está abrindo pagina xxx.xxxx\n\n[ec3ac8cc-b2d8e96f-678ee7e6eb9177.72480582] [https://oswintech.ddns.net/front/document.send.php?docid=11&#38;itemtype=Ticket&#38;items_id=49]\n \n\n\n[20-01-2025 21:23]\nAutor Alex Cruz\nDescrição Olá, \n\nPor favor, me informe o ID do anydesk para ter acesso a máquina.\nData de abertura 20-01-2025 21:23\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-49/delete.1737458022.445004867@oswintech.ddns.net','','mailing','delete'),
(220,'PluginFormcreatorFormAnswer',14,29,2,1,6,'2025-01-21 11:27:28','2025-01-23 11:36:49',NULL,'[GLPI] Sua requisição foi salva','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI] Sua requisi&#38;ccedil;&#38;atilde;o foi salva&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;p&#62;Olá,&#60;br /&#62;Sua requisição do GLPI foi salva com sucesso com o número 14 e transmitido para a equipe de helpdesk.&#60;br /&#62;Você pode ver suas respostas no seguinte link:&#60;br /&#62;https://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=14&#60;/p&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;','Olá,\nSua requisição do GLPI foi salva com sucesso com o número 14 e transmitido para a equipe de helpdesk.\nVocê pode ver suas respostas no seguinte link:\nhttps://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=14\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-PluginFormcreatorFormAnswer-14/plugin_formcreator_form_created.1737458848.180965896@oswintech.ddns.net','','mailing','plugin_formcreator_form_created'),
(221,'Ticket',50,4,2,1,0,'2025-01-21 11:27:28','2025-01-21 11:27:28','2025-01-21 14:06:04','[GLPI #0000050] Novo chamado CONECTAR IMPRESSORA NO PC',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_50 \n\n Chamado: Descrição\n\n Título : CONECTAR IMPRESSORA NO PC\n Requerentes :  tecnomulti  \n Data de abertura : 21-01-2025 08:27\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CONECTAR IMPRESSORA NO PC\n2) E-MAIL : lucia.gomes@tecnomulti.com\n3) TELEFONE : 83999075161\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nQuando tento imprimir abre essa aba nos documentos [ec3ac8cc-b2d8e96f-678f840b8e9a32.37877242] [https://oswintech.ddns.net/front/document.send.php?docid=12&#38;itemtype=Ticket&#38;items_id=50]\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(222,'Ticket',50,4,2,1,0,'2025-01-21 11:27:28','2025-01-21 11:27:28','2025-01-30 15:37:32','[GLPI #0000050] Novo chamado CONECTAR IMPRESSORA NO PC',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_50 \n\n Chamado: Descrição\n\n Título : CONECTAR IMPRESSORA NO PC\n Requerentes :  tecnomulti  \n Data de abertura : 21-01-2025 08:27\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CONECTAR IMPRESSORA NO PC\n2) E-MAIL : lucia.gomes@tecnomulti.com\n3) TELEFONE : 83999075161\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nQuando tento imprimir abre essa aba nos documentos [ec3ac8cc-b2d8e96f-678f840b8e9a32.37877242] [https://oswintech.ddns.net/front/document.send.php?docid=12&#38;itemtype=Ticket&#38;items_id=50]\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(223,'Ticket',50,4,2,1,0,'2025-01-21 11:27:28','2025-01-21 11:27:28','2025-01-30 15:49:46','[GLPI #0000050] Novo chamado CONECTAR IMPRESSORA NO PC',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_50 \n\n Chamado: Descrição\n\n Título : CONECTAR IMPRESSORA NO PC\n Requerentes :  tecnomulti  \n Data de abertura : 21-01-2025 08:27\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CONECTAR IMPRESSORA NO PC\n2) E-MAIL : lucia.gomes@tecnomulti.com\n3) TELEFONE : 83999075161\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nQuando tento imprimir abre essa aba nos documentos [ec3ac8cc-b2d8e96f-678f840b8e9a32.37877242] [https://oswintech.ddns.net/front/document.send.php?docid=12&#38;itemtype=Ticket&#38;items_id=50]\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(224,'Ticket',50,4,2,1,0,'2025-01-21 11:27:28','2025-01-21 11:27:28','2025-01-27 21:30:15','[GLPI #0000050] Novo chamado CONECTAR IMPRESSORA NO PC',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_50 \n\n Chamado: Descrição\n\n Título : CONECTAR IMPRESSORA NO PC\n Requerentes :  tecnomulti  \n Data de abertura : 21-01-2025 08:27\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CONECTAR IMPRESSORA NO PC\n2) E-MAIL : lucia.gomes@tecnomulti.com\n3) TELEFONE : 83999075161\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nQuando tento imprimir abre essa aba nos documentos [ec3ac8cc-b2d8e96f-678f840b8e9a32.37877242] [https://oswintech.ddns.net/front/document.send.php?docid=12&#38;itemtype=Ticket&#38;items_id=50]\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(225,'Ticket',50,4,2,1,6,'2025-01-21 11:27:28','2025-01-23 11:36:49',NULL,'[GLPI #0000050] Novo chamado CONECTAR IMPRESSORA NO PC','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000050] Novo chamado CONECTAR IMPRESSORA NO PC&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_50\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_50&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:CONECTAR IMPRESSORA NO PC &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:21-01-2025 08:27 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CONECTAR IMPRESSORA NO PC&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;lucia.gomes@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83999075161&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Quando tento imprimir abre essa aba nos documentos &#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=12&#38;amp;itemtype=Ticket&#38;amp;items_id=50\" target=\"_blank\"&#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-678f840b8e9a32.37877242\" width=\"1366\" src=\"/front/document.send.php?docid=12&#38;amp;itemtype=Ticket&#38;amp;items_id=50\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_50 \n\n Chamado: Descrição\n\n Título : CONECTAR IMPRESSORA NO PC\n Requerentes :  tecnomulti  \n Data de abertura : 21-01-2025 08:27\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CONECTAR IMPRESSORA NO PC\n2) E-MAIL : lucia.gomes@tecnomulti.com\n3) TELEFONE : 83999075161\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nQuando tento imprimir abre essa aba nos documentos [ec3ac8cc-b2d8e96f-678f840b8e9a32.37877242] [https://oswintech.ddns.net/front/document.send.php?docid=12&#38;itemtype=Ticket&#38;items_id=50]\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-50/new@oswintech.ddns.net','','mailing','new'),
(226,'Ticket',50,4,2,1,6,'2025-01-21 11:27:28','2025-01-23 11:36:49',NULL,'[GLPI #0000050] Novo chamado CONECTAR IMPRESSORA NO PC','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000050] Novo chamado CONECTAR IMPRESSORA NO PC&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_50\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_50&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:CONECTAR IMPRESSORA NO PC &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:21-01-2025 08:27 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CONECTAR IMPRESSORA NO PC&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;lucia.gomes@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83999075161&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Quando tento imprimir abre essa aba nos documentos &#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=12&#38;amp;itemtype=Ticket&#38;amp;items_id=50\" target=\"_blank\"&#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-678f840b8e9a32.37877242\" width=\"1366\" src=\"/front/document.send.php?docid=12&#38;amp;itemtype=Ticket&#38;amp;items_id=50\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_50 \n\n Chamado: Descrição\n\n Título : CONECTAR IMPRESSORA NO PC\n Requerentes :  tecnomulti  \n Data de abertura : 21-01-2025 08:27\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CONECTAR IMPRESSORA NO PC\n2) E-MAIL : lucia.gomes@tecnomulti.com\n3) TELEFONE : 83999075161\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nQuando tento imprimir abre essa aba nos documentos [ec3ac8cc-b2d8e96f-678f840b8e9a32.37877242] [https://oswintech.ddns.net/front/document.send.php?docid=12&#38;itemtype=Ticket&#38;items_id=50]\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-50/new@oswintech.ddns.net','','mailing','new'),
(227,'Ticket',50,4,2,1,6,'2025-01-21 11:27:28','2025-01-23 11:36:49',NULL,'[GLPI #0000050] Novo chamado CONECTAR IMPRESSORA NO PC','admsys@localhost','','alexcruzfab@hotmail.com','Alex Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000050] Novo chamado CONECTAR IMPRESSORA NO PC&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_50\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_50&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:CONECTAR IMPRESSORA NO PC &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:21-01-2025 08:27 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CONECTAR IMPRESSORA NO PC&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;lucia.gomes@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83999075161&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Quando tento imprimir abre essa aba nos documentos &#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=12&#38;amp;itemtype=Ticket&#38;amp;items_id=50\" target=\"_blank\"&#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-678f840b8e9a32.37877242\" width=\"1366\" src=\"/front/document.send.php?docid=12&#38;amp;itemtype=Ticket&#38;amp;items_id=50\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_50 \n\n Chamado: Descrição\n\n Título : CONECTAR IMPRESSORA NO PC\n Requerentes :  tecnomulti  \n Data de abertura : 21-01-2025 08:27\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CONECTAR IMPRESSORA NO PC\n2) E-MAIL : lucia.gomes@tecnomulti.com\n3) TELEFONE : 83999075161\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nQuando tento imprimir abre essa aba nos documentos [ec3ac8cc-b2d8e96f-678f840b8e9a32.37877242] [https://oswintech.ddns.net/front/document.send.php?docid=12&#38;itemtype=Ticket&#38;items_id=50]\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-50/new@oswintech.ddns.net','','mailing','new'),
(228,'Ticket',50,4,2,1,6,'2025-01-21 11:27:28','2025-01-23 11:36:49',NULL,'[GLPI #0000050] Novo chamado CONECTAR IMPRESSORA NO PC','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000050] Novo chamado CONECTAR IMPRESSORA NO PC&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_50\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_50&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:CONECTAR IMPRESSORA NO PC &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:21-01-2025 08:27 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CONECTAR IMPRESSORA NO PC&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;lucia.gomes@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83999075161&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Quando tento imprimir abre essa aba nos documentos &#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=12&#38;amp;itemtype=Ticket&#38;amp;items_id=50\" target=\"_blank\"&#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-678f840b8e9a32.37877242\" width=\"1366\" src=\"/front/document.send.php?docid=12&#38;amp;itemtype=Ticket&#38;amp;items_id=50\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_50 \n\n Chamado: Descrição\n\n Título : CONECTAR IMPRESSORA NO PC\n Requerentes :  tecnomulti  \n Data de abertura : 21-01-2025 08:27\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CONECTAR IMPRESSORA NO PC\n2) E-MAIL : lucia.gomes@tecnomulti.com\n3) TELEFONE : 83999075161\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nQuando tento imprimir abre essa aba nos documentos [ec3ac8cc-b2d8e96f-678f840b8e9a32.37877242] [https://oswintech.ddns.net/front/document.send.php?docid=12&#38;itemtype=Ticket&#38;items_id=50]\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-50/new@oswintech.ddns.net','','mailing','new'),
(229,'Ticket',50,4,2,1,6,'2025-01-21 12:19:43','2025-01-23 11:36:49',NULL,'[GLPI #0000050] Novo acompanhamento CONECTAR IMPRESSORA NO PC','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000050] Novo acompanhamento CONECTAR IMPRESSORA NO PC&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_50\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_50&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:CONECTAR IMPRESSORA NO PC &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:21-01-2025 08:27 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- lucia.gomes@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CONECTAR IMPRESSORA NO PC&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;lucia.gomes@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83999075161&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Quando tento imprimir abre essa aba nos documentos &#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=12&#38;amp;itemtype=Ticket&#38;amp;items_id=50\" target=\"_blank\"&#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-678f840b8e9a32.37877242\" width=\"1366\" src=\"/front/document.send.php?docid=12&#38;amp;itemtype=Ticket&#38;amp;items_id=50\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 09:19]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alex Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Ola, Bom dia!&#60;/p&#62;\r\n&#60;p&#62;Você clica na opção de impressora ou usa o atalho CTRL + P para realizar a impressão?&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 09:19&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_50 \n\n Chamado: Descrição\n\n Título : CONECTAR IMPRESSORA NO PC\n Requerentes :  tecnomulti  \n Data de abertura : 21-01-2025 08:27\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - lucia.gomes@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CONECTAR IMPRESSORA NO PC\n2) E-MAIL : lucia.gomes@tecnomulti.com\n3) TELEFONE : 83999075161\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nQuando tento imprimir abre essa aba nos documentos [ec3ac8cc-b2d8e96f-678f840b8e9a32.37877242] [https://oswintech.ddns.net/front/document.send.php?docid=12&#38;itemtype=Ticket&#38;items_id=50]\n \n\n\n[21-01-2025 09:19]\nAutor Alex Cruz\nDescrição Ola, Bom dia!\n\nVocê clica na opção de impressora ou usa o atalho CTRL + P para realizar a impressão?\nData de abertura 21-01-2025 09:19\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-50/add_followup.1737461984.1796368892@oswintech.ddns.net','','mailing','add_followup'),
(230,'Ticket',50,4,2,1,6,'2025-01-21 12:19:43','2025-01-23 11:36:50',NULL,'[GLPI #0000050] Novo acompanhamento CONECTAR IMPRESSORA NO PC','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000050] Novo acompanhamento CONECTAR IMPRESSORA NO PC&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_50\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_50&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:CONECTAR IMPRESSORA NO PC &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:21-01-2025 08:27 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- lucia.gomes@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CONECTAR IMPRESSORA NO PC&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;lucia.gomes@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83999075161&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Quando tento imprimir abre essa aba nos documentos &#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=12&#38;amp;itemtype=Ticket&#38;amp;items_id=50\" target=\"_blank\"&#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-678f840b8e9a32.37877242\" width=\"1366\" src=\"/front/document.send.php?docid=12&#38;amp;itemtype=Ticket&#38;amp;items_id=50\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 09:19]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alex Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Ola, Bom dia!&#60;/p&#62;\r\n&#60;p&#62;Você clica na opção de impressora ou usa o atalho CTRL + P para realizar a impressão?&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 09:19&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_50 \n\n Chamado: Descrição\n\n Título : CONECTAR IMPRESSORA NO PC\n Requerentes :  tecnomulti  \n Data de abertura : 21-01-2025 08:27\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - lucia.gomes@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CONECTAR IMPRESSORA NO PC\n2) E-MAIL : lucia.gomes@tecnomulti.com\n3) TELEFONE : 83999075161\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nQuando tento imprimir abre essa aba nos documentos [ec3ac8cc-b2d8e96f-678f840b8e9a32.37877242] [https://oswintech.ddns.net/front/document.send.php?docid=12&#38;itemtype=Ticket&#38;items_id=50]\n \n\n\n[21-01-2025 09:19]\nAutor Alex Cruz\nDescrição Ola, Bom dia!\n\nVocê clica na opção de impressora ou usa o atalho CTRL + P para realizar a impressão?\nData de abertura 21-01-2025 09:19\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-50/add_followup.1737461984.1080261354@oswintech.ddns.net','','mailing','add_followup'),
(231,'Ticket',50,4,2,1,6,'2025-01-21 12:19:45','2025-01-23 11:36:50',NULL,'[GLPI #0000050] Novo acompanhamento CONECTAR IMPRESSORA NO PC','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000050] Novo acompanhamento CONECTAR IMPRESSORA NO PC&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_50\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_50&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:CONECTAR IMPRESSORA NO PC &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:21-01-2025 08:27 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- lucia.gomes@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CONECTAR IMPRESSORA NO PC&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;lucia.gomes@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83999075161&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Quando tento imprimir abre essa aba nos documentos &#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=12&#38;amp;itemtype=Ticket&#38;amp;items_id=50\" target=\"_blank\"&#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-678f840b8e9a32.37877242\" width=\"1366\" src=\"/front/document.send.php?docid=12&#38;amp;itemtype=Ticket&#38;amp;items_id=50\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 09:19]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia Lucia, poderia mandar o acesso remoto(anydesk ou teamviewer) do seu computador por favor.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 09:19&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 09:19]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alex Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Ola, Bom dia!&#60;/p&#62;\r\n&#60;p&#62;Você clica na opção de impressora ou usa o atalho CTRL + P para realizar a impressão?&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 09:19&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_50 \n\n Chamado: Descrição\n\n Título : CONECTAR IMPRESSORA NO PC\n Requerentes :  tecnomulti  \n Data de abertura : 21-01-2025 08:27\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - lucia.gomes@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CONECTAR IMPRESSORA NO PC\n2) E-MAIL : lucia.gomes@tecnomulti.com\n3) TELEFONE : 83999075161\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nQuando tento imprimir abre essa aba nos documentos [ec3ac8cc-b2d8e96f-678f840b8e9a32.37877242] [https://oswintech.ddns.net/front/document.send.php?docid=12&#38;itemtype=Ticket&#38;items_id=50]\n \n\n\n[21-01-2025 09:19]\nAutor Luan Medeiros\nDescrição Bom dia Lucia, poderia mandar o acesso remoto(anydesk ou teamviewer) do seu computador por favor.\nData de abertura 21-01-2025 09:19\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[21-01-2025 09:19]\nAutor Alex Cruz\nDescrição Ola, Bom dia!\n\nVocê clica na opção de impressora ou usa o atalho CTRL + P para realizar a impressão?\nData de abertura 21-01-2025 09:19\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-50/add_followup.1737461985.1044343490@oswintech.ddns.net','','mailing','add_followup'),
(232,'Ticket',50,4,2,1,6,'2025-01-21 12:19:45','2025-01-23 11:36:50',NULL,'[GLPI #0000050] Novo acompanhamento CONECTAR IMPRESSORA NO PC','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000050] Novo acompanhamento CONECTAR IMPRESSORA NO PC&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_50\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_50&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:CONECTAR IMPRESSORA NO PC &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:21-01-2025 08:27 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- lucia.gomes@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CONECTAR IMPRESSORA NO PC&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;lucia.gomes@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83999075161&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Quando tento imprimir abre essa aba nos documentos &#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=12&#38;amp;itemtype=Ticket&#38;amp;items_id=50\" target=\"_blank\"&#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-678f840b8e9a32.37877242\" width=\"1366\" src=\"/front/document.send.php?docid=12&#38;amp;itemtype=Ticket&#38;amp;items_id=50\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 09:19]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia Lucia, poderia mandar o acesso remoto(anydesk ou teamviewer) do seu computador por favor.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 09:19&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 09:19]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alex Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Ola, Bom dia!&#60;/p&#62;\r\n&#60;p&#62;Você clica na opção de impressora ou usa o atalho CTRL + P para realizar a impressão?&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 09:19&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_50 \n\n Chamado: Descrição\n\n Título : CONECTAR IMPRESSORA NO PC\n Requerentes :  tecnomulti  \n Data de abertura : 21-01-2025 08:27\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - lucia.gomes@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CONECTAR IMPRESSORA NO PC\n2) E-MAIL : lucia.gomes@tecnomulti.com\n3) TELEFONE : 83999075161\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nQuando tento imprimir abre essa aba nos documentos [ec3ac8cc-b2d8e96f-678f840b8e9a32.37877242] [https://oswintech.ddns.net/front/document.send.php?docid=12&#38;itemtype=Ticket&#38;items_id=50]\n \n\n\n[21-01-2025 09:19]\nAutor Luan Medeiros\nDescrição Bom dia Lucia, poderia mandar o acesso remoto(anydesk ou teamviewer) do seu computador por favor.\nData de abertura 21-01-2025 09:19\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[21-01-2025 09:19]\nAutor Alex Cruz\nDescrição Ola, Bom dia!\n\nVocê clica na opção de impressora ou usa o atalho CTRL + P para realizar a impressão?\nData de abertura 21-01-2025 09:19\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-50/add_followup.1737461985.1661633385@oswintech.ddns.net','','mailing','add_followup'),
(233,'Ticket',50,4,2,1,6,'2025-01-21 12:20:09','2025-01-23 11:36:50',NULL,'[GLPI #0000050] Exclusão de um acompanhamento CONECTAR IMPRESSORA NO PC','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000050] Exclus&#38;atilde;o de um acompanhamento CONECTAR IMPRESSORA NO PC&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_50\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_50&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:CONECTAR IMPRESSORA NO PC &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:21-01-2025 08:27 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- lucia.gomes@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CONECTAR IMPRESSORA NO PC&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;lucia.gomes@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83999075161&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Quando tento imprimir abre essa aba nos documentos &#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=12&#38;amp;itemtype=Ticket&#38;amp;items_id=50\" target=\"_blank\"&#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-678f840b8e9a32.37877242\" width=\"1366\" src=\"/front/document.send.php?docid=12&#38;amp;itemtype=Ticket&#38;amp;items_id=50\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 09:19]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia Lucia, poderia mandar o acesso remoto(anydesk ou teamviewer) do seu computador por favor.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 09:19&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_50 \n\n Chamado: Descrição\n\n Título : CONECTAR IMPRESSORA NO PC\n Requerentes :  tecnomulti  \n Data de abertura : 21-01-2025 08:27\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - lucia.gomes@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CONECTAR IMPRESSORA NO PC\n2) E-MAIL : lucia.gomes@tecnomulti.com\n3) TELEFONE : 83999075161\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nQuando tento imprimir abre essa aba nos documentos [ec3ac8cc-b2d8e96f-678f840b8e9a32.37877242] [https://oswintech.ddns.net/front/document.send.php?docid=12&#38;itemtype=Ticket&#38;items_id=50]\n \n\n\n[21-01-2025 09:19]\nAutor Luan Medeiros\nDescrição Bom dia Lucia, poderia mandar o acesso remoto(anydesk ou teamviewer) do seu computador por favor.\nData de abertura 21-01-2025 09:19\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-50/delete_followup.1737462009.166356088@oswintech.ddns.net','','mailing','delete_followup'),
(234,'Ticket',50,4,2,1,6,'2025-01-21 12:20:09','2025-01-23 11:36:50',NULL,'[GLPI #0000050] Exclusão de um acompanhamento CONECTAR IMPRESSORA NO PC','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000050] Exclus&#38;atilde;o de um acompanhamento CONECTAR IMPRESSORA NO PC&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_50\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_50&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:CONECTAR IMPRESSORA NO PC &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:21-01-2025 08:27 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- lucia.gomes@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CONECTAR IMPRESSORA NO PC&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;lucia.gomes@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83999075161&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Quando tento imprimir abre essa aba nos documentos &#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=12&#38;amp;itemtype=Ticket&#38;amp;items_id=50\" target=\"_blank\"&#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-678f840b8e9a32.37877242\" width=\"1366\" src=\"/front/document.send.php?docid=12&#38;amp;itemtype=Ticket&#38;amp;items_id=50\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 09:19]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia Lucia, poderia mandar o acesso remoto(anydesk ou teamviewer) do seu computador por favor.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 09:19&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_50 \n\n Chamado: Descrição\n\n Título : CONECTAR IMPRESSORA NO PC\n Requerentes :  tecnomulti  \n Data de abertura : 21-01-2025 08:27\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - lucia.gomes@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CONECTAR IMPRESSORA NO PC\n2) E-MAIL : lucia.gomes@tecnomulti.com\n3) TELEFONE : 83999075161\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nQuando tento imprimir abre essa aba nos documentos [ec3ac8cc-b2d8e96f-678f840b8e9a32.37877242] [https://oswintech.ddns.net/front/document.send.php?docid=12&#38;itemtype=Ticket&#38;items_id=50]\n \n\n\n[21-01-2025 09:19]\nAutor Luan Medeiros\nDescrição Bom dia Lucia, poderia mandar o acesso remoto(anydesk ou teamviewer) do seu computador por favor.\nData de abertura 21-01-2025 09:19\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-50/delete_followup.1737462009.257565891@oswintech.ddns.net','','mailing','delete_followup'),
(235,'PluginFormcreatorFormAnswer',15,29,2,1,6,'2025-01-21 13:02:41','2025-01-24 16:41:11',NULL,'[GLPI] Sua requisição foi salva','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI] Sua requisi&#38;ccedil;&#38;atilde;o foi salva&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;p&#62;Olá,&#60;br /&#62;Sua requisição do GLPI foi salva com sucesso com o número 15 e transmitido para a equipe de helpdesk.&#60;br /&#62;Você pode ver suas respostas no seguinte link:&#60;br /&#62;https://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=15&#60;/p&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;','Olá,\nSua requisição do GLPI foi salva com sucesso com o número 15 e transmitido para a equipe de helpdesk.\nVocê pode ver suas respostas no seguinte link:\nhttps://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=15\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-PluginFormcreatorFormAnswer-15/plugin_formcreator_form_created.1737464561.1758756134@oswintech.ddns.net','','mailing','plugin_formcreator_form_created'),
(236,'Ticket',51,4,2,1,0,'2025-01-21 13:02:41','2025-01-21 13:02:41','2025-01-21 14:06:04','[GLPI #0000051] Novo chamado Expansão - Memória interna ssd + RAM',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_51 \n\n Chamado: Descrição\n\n Título : Expansão - Memória interna ssd + RAM\n Requerentes :  tecnomulti  \n Data de abertura : 21-01-2025 10:02\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Expansão - Memória interna ssd + RAM\n2) E-MAIL : arthur.abreu@tecnomulti.com\n3) TELEFONE : 84 999460068\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nA memória interna do notebook está topado, e juntamente disso, a memoria RAM está sempre em seu uso total (imagem abaixo), e acredito que seja a junção desses fatores que estão ocasionando travamentos e fechamentos de relatórios, assim como limitando o usos de alguns recursos dos mesmos e outros programas.\n\n[ec3ac8cc-b2d8e96f-678f9ac07b0fe6.57690040] [https://oswintech.ddns.net/front/document.send.php?docid=13&#38;itemtype=Ticket&#38;items_id=51]\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(237,'Ticket',51,4,2,1,0,'2025-01-21 13:02:41','2025-01-21 13:02:41','2025-01-30 15:37:32','[GLPI #0000051] Novo chamado Expansão - Memória interna ssd + RAM',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_51 \n\n Chamado: Descrição\n\n Título : Expansão - Memória interna ssd + RAM\n Requerentes :  tecnomulti  \n Data de abertura : 21-01-2025 10:02\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Expansão - Memória interna ssd + RAM\n2) E-MAIL : arthur.abreu@tecnomulti.com\n3) TELEFONE : 84 999460068\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nA memória interna do notebook está topado, e juntamente disso, a memoria RAM está sempre em seu uso total (imagem abaixo), e acredito que seja a junção desses fatores que estão ocasionando travamentos e fechamentos de relatórios, assim como limitando o usos de alguns recursos dos mesmos e outros programas.\n\n[ec3ac8cc-b2d8e96f-678f9ac07b0fe6.57690040] [https://oswintech.ddns.net/front/document.send.php?docid=13&#38;itemtype=Ticket&#38;items_id=51]\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(238,'Ticket',51,4,2,1,0,'2025-01-21 13:02:41','2025-01-21 13:02:41','2025-01-30 15:49:46','[GLPI #0000051] Novo chamado Expansão - Memória interna ssd + RAM',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_51 \n\n Chamado: Descrição\n\n Título : Expansão - Memória interna ssd + RAM\n Requerentes :  tecnomulti  \n Data de abertura : 21-01-2025 10:02\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Expansão - Memória interna ssd + RAM\n2) E-MAIL : arthur.abreu@tecnomulti.com\n3) TELEFONE : 84 999460068\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nA memória interna do notebook está topado, e juntamente disso, a memoria RAM está sempre em seu uso total (imagem abaixo), e acredito que seja a junção desses fatores que estão ocasionando travamentos e fechamentos de relatórios, assim como limitando o usos de alguns recursos dos mesmos e outros programas.\n\n[ec3ac8cc-b2d8e96f-678f9ac07b0fe6.57690040] [https://oswintech.ddns.net/front/document.send.php?docid=13&#38;itemtype=Ticket&#38;items_id=51]\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(239,'Ticket',51,4,2,1,0,'2025-01-21 13:02:41','2025-01-21 13:02:41','2025-01-27 21:30:15','[GLPI #0000051] Novo chamado Expansão - Memória interna ssd + RAM',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_51 \n\n Chamado: Descrição\n\n Título : Expansão - Memória interna ssd + RAM\n Requerentes :  tecnomulti  \n Data de abertura : 21-01-2025 10:02\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Expansão - Memória interna ssd + RAM\n2) E-MAIL : arthur.abreu@tecnomulti.com\n3) TELEFONE : 84 999460068\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nA memória interna do notebook está topado, e juntamente disso, a memoria RAM está sempre em seu uso total (imagem abaixo), e acredito que seja a junção desses fatores que estão ocasionando travamentos e fechamentos de relatórios, assim como limitando o usos de alguns recursos dos mesmos e outros programas.\n\n[ec3ac8cc-b2d8e96f-678f9ac07b0fe6.57690040] [https://oswintech.ddns.net/front/document.send.php?docid=13&#38;itemtype=Ticket&#38;items_id=51]\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(240,'Ticket',51,4,2,1,6,'2025-01-21 13:02:41','2025-01-24 16:41:11',NULL,'[GLPI #0000051] Novo chamado Expansão - Memória interna ssd + RAM','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000051] Novo chamado Expans&#38;atilde;o - Mem&#38;oacute;ria interna ssd + RAM&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_51\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_51&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Expans&#38;atilde;o - Mem&#38;oacute;ria interna ssd + RAM &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:21-01-2025 10:02 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Expansão - Memória interna ssd + RAM&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;arthur.abreu@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84 999460068&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;A memória interna do notebook está topado, e juntamente disso, a memoria RAM está sempre em seu uso total (imagem abaixo), e acredito que seja a junção desses fatores que estão ocasionando travamentos e fechamentos de relatórios, assim como limitando o usos de alguns recursos dos mesmos e outros programas.&#60;br /&#62;&#60;br /&#62;&#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=13&#38;amp;itemtype=Ticket&#38;amp;items_id=51\" target=\"_blank\"&#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-678f9ac07b0fe6.57690040\" width=\"1123\" src=\"/front/document.send.php?docid=13&#38;amp;itemtype=Ticket&#38;amp;items_id=51\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_51 \n\n Chamado: Descrição\n\n Título : Expansão - Memória interna ssd + RAM\n Requerentes :  tecnomulti  \n Data de abertura : 21-01-2025 10:02\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Expansão - Memória interna ssd + RAM\n2) E-MAIL : arthur.abreu@tecnomulti.com\n3) TELEFONE : 84 999460068\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nA memória interna do notebook está topado, e juntamente disso, a memoria RAM está sempre em seu uso total (imagem abaixo), e acredito que seja a junção desses fatores que estão ocasionando travamentos e fechamentos de relatórios, assim como limitando o usos de alguns recursos dos mesmos e outros programas.\n\n[ec3ac8cc-b2d8e96f-678f9ac07b0fe6.57690040] [https://oswintech.ddns.net/front/document.send.php?docid=13&#38;itemtype=Ticket&#38;items_id=51]\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-51/new@oswintech.ddns.net','','mailing','new'),
(241,'Ticket',51,4,2,1,6,'2025-01-21 13:02:41','2025-01-24 16:41:11',NULL,'[GLPI #0000051] Novo chamado Expansão - Memória interna ssd + RAM','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000051] Novo chamado Expans&#38;atilde;o - Mem&#38;oacute;ria interna ssd + RAM&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_51\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_51&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Expans&#38;atilde;o - Mem&#38;oacute;ria interna ssd + RAM &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:21-01-2025 10:02 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Expansão - Memória interna ssd + RAM&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;arthur.abreu@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84 999460068&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;A memória interna do notebook está topado, e juntamente disso, a memoria RAM está sempre em seu uso total (imagem abaixo), e acredito que seja a junção desses fatores que estão ocasionando travamentos e fechamentos de relatórios, assim como limitando o usos de alguns recursos dos mesmos e outros programas.&#60;br /&#62;&#60;br /&#62;&#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=13&#38;amp;itemtype=Ticket&#38;amp;items_id=51\" target=\"_blank\"&#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-678f9ac07b0fe6.57690040\" width=\"1123\" src=\"/front/document.send.php?docid=13&#38;amp;itemtype=Ticket&#38;amp;items_id=51\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_51 \n\n Chamado: Descrição\n\n Título : Expansão - Memória interna ssd + RAM\n Requerentes :  tecnomulti  \n Data de abertura : 21-01-2025 10:02\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Expansão - Memória interna ssd + RAM\n2) E-MAIL : arthur.abreu@tecnomulti.com\n3) TELEFONE : 84 999460068\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nA memória interna do notebook está topado, e juntamente disso, a memoria RAM está sempre em seu uso total (imagem abaixo), e acredito que seja a junção desses fatores que estão ocasionando travamentos e fechamentos de relatórios, assim como limitando o usos de alguns recursos dos mesmos e outros programas.\n\n[ec3ac8cc-b2d8e96f-678f9ac07b0fe6.57690040] [https://oswintech.ddns.net/front/document.send.php?docid=13&#38;itemtype=Ticket&#38;items_id=51]\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-51/new@oswintech.ddns.net','','mailing','new'),
(242,'Ticket',51,4,2,1,6,'2025-01-21 13:02:41','2025-01-24 16:41:11',NULL,'[GLPI #0000051] Novo chamado Expansão - Memória interna ssd + RAM','admsys@localhost','','alexcruzfab@hotmail.com','Alex Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000051] Novo chamado Expans&#38;atilde;o - Mem&#38;oacute;ria interna ssd + RAM&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_51\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_51&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Expans&#38;atilde;o - Mem&#38;oacute;ria interna ssd + RAM &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:21-01-2025 10:02 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Expansão - Memória interna ssd + RAM&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;arthur.abreu@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84 999460068&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;A memória interna do notebook está topado, e juntamente disso, a memoria RAM está sempre em seu uso total (imagem abaixo), e acredito que seja a junção desses fatores que estão ocasionando travamentos e fechamentos de relatórios, assim como limitando o usos de alguns recursos dos mesmos e outros programas.&#60;br /&#62;&#60;br /&#62;&#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=13&#38;amp;itemtype=Ticket&#38;amp;items_id=51\" target=\"_blank\"&#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-678f9ac07b0fe6.57690040\" width=\"1123\" src=\"/front/document.send.php?docid=13&#38;amp;itemtype=Ticket&#38;amp;items_id=51\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_51 \n\n Chamado: Descrição\n\n Título : Expansão - Memória interna ssd + RAM\n Requerentes :  tecnomulti  \n Data de abertura : 21-01-2025 10:02\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Expansão - Memória interna ssd + RAM\n2) E-MAIL : arthur.abreu@tecnomulti.com\n3) TELEFONE : 84 999460068\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nA memória interna do notebook está topado, e juntamente disso, a memoria RAM está sempre em seu uso total (imagem abaixo), e acredito que seja a junção desses fatores que estão ocasionando travamentos e fechamentos de relatórios, assim como limitando o usos de alguns recursos dos mesmos e outros programas.\n\n[ec3ac8cc-b2d8e96f-678f9ac07b0fe6.57690040] [https://oswintech.ddns.net/front/document.send.php?docid=13&#38;itemtype=Ticket&#38;items_id=51]\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-51/new@oswintech.ddns.net','','mailing','new'),
(243,'Ticket',51,4,2,1,6,'2025-01-21 13:02:41','2025-01-24 16:41:11',NULL,'[GLPI #0000051] Novo chamado Expansão - Memória interna ssd + RAM','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000051] Novo chamado Expans&#38;atilde;o - Mem&#38;oacute;ria interna ssd + RAM&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_51\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_51&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Expans&#38;atilde;o - Mem&#38;oacute;ria interna ssd + RAM &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:21-01-2025 10:02 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Expansão - Memória interna ssd + RAM&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;arthur.abreu@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84 999460068&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;A memória interna do notebook está topado, e juntamente disso, a memoria RAM está sempre em seu uso total (imagem abaixo), e acredito que seja a junção desses fatores que estão ocasionando travamentos e fechamentos de relatórios, assim como limitando o usos de alguns recursos dos mesmos e outros programas.&#60;br /&#62;&#60;br /&#62;&#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=13&#38;amp;itemtype=Ticket&#38;amp;items_id=51\" target=\"_blank\"&#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-678f9ac07b0fe6.57690040\" width=\"1123\" src=\"/front/document.send.php?docid=13&#38;amp;itemtype=Ticket&#38;amp;items_id=51\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_51 \n\n Chamado: Descrição\n\n Título : Expansão - Memória interna ssd + RAM\n Requerentes :  tecnomulti  \n Data de abertura : 21-01-2025 10:02\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Expansão - Memória interna ssd + RAM\n2) E-MAIL : arthur.abreu@tecnomulti.com\n3) TELEFONE : 84 999460068\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nA memória interna do notebook está topado, e juntamente disso, a memoria RAM está sempre em seu uso total (imagem abaixo), e acredito que seja a junção desses fatores que estão ocasionando travamentos e fechamentos de relatórios, assim como limitando o usos de alguns recursos dos mesmos e outros programas.\n\n[ec3ac8cc-b2d8e96f-678f9ac07b0fe6.57690040] [https://oswintech.ddns.net/front/document.send.php?docid=13&#38;itemtype=Ticket&#38;items_id=51]\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-51/new@oswintech.ddns.net','','mailing','new'),
(244,'PluginFormcreatorFormAnswer',16,29,2,1,6,'2025-01-21 13:50:24','2025-01-24 16:41:11',NULL,'[GLPI] Sua requisição foi salva','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI] Sua requisi&#38;ccedil;&#38;atilde;o foi salva&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;p&#62;Olá,&#60;br /&#62;Sua requisição do GLPI foi salva com sucesso com o número 16 e transmitido para a equipe de helpdesk.&#60;br /&#62;Você pode ver suas respostas no seguinte link:&#60;br /&#62;https://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=16&#60;/p&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;','Olá,\nSua requisição do GLPI foi salva com sucesso com o número 16 e transmitido para a equipe de helpdesk.\nVocê pode ver suas respostas no seguinte link:\nhttps://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=16\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-PluginFormcreatorFormAnswer-16/plugin_formcreator_form_created.1737467424.2119582726@oswintech.ddns.net','','mailing','plugin_formcreator_form_created'),
(245,'Ticket',52,4,2,1,0,'2025-01-21 13:50:24','2025-01-21 13:50:24','2025-01-21 14:06:04','[GLPI #0000052] Novo chamado Excell',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_52 \n\n Chamado: Descrição\n\n Título : Excell\n Requerentes :  tecnomulti  \n Data de abertura : 21-01-2025 10:50\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Excell\n2) E-MAIL : Gerson.Lima@tecnimulti.com\n3) TELEFONE : 71992750348\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nExcell com problema, expirou  \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(246,'Ticket',52,4,2,1,0,'2025-01-21 13:50:24','2025-01-21 13:50:24','2025-01-30 15:37:32','[GLPI #0000052] Novo chamado Excell',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_52 \n\n Chamado: Descrição\n\n Título : Excell\n Requerentes :  tecnomulti  \n Data de abertura : 21-01-2025 10:50\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Excell\n2) E-MAIL : Gerson.Lima@tecnimulti.com\n3) TELEFONE : 71992750348\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nExcell com problema, expirou  \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(247,'Ticket',52,4,2,1,0,'2025-01-21 13:50:24','2025-01-21 13:50:24','2025-01-30 15:49:46','[GLPI #0000052] Novo chamado Excell',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_52 \n\n Chamado: Descrição\n\n Título : Excell\n Requerentes :  tecnomulti  \n Data de abertura : 21-01-2025 10:50\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Excell\n2) E-MAIL : Gerson.Lima@tecnimulti.com\n3) TELEFONE : 71992750348\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nExcell com problema, expirou  \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(248,'Ticket',52,4,2,1,0,'2025-01-21 13:50:24','2025-01-21 13:50:24','2025-01-27 21:30:15','[GLPI #0000052] Novo chamado Excell',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_52 \n\n Chamado: Descrição\n\n Título : Excell\n Requerentes :  tecnomulti  \n Data de abertura : 21-01-2025 10:50\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Excell\n2) E-MAIL : Gerson.Lima@tecnimulti.com\n3) TELEFONE : 71992750348\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nExcell com problema, expirou  \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(249,'Ticket',52,4,2,1,6,'2025-01-21 13:50:24','2025-01-24 16:41:11',NULL,'[GLPI #0000052] Novo chamado Excell','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000052] Novo chamado Excell&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_52\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_52&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Excell &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:21-01-2025 10:50 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Excell&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;Gerson.Lima@tecnimulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;71992750348&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Excell com problema, expirou  &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_52 \n\n Chamado: Descrição\n\n Título : Excell\n Requerentes :  tecnomulti  \n Data de abertura : 21-01-2025 10:50\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Excell\n2) E-MAIL : Gerson.Lima@tecnimulti.com\n3) TELEFONE : 71992750348\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nExcell com problema, expirou  \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-52/new@oswintech.ddns.net','','mailing','new'),
(250,'Ticket',52,4,2,1,6,'2025-01-21 13:50:24','2025-01-24 16:41:11',NULL,'[GLPI #0000052] Novo chamado Excell','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000052] Novo chamado Excell&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_52\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_52&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Excell &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:21-01-2025 10:50 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Excell&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;Gerson.Lima@tecnimulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;71992750348&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Excell com problema, expirou  &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_52 \n\n Chamado: Descrição\n\n Título : Excell\n Requerentes :  tecnomulti  \n Data de abertura : 21-01-2025 10:50\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Excell\n2) E-MAIL : Gerson.Lima@tecnimulti.com\n3) TELEFONE : 71992750348\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nExcell com problema, expirou  \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-52/new@oswintech.ddns.net','','mailing','new'),
(251,'Ticket',52,4,2,1,6,'2025-01-21 13:50:24','2025-01-27 23:41:32',NULL,'[GLPI #0000052] Novo chamado Excell','admsys@localhost','','alexcruzfab@hotmail.com','Alex Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000052] Novo chamado Excell&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_52\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_52&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Excell &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:21-01-2025 10:50 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Excell&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;Gerson.Lima@tecnimulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;71992750348&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Excell com problema, expirou  &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_52 \n\n Chamado: Descrição\n\n Título : Excell\n Requerentes :  tecnomulti  \n Data de abertura : 21-01-2025 10:50\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Excell\n2) E-MAIL : Gerson.Lima@tecnimulti.com\n3) TELEFONE : 71992750348\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nExcell com problema, expirou  \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-52/new@oswintech.ddns.net','','mailing','new'),
(252,'Ticket',52,4,2,1,6,'2025-01-21 13:50:24','2025-01-27 23:41:32',NULL,'[GLPI #0000052] Novo chamado Excell','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000052] Novo chamado Excell&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_52\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_52&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Excell &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:21-01-2025 10:50 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Excell&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;Gerson.Lima@tecnimulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;71992750348&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Excell com problema, expirou  &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_52 \n\n Chamado: Descrição\n\n Título : Excell\n Requerentes :  tecnomulti  \n Data de abertura : 21-01-2025 10:50\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Excell\n2) E-MAIL : Gerson.Lima@tecnimulti.com\n3) TELEFONE : 71992750348\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nExcell com problema, expirou  \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-52/new@oswintech.ddns.net','','mailing','new'),
(253,'Ticket',52,4,2,1,6,'2025-01-21 14:27:29','2025-01-27 23:41:32',NULL,'[GLPI #0000052] Novo acompanhamento Excell','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000052] Novo acompanhamento Excell&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_52\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_52&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Excell &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:21-01-2025 10:50 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- Gerson.Lima@tecnimulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Excell&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;Gerson.Lima@tecnimulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;71992750348&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Excell com problema, expirou  &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 11:27]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alex Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Favor, passa o anydesk para podermos acessar. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 11:27&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_52 \n\n Chamado: Descrição\n\n Título : Excell\n Requerentes :  tecnomulti  \n Data de abertura : 21-01-2025 10:50\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - Gerson.Lima@tecnimulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Excell\n2) E-MAIL : Gerson.Lima@tecnimulti.com\n3) TELEFONE : 71992750348\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nExcell com problema, expirou  \n \n\n\n[21-01-2025 11:27]\nAutor Alex Cruz\nDescrição Bom dia,\n\nFavor, passa o anydesk para podermos acessar. \nData de abertura 21-01-2025 11:27\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-52/add_followup.1737469649.263668890@oswintech.ddns.net','','mailing','add_followup'),
(254,'Ticket',52,4,2,1,6,'2025-01-21 14:27:29','2025-01-27 23:41:32',NULL,'[GLPI #0000052] Novo acompanhamento Excell','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000052] Novo acompanhamento Excell&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_52\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_52&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Excell &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:21-01-2025 10:50 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- Gerson.Lima@tecnimulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Excell&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;Gerson.Lima@tecnimulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;71992750348&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Excell com problema, expirou  &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 11:27]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alex Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Favor, passa o anydesk para podermos acessar. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 11:27&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_52 \n\n Chamado: Descrição\n\n Título : Excell\n Requerentes :  tecnomulti  \n Data de abertura : 21-01-2025 10:50\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - Gerson.Lima@tecnimulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Excell\n2) E-MAIL : Gerson.Lima@tecnimulti.com\n3) TELEFONE : 71992750348\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nExcell com problema, expirou  \n \n\n\n[21-01-2025 11:27]\nAutor Alex Cruz\nDescrição Bom dia,\n\nFavor, passa o anydesk para podermos acessar. \nData de abertura 21-01-2025 11:27\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-52/add_followup.1737469650.1135409855@oswintech.ddns.net','','mailing','add_followup'),
(255,'Ticket',52,4,2,1,6,'2025-01-21 14:31:24','2025-01-27 23:41:32',NULL,'[GLPI #0000052] Novo acompanhamento Excell','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000052] Novo acompanhamento Excell&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_52\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_52&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Excell &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:21-01-2025 10:50 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- Gerson.Lima@tecnimulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Excell&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;Gerson.Lima@tecnimulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;71992750348&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Excell com problema, expirou  &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 11:31]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia! &#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;\r\n&#60;p&#62;No momento só uso Excell&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 11:31&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 11:27]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Favor, passa o anydesk para podermos acessar. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 11:27&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_52 \n\n Chamado: Descrição\n\n Título : Excell\n Requerentes :  tecnomulti  \n Data de abertura : 21-01-2025 10:50\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - Gerson.Lima@tecnimulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Excell\n2) E-MAIL : Gerson.Lima@tecnimulti.com\n3) TELEFONE : 71992750348\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nExcell com problema, expirou  \n \n\n\n[21-01-2025 11:31]\nAutor tecnomulti\nDescrição Bom dia! \n\n \n\nNo momento só uso Excell\nData de abertura 21-01-2025 11:31\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[21-01-2025 11:27]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nFavor, passa o anydesk para podermos acessar. \nData de abertura 21-01-2025 11:27\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-52/add_followup.1737469884.1965998180@oswintech.ddns.net','','mailing','add_followup'),
(256,'Ticket',52,4,2,1,6,'2025-01-21 14:31:24','2025-01-24 16:41:11',NULL,'[GLPI #0000052] Novo acompanhamento Excell','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000052] Novo acompanhamento Excell&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_52\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_52&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Excell &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:21-01-2025 10:50 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- Gerson.Lima@tecnimulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Excell&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;Gerson.Lima@tecnimulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;71992750348&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Excell com problema, expirou  &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 11:31]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia! &#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;\r\n&#60;p&#62;No momento só uso Excell&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 11:31&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 11:27]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Favor, passa o anydesk para podermos acessar. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 11:27&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_52 \n\n Chamado: Descrição\n\n Título : Excell\n Requerentes :  tecnomulti  \n Data de abertura : 21-01-2025 10:50\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - Gerson.Lima@tecnimulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Excell\n2) E-MAIL : Gerson.Lima@tecnimulti.com\n3) TELEFONE : 71992750348\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nExcell com problema, expirou  \n \n\n\n[21-01-2025 11:31]\nAutor tecnomulti\nDescrição Bom dia! \n\n \n\nNo momento só uso Excell\nData de abertura 21-01-2025 11:31\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[21-01-2025 11:27]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nFavor, passa o anydesk para podermos acessar. \nData de abertura 21-01-2025 11:27\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-52/add_followup.1737469884.73075665@oswintech.ddns.net','','mailing','add_followup'),
(257,'Ticket',52,4,2,1,6,'2025-01-21 14:33:36','2025-01-24 16:41:11',NULL,'[GLPI #0000052] Novo acompanhamento Excell','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000052] Novo acompanhamento Excell&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_52\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_52&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Excell &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:21-01-2025 10:50 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- Gerson.Lima@tecnimulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Excell&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;Gerson.Lima@tecnimulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;71992750348&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Excell com problema, expirou  &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 11:33]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;471343653&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 11:33&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 11:31]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia! &#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;\r\n&#60;p&#62;No momento só uso Excell&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 11:31&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 11:27]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Favor, passa o anydesk para podermos acessar. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 11:27&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 3&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_52 \n\n Chamado: Descrição\n\n Título : Excell\n Requerentes :  tecnomulti  \n Data de abertura : 21-01-2025 10:50\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - Gerson.Lima@tecnimulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Excell\n2) E-MAIL : Gerson.Lima@tecnimulti.com\n3) TELEFONE : 71992750348\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nExcell com problema, expirou  \n \n\n\n[21-01-2025 11:33]\nAutor tecnomulti\nDescrição 471343653\nData de abertura 21-01-2025 11:33\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[21-01-2025 11:31]\nAutor tecnomulti\nDescrição Bom dia! \n\n \n\nNo momento só uso Excell\nData de abertura 21-01-2025 11:31\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[21-01-2025 11:27]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nFavor, passa o anydesk para podermos acessar. \nData de abertura 21-01-2025 11:27\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-52/add_followup.1737470016.1173397682@oswintech.ddns.net','','mailing','add_followup'),
(258,'Ticket',52,4,2,1,6,'2025-01-21 14:33:36','2025-01-24 16:41:11',NULL,'[GLPI #0000052] Novo acompanhamento Excell','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000052] Novo acompanhamento Excell&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_52\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_52&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Excell &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:21-01-2025 10:50 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- Gerson.Lima@tecnimulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Excell&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;Gerson.Lima@tecnimulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;71992750348&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Excell com problema, expirou  &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 11:33]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;471343653&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 11:33&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 11:31]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia! &#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;\r\n&#60;p&#62;No momento só uso Excell&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 11:31&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 11:27]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Favor, passa o anydesk para podermos acessar. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 11:27&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 3&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_52 \n\n Chamado: Descrição\n\n Título : Excell\n Requerentes :  tecnomulti  \n Data de abertura : 21-01-2025 10:50\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - Gerson.Lima@tecnimulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Excell\n2) E-MAIL : Gerson.Lima@tecnimulti.com\n3) TELEFONE : 71992750348\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nExcell com problema, expirou  \n \n\n\n[21-01-2025 11:33]\nAutor tecnomulti\nDescrição 471343653\nData de abertura 21-01-2025 11:33\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[21-01-2025 11:31]\nAutor tecnomulti\nDescrição Bom dia! \n\n \n\nNo momento só uso Excell\nData de abertura 21-01-2025 11:31\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[21-01-2025 11:27]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nFavor, passa o anydesk para podermos acessar. \nData de abertura 21-01-2025 11:27\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-52/add_followup.1737470016.123768874@oswintech.ddns.net','','mailing','add_followup'),
(259,'Ticket',52,4,2,1,6,'2025-01-21 14:40:49','2025-01-24 16:41:11',NULL,'[GLPI #0000052] Novo acompanhamento Excell','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000052] Novo acompanhamento Excell&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_52\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_52&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Excell &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:21-01-2025 10:50 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- Gerson.Lima@tecnimulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Excell&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;Gerson.Lima@tecnimulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;71992750348&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Excell com problema, expirou  &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 11:40]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Solucionado. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 11:40&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 11:33]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;471343653&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 11:33&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 11:31]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia! &#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;\r\n&#60;p&#62;No momento só uso Excell&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 11:31&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 11:27]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Favor, passa o anydesk para podermos acessar. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 11:27&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 4&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_52 \n\n Chamado: Descrição\n\n Título : Excell\n Requerentes :  tecnomulti  \n Data de abertura : 21-01-2025 10:50\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - Gerson.Lima@tecnimulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Excell\n2) E-MAIL : Gerson.Lima@tecnimulti.com\n3) TELEFONE : 71992750348\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nExcell com problema, expirou  \n \n\n\n[21-01-2025 11:40]\nAutor Alexsandro Cruz\nDescrição Solucionado. \nData de abertura 21-01-2025 11:40\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[21-01-2025 11:33]\nAutor tecnomulti\nDescrição 471343653\nData de abertura 21-01-2025 11:33\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[21-01-2025 11:31]\nAutor tecnomulti\nDescrição Bom dia! \n\n \n\nNo momento só uso Excell\nData de abertura 21-01-2025 11:31\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[21-01-2025 11:27]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nFavor, passa o anydesk para podermos acessar. \nData de abertura 21-01-2025 11:27\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 4\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-52/add_followup.1737470449.561494931@oswintech.ddns.net','','mailing','add_followup'),
(260,'Ticket',52,4,2,1,6,'2025-01-21 14:40:49','2025-01-24 16:41:11',NULL,'[GLPI #0000052] Novo acompanhamento Excell','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000052] Novo acompanhamento Excell&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_52\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_52&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Excell &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:21-01-2025 10:50 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- Gerson.Lima@tecnimulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Excell&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;Gerson.Lima@tecnimulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;71992750348&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Excell com problema, expirou  &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 11:40]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Solucionado. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 11:40&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 11:33]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;471343653&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 11:33&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 11:31]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia! &#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;\r\n&#60;p&#62;No momento só uso Excell&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 11:31&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 11:27]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Favor, passa o anydesk para podermos acessar. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 11:27&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 4&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_52 \n\n Chamado: Descrição\n\n Título : Excell\n Requerentes :  tecnomulti  \n Data de abertura : 21-01-2025 10:50\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - Gerson.Lima@tecnimulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Excell\n2) E-MAIL : Gerson.Lima@tecnimulti.com\n3) TELEFONE : 71992750348\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nExcell com problema, expirou  \n \n\n\n[21-01-2025 11:40]\nAutor Alexsandro Cruz\nDescrição Solucionado. \nData de abertura 21-01-2025 11:40\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[21-01-2025 11:33]\nAutor tecnomulti\nDescrição 471343653\nData de abertura 21-01-2025 11:33\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[21-01-2025 11:31]\nAutor tecnomulti\nDescrição Bom dia! \n\n \n\nNo momento só uso Excell\nData de abertura 21-01-2025 11:31\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[21-01-2025 11:27]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nFavor, passa o anydesk para podermos acessar. \nData de abertura 21-01-2025 11:27\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 4\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-52/add_followup.1737470449.1642720754@oswintech.ddns.net','','mailing','add_followup'),
(261,'Ticket',52,4,2,1,6,'2025-01-21 14:40:55','2025-01-24 16:41:11',NULL,'[GLPI #0000052] Encerramento do chamado Excell','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000052] Encerramento do chamado Excell&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_52\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_52&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Excell &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:21-01-2025 10:50 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:21-01-2025 11:40 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- Gerson.Lima@tecnimulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Excell&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;Gerson.Lima@tecnimulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;71992750348&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Excell com problema, expirou  &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 21-01-2025 11:40&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 11:40]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Solucionado. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 11:40&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 11:33]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;471343653&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 11:33&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 11:31]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia! &#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;\r\n&#60;p&#62;No momento só uso Excell&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 11:31&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 11:27]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Favor, passa o anydesk para podermos acessar. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 11:27&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 4&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_52 \n\n Chamado: Descrição\n\n Título : Excell\n Requerentes :  tecnomulti  \n Data de abertura : 21-01-2025 10:50\n Data de fechamento : 21-01-2025 11:40\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - Gerson.Lima@tecnimulti.com\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Excell\n2) E-MAIL : Gerson.Lima@tecnimulti.com\n3) TELEFONE : 71992750348\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nExcell com problema, expirou  \n \n\n Data da solução : 21-01-2025 11:40\n Tipo de solução : \n Solução : \n \n\n\n[21-01-2025 11:40]\nAutor Alexsandro Cruz\nDescrição Solucionado. \nData de abertura 21-01-2025 11:40\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[21-01-2025 11:33]\nAutor tecnomulti\nDescrição 471343653\nData de abertura 21-01-2025 11:33\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[21-01-2025 11:31]\nAutor tecnomulti\nDescrição Bom dia! \n\n \n\nNo momento só uso Excell\nData de abertura 21-01-2025 11:31\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[21-01-2025 11:27]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nFavor, passa o anydesk para podermos acessar. \nData de abertura 21-01-2025 11:27\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 4\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-52/closed.1737470455.437657693@oswintech.ddns.net','','mailing','closed'),
(262,'Ticket',52,4,2,1,6,'2025-01-21 14:40:55','2025-01-24 16:41:11',NULL,'[GLPI #0000052] Encerramento do chamado Excell','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000052] Encerramento do chamado Excell&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_52\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_52&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Excell &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:21-01-2025 10:50 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:21-01-2025 11:40 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- Gerson.Lima@tecnimulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Excell&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;Gerson.Lima@tecnimulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;71992750348&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Excell com problema, expirou  &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 21-01-2025 11:40&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 11:40]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Solucionado. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 11:40&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 11:33]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;471343653&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 11:33&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 11:31]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia! &#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;\r\n&#60;p&#62;No momento só uso Excell&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 11:31&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 11:27]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Favor, passa o anydesk para podermos acessar. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 11:27&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 4&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_52 \n\n Chamado: Descrição\n\n Título : Excell\n Requerentes :  tecnomulti  \n Data de abertura : 21-01-2025 10:50\n Data de fechamento : 21-01-2025 11:40\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - Gerson.Lima@tecnimulti.com\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Excell\n2) E-MAIL : Gerson.Lima@tecnimulti.com\n3) TELEFONE : 71992750348\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nExcell com problema, expirou  \n \n\n Data da solução : 21-01-2025 11:40\n Tipo de solução : \n Solução : \n \n\n\n[21-01-2025 11:40]\nAutor Alexsandro Cruz\nDescrição Solucionado. \nData de abertura 21-01-2025 11:40\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[21-01-2025 11:33]\nAutor tecnomulti\nDescrição 471343653\nData de abertura 21-01-2025 11:33\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[21-01-2025 11:31]\nAutor tecnomulti\nDescrição Bom dia! \n\n \n\nNo momento só uso Excell\nData de abertura 21-01-2025 11:31\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[21-01-2025 11:27]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nFavor, passa o anydesk para podermos acessar. \nData de abertura 21-01-2025 11:27\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 4\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-52/closed.1737470455.1540537192@oswintech.ddns.net','','mailing','closed'),
(263,'Ticket',51,4,2,1,6,'2025-01-21 14:46:45','2025-01-24 16:41:11',NULL,'[GLPI #0000051] Novo acompanhamento Expansão - Memória interna ssd + RAM','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000051] Novo acompanhamento Expans&#38;atilde;o - Mem&#38;oacute;ria interna ssd + RAM&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_51\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_51&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Expans&#38;atilde;o - Mem&#38;oacute;ria interna ssd + RAM &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:21-01-2025 10:02 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- arthur.abreu@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Expansão - Memória interna ssd + RAM&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;arthur.abreu@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84 999460068&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;A memória interna do notebook está topado, e juntamente disso, a memoria RAM está sempre em seu uso total (imagem abaixo), e acredito que seja a junção desses fatores que estão ocasionando travamentos e fechamentos de relatórios, assim como limitando o usos de alguns recursos dos mesmos e outros programas.&#60;br /&#62;&#60;br /&#62;&#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=13&#38;amp;itemtype=Ticket&#38;amp;items_id=51\" target=\"_blank\"&#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-678f9ac07b0fe6.57690040\" width=\"1123\" src=\"/front/document.send.php?docid=13&#38;amp;itemtype=Ticket&#38;amp;items_id=51\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 11:46]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia Arthur, realmente a foto mostra um alto uso de CPU e RAM, poderíamos acessar para verificar?&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 11:46&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_51 \n\n Chamado: Descrição\n\n Título : Expansão - Memória interna ssd + RAM\n Requerentes :  tecnomulti  \n Data de abertura : 21-01-2025 10:02\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - arthur.abreu@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Expansão - Memória interna ssd + RAM\n2) E-MAIL : arthur.abreu@tecnomulti.com\n3) TELEFONE : 84 999460068\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nA memória interna do notebook está topado, e juntamente disso, a memoria RAM está sempre em seu uso total (imagem abaixo), e acredito que seja a junção desses fatores que estão ocasionando travamentos e fechamentos de relatórios, assim como limitando o usos de alguns recursos dos mesmos e outros programas.\n\n[ec3ac8cc-b2d8e96f-678f9ac07b0fe6.57690040] [https://oswintech.ddns.net/front/document.send.php?docid=13&#38;itemtype=Ticket&#38;items_id=51]\n \n\n\n[21-01-2025 11:46]\nAutor Luan Medeiros\nDescrição Bom dia Arthur, realmente a foto mostra um alto uso de CPU e RAM, poderíamos acessar para verificar?\n\n \nData de abertura 21-01-2025 11:46\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-51/add_followup.1737470805.276924267@oswintech.ddns.net','','mailing','add_followup'),
(264,'Ticket',51,4,2,1,6,'2025-01-21 14:46:45','2025-01-24 16:41:11',NULL,'[GLPI #0000051] Novo acompanhamento Expansão - Memória interna ssd + RAM','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000051] Novo acompanhamento Expans&#38;atilde;o - Mem&#38;oacute;ria interna ssd + RAM&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_51\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_51&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Expans&#38;atilde;o - Mem&#38;oacute;ria interna ssd + RAM &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:21-01-2025 10:02 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- arthur.abreu@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Expansão - Memória interna ssd + RAM&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;arthur.abreu@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84 999460068&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;A memória interna do notebook está topado, e juntamente disso, a memoria RAM está sempre em seu uso total (imagem abaixo), e acredito que seja a junção desses fatores que estão ocasionando travamentos e fechamentos de relatórios, assim como limitando o usos de alguns recursos dos mesmos e outros programas.&#60;br /&#62;&#60;br /&#62;&#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=13&#38;amp;itemtype=Ticket&#38;amp;items_id=51\" target=\"_blank\"&#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-678f9ac07b0fe6.57690040\" width=\"1123\" src=\"/front/document.send.php?docid=13&#38;amp;itemtype=Ticket&#38;amp;items_id=51\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 11:46]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia Arthur, realmente a foto mostra um alto uso de CPU e RAM, poderíamos acessar para verificar?&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 11:46&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_51 \n\n Chamado: Descrição\n\n Título : Expansão - Memória interna ssd + RAM\n Requerentes :  tecnomulti  \n Data de abertura : 21-01-2025 10:02\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - arthur.abreu@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Expansão - Memória interna ssd + RAM\n2) E-MAIL : arthur.abreu@tecnomulti.com\n3) TELEFONE : 84 999460068\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nA memória interna do notebook está topado, e juntamente disso, a memoria RAM está sempre em seu uso total (imagem abaixo), e acredito que seja a junção desses fatores que estão ocasionando travamentos e fechamentos de relatórios, assim como limitando o usos de alguns recursos dos mesmos e outros programas.\n\n[ec3ac8cc-b2d8e96f-678f9ac07b0fe6.57690040] [https://oswintech.ddns.net/front/document.send.php?docid=13&#38;itemtype=Ticket&#38;items_id=51]\n \n\n\n[21-01-2025 11:46]\nAutor Luan Medeiros\nDescrição Bom dia Arthur, realmente a foto mostra um alto uso de CPU e RAM, poderíamos acessar para verificar?\n\n \nData de abertura 21-01-2025 11:46\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-51/add_followup.1737470805.2125502301@oswintech.ddns.net','','mailing','add_followup'),
(265,'Ticket',52,4,2,1,6,'2025-01-21 15:05:39','2025-01-24 16:41:11',NULL,'[GLPI #0000052] Novo acompanhamento Excell','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000052] Novo acompanhamento Excell&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_52\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_52&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Excell &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:21-01-2025 10:50 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- Gerson.Lima@tecnimulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Excell&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;Gerson.Lima@tecnimulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;71992750348&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Excell com problema, expirou  &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 12:05]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Será feito a desinstalação do pacote office e reinstalado. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 12:05&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 11:40]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Solucionado. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 11:40&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 11:33]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;471343653&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 11:33&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 11:31]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia! &#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;\r\n&#60;p&#62;No momento só uso Excell&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 11:31&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 11:27]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Favor, passa o anydesk para podermos acessar. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 11:27&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 5&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_52 \n\n Chamado: Descrição\n\n Título : Excell\n Requerentes :  tecnomulti  \n Data de abertura : 21-01-2025 10:50\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - Gerson.Lima@tecnimulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Excell\n2) E-MAIL : Gerson.Lima@tecnimulti.com\n3) TELEFONE : 71992750348\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nExcell com problema, expirou  \n \n\n\n[21-01-2025 12:05]\nAutor Alexsandro Cruz\nDescrição Será feito a desinstalação do pacote office e reinstalado. \nData de abertura 21-01-2025 12:05\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[21-01-2025 11:40]\nAutor Alexsandro Cruz\nDescrição Solucionado. \nData de abertura 21-01-2025 11:40\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[21-01-2025 11:33]\nAutor tecnomulti\nDescrição 471343653\nData de abertura 21-01-2025 11:33\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[21-01-2025 11:31]\nAutor tecnomulti\nDescrição Bom dia! \n\n \n\nNo momento só uso Excell\nData de abertura 21-01-2025 11:31\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[21-01-2025 11:27]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nFavor, passa o anydesk para podermos acessar. \nData de abertura 21-01-2025 11:27\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 5\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-52/add_followup.1737471940.527357578@oswintech.ddns.net','','mailing','add_followup'),
(266,'Ticket',52,4,2,1,6,'2025-01-21 15:05:39','2025-01-24 16:41:11',NULL,'[GLPI #0000052] Novo acompanhamento Excell','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000052] Novo acompanhamento Excell&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_52\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_52&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Excell &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:21-01-2025 10:50 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- Gerson.Lima@tecnimulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Excell&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;Gerson.Lima@tecnimulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;71992750348&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Excell com problema, expirou  &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 12:05]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Será feito a desinstalação do pacote office e reinstalado. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 12:05&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 11:40]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Solucionado. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 11:40&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 11:33]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;471343653&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 11:33&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 11:31]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia! &#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;\r\n&#60;p&#62;No momento só uso Excell&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 11:31&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 11:27]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Favor, passa o anydesk para podermos acessar. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 11:27&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 5&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_52 \n\n Chamado: Descrição\n\n Título : Excell\n Requerentes :  tecnomulti  \n Data de abertura : 21-01-2025 10:50\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - Gerson.Lima@tecnimulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Excell\n2) E-MAIL : Gerson.Lima@tecnimulti.com\n3) TELEFONE : 71992750348\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nExcell com problema, expirou  \n \n\n\n[21-01-2025 12:05]\nAutor Alexsandro Cruz\nDescrição Será feito a desinstalação do pacote office e reinstalado. \nData de abertura 21-01-2025 12:05\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[21-01-2025 11:40]\nAutor Alexsandro Cruz\nDescrição Solucionado. \nData de abertura 21-01-2025 11:40\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[21-01-2025 11:33]\nAutor tecnomulti\nDescrição 471343653\nData de abertura 21-01-2025 11:33\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[21-01-2025 11:31]\nAutor tecnomulti\nDescrição Bom dia! \n\n \n\nNo momento só uso Excell\nData de abertura 21-01-2025 11:31\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[21-01-2025 11:27]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nFavor, passa o anydesk para podermos acessar. \nData de abertura 21-01-2025 11:27\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 5\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-52/add_followup.1737471940.1143733045@oswintech.ddns.net','','mailing','add_followup'),
(267,'Ticket',50,4,2,1,6,'2025-01-21 15:06:11','2025-01-24 16:41:11',NULL,'[GLPI #0000050] Novo acompanhamento CONECTAR IMPRESSORA NO PC','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000050] Novo acompanhamento CONECTAR IMPRESSORA NO PC&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_50\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_50&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:CONECTAR IMPRESSORA NO PC &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:21-01-2025 08:27 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- lucia.gomes@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CONECTAR IMPRESSORA NO PC&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;lucia.gomes@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83999075161&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Quando tento imprimir abre essa aba nos documentos &#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=12&#38;amp;itemtype=Ticket&#38;amp;items_id=50\" target=\"_blank\"&#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-678f840b8e9a32.37877242\" width=\"1366\" src=\"/front/document.send.php?docid=12&#38;amp;itemtype=Ticket&#38;amp;items_id=50\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 12:06]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Impressora instalada. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 12:06&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 09:19]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia Lucia, poderia mandar o acesso remoto(anydesk ou teamviewer) do seu computador por favor.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 09:19&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_50 \n\n Chamado: Descrição\n\n Título : CONECTAR IMPRESSORA NO PC\n Requerentes :  tecnomulti  \n Data de abertura : 21-01-2025 08:27\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - lucia.gomes@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CONECTAR IMPRESSORA NO PC\n2) E-MAIL : lucia.gomes@tecnomulti.com\n3) TELEFONE : 83999075161\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nQuando tento imprimir abre essa aba nos documentos [ec3ac8cc-b2d8e96f-678f840b8e9a32.37877242] [https://oswintech.ddns.net/front/document.send.php?docid=12&#38;itemtype=Ticket&#38;items_id=50]\n \n\n\n[21-01-2025 12:06]\nAutor Alexsandro Cruz\nDescrição Impressora instalada. \nData de abertura 21-01-2025 12:06\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[21-01-2025 09:19]\nAutor Luan Medeiros\nDescrição Bom dia Lucia, poderia mandar o acesso remoto(anydesk ou teamviewer) do seu computador por favor.\nData de abertura 21-01-2025 09:19\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-50/add_followup.1737471971.785451125@oswintech.ddns.net','','mailing','add_followup'),
(268,'Ticket',50,4,2,1,6,'2025-01-21 15:06:11','2025-01-27 23:41:32',NULL,'[GLPI #0000050] Novo acompanhamento CONECTAR IMPRESSORA NO PC','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000050] Novo acompanhamento CONECTAR IMPRESSORA NO PC&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_50\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_50&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:CONECTAR IMPRESSORA NO PC &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:21-01-2025 08:27 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- lucia.gomes@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CONECTAR IMPRESSORA NO PC&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;lucia.gomes@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83999075161&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Quando tento imprimir abre essa aba nos documentos &#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=12&#38;amp;itemtype=Ticket&#38;amp;items_id=50\" target=\"_blank\"&#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-678f840b8e9a32.37877242\" width=\"1366\" src=\"/front/document.send.php?docid=12&#38;amp;itemtype=Ticket&#38;amp;items_id=50\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 12:06]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Impressora instalada. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 12:06&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 09:19]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia Lucia, poderia mandar o acesso remoto(anydesk ou teamviewer) do seu computador por favor.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 09:19&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_50 \n\n Chamado: Descrição\n\n Título : CONECTAR IMPRESSORA NO PC\n Requerentes :  tecnomulti  \n Data de abertura : 21-01-2025 08:27\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - lucia.gomes@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CONECTAR IMPRESSORA NO PC\n2) E-MAIL : lucia.gomes@tecnomulti.com\n3) TELEFONE : 83999075161\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nQuando tento imprimir abre essa aba nos documentos [ec3ac8cc-b2d8e96f-678f840b8e9a32.37877242] [https://oswintech.ddns.net/front/document.send.php?docid=12&#38;itemtype=Ticket&#38;items_id=50]\n \n\n\n[21-01-2025 12:06]\nAutor Alexsandro Cruz\nDescrição Impressora instalada. \nData de abertura 21-01-2025 12:06\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[21-01-2025 09:19]\nAutor Luan Medeiros\nDescrição Bom dia Lucia, poderia mandar o acesso remoto(anydesk ou teamviewer) do seu computador por favor.\nData de abertura 21-01-2025 09:19\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-50/add_followup.1737471971.1758817999@oswintech.ddns.net','','mailing','add_followup'),
(269,'Ticket',50,4,2,1,6,'2025-01-21 15:06:20','2025-01-27 23:41:32',NULL,'[GLPI #0000050] Encerramento do chamado CONECTAR IMPRESSORA NO PC','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000050] Encerramento do chamado CONECTAR IMPRESSORA NO PC&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_50\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_50&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:CONECTAR IMPRESSORA NO PC &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:21-01-2025 08:27 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:21-01-2025 12:06 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- lucia.gomes@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CONECTAR IMPRESSORA NO PC&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;lucia.gomes@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83999075161&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Quando tento imprimir abre essa aba nos documentos &#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=12&#38;amp;itemtype=Ticket&#38;amp;items_id=50\" target=\"_blank\"&#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-678f840b8e9a32.37877242\" width=\"1366\" src=\"/front/document.send.php?docid=12&#38;amp;itemtype=Ticket&#38;amp;items_id=50\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 21-01-2025 12:06&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 12:06]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Impressora instalada. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 12:06&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 09:19]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia Lucia, poderia mandar o acesso remoto(anydesk ou teamviewer) do seu computador por favor.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 09:19&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_50 \n\n Chamado: Descrição\n\n Título : CONECTAR IMPRESSORA NO PC\n Requerentes :  tecnomulti  \n Data de abertura : 21-01-2025 08:27\n Data de fechamento : 21-01-2025 12:06\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - lucia.gomes@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CONECTAR IMPRESSORA NO PC\n2) E-MAIL : lucia.gomes@tecnomulti.com\n3) TELEFONE : 83999075161\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nQuando tento imprimir abre essa aba nos documentos [ec3ac8cc-b2d8e96f-678f840b8e9a32.37877242] [https://oswintech.ddns.net/front/document.send.php?docid=12&#38;itemtype=Ticket&#38;items_id=50]\n \n\n Data da solução : 21-01-2025 12:06\n Tipo de solução : \n Solução : \n \n\n\n[21-01-2025 12:06]\nAutor Alexsandro Cruz\nDescrição Impressora instalada. \nData de abertura 21-01-2025 12:06\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[21-01-2025 09:19]\nAutor Luan Medeiros\nDescrição Bom dia Lucia, poderia mandar o acesso remoto(anydesk ou teamviewer) do seu computador por favor.\nData de abertura 21-01-2025 09:19\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-50/closed.1737471980.1593816423@oswintech.ddns.net','','mailing','closed'),
(270,'Ticket',50,4,2,1,6,'2025-01-21 15:06:20','2025-01-27 23:41:32',NULL,'[GLPI #0000050] Encerramento do chamado CONECTAR IMPRESSORA NO PC','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000050] Encerramento do chamado CONECTAR IMPRESSORA NO PC&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_50\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_50&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:CONECTAR IMPRESSORA NO PC &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:21-01-2025 08:27 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:21-01-2025 12:06 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- lucia.gomes@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CONECTAR IMPRESSORA NO PC&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;lucia.gomes@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83999075161&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Quando tento imprimir abre essa aba nos documentos &#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=12&#38;amp;itemtype=Ticket&#38;amp;items_id=50\" target=\"_blank\"&#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-678f840b8e9a32.37877242\" width=\"1366\" src=\"/front/document.send.php?docid=12&#38;amp;itemtype=Ticket&#38;amp;items_id=50\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 21-01-2025 12:06&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 12:06]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Impressora instalada. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 12:06&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 09:19]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia Lucia, poderia mandar o acesso remoto(anydesk ou teamviewer) do seu computador por favor.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 09:19&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_50 \n\n Chamado: Descrição\n\n Título : CONECTAR IMPRESSORA NO PC\n Requerentes :  tecnomulti  \n Data de abertura : 21-01-2025 08:27\n Data de fechamento : 21-01-2025 12:06\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - lucia.gomes@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CONECTAR IMPRESSORA NO PC\n2) E-MAIL : lucia.gomes@tecnomulti.com\n3) TELEFONE : 83999075161\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nQuando tento imprimir abre essa aba nos documentos [ec3ac8cc-b2d8e96f-678f840b8e9a32.37877242] [https://oswintech.ddns.net/front/document.send.php?docid=12&#38;itemtype=Ticket&#38;items_id=50]\n \n\n Data da solução : 21-01-2025 12:06\n Tipo de solução : \n Solução : \n \n\n\n[21-01-2025 12:06]\nAutor Alexsandro Cruz\nDescrição Impressora instalada. \nData de abertura 21-01-2025 12:06\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[21-01-2025 09:19]\nAutor Luan Medeiros\nDescrição Bom dia Lucia, poderia mandar o acesso remoto(anydesk ou teamviewer) do seu computador por favor.\nData de abertura 21-01-2025 09:19\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-50/closed.1737471980.203680035@oswintech.ddns.net','','mailing','closed'),
(271,'Ticket',52,4,2,1,6,'2025-01-21 15:27:09','2025-01-27 23:41:32',NULL,'[GLPI #0000052] Novo acompanhamento Excell','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000052] Novo acompanhamento Excell&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_52\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_52&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Excell &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:21-01-2025 10:50 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- Gerson.Lima@tecnimulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Excell&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;Gerson.Lima@tecnimulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;71992750348&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Excell com problema, expirou  &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 12:27]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Realizado procedimento e testado, Concluído!&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 12:27&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 12:05]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Será feito a desinstalação do pacote office e reinstalado. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 12:05&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 11:40]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Solucionado. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 11:40&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 11:33]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;471343653&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 11:33&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 11:31]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia! &#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;\r\n&#60;p&#62;No momento só uso Excell&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 11:31&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 11:27]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Favor, passa o anydesk para podermos acessar. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 11:27&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 6&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_52 \n\n Chamado: Descrição\n\n Título : Excell\n Requerentes :  tecnomulti  \n Data de abertura : 21-01-2025 10:50\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - Gerson.Lima@tecnimulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Excell\n2) E-MAIL : Gerson.Lima@tecnimulti.com\n3) TELEFONE : 71992750348\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nExcell com problema, expirou  \n \n\n\n[21-01-2025 12:27]\nAutor Alexsandro Cruz\nDescrição Realizado procedimento e testado, Concluído!\nData de abertura 21-01-2025 12:27\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[21-01-2025 12:05]\nAutor Alexsandro Cruz\nDescrição Será feito a desinstalação do pacote office e reinstalado. \nData de abertura 21-01-2025 12:05\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[21-01-2025 11:40]\nAutor Alexsandro Cruz\nDescrição Solucionado. \nData de abertura 21-01-2025 11:40\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[21-01-2025 11:33]\nAutor tecnomulti\nDescrição 471343653\nData de abertura 21-01-2025 11:33\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[21-01-2025 11:31]\nAutor tecnomulti\nDescrição Bom dia! \n\n \n\nNo momento só uso Excell\nData de abertura 21-01-2025 11:31\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[21-01-2025 11:27]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nFavor, passa o anydesk para podermos acessar. \nData de abertura 21-01-2025 11:27\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 6\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-52/add_followup.1737473229.1965221962@oswintech.ddns.net','','mailing','add_followup'),
(272,'Ticket',52,4,2,1,6,'2025-01-21 15:27:09','2025-01-27 23:41:32',NULL,'[GLPI #0000052] Novo acompanhamento Excell','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000052] Novo acompanhamento Excell&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_52\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_52&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Excell &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:21-01-2025 10:50 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- Gerson.Lima@tecnimulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Excell&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;Gerson.Lima@tecnimulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;71992750348&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Excell com problema, expirou  &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 12:27]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Realizado procedimento e testado, Concluído!&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 12:27&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 12:05]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Será feito a desinstalação do pacote office e reinstalado. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 12:05&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 11:40]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Solucionado. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 11:40&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 11:33]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;471343653&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 11:33&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 11:31]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia! &#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;\r\n&#60;p&#62;No momento só uso Excell&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 11:31&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 11:27]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Favor, passa o anydesk para podermos acessar. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 11:27&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 6&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_52 \n\n Chamado: Descrição\n\n Título : Excell\n Requerentes :  tecnomulti  \n Data de abertura : 21-01-2025 10:50\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - Gerson.Lima@tecnimulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Excell\n2) E-MAIL : Gerson.Lima@tecnimulti.com\n3) TELEFONE : 71992750348\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nExcell com problema, expirou  \n \n\n\n[21-01-2025 12:27]\nAutor Alexsandro Cruz\nDescrição Realizado procedimento e testado, Concluído!\nData de abertura 21-01-2025 12:27\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[21-01-2025 12:05]\nAutor Alexsandro Cruz\nDescrição Será feito a desinstalação do pacote office e reinstalado. \nData de abertura 21-01-2025 12:05\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[21-01-2025 11:40]\nAutor Alexsandro Cruz\nDescrição Solucionado. \nData de abertura 21-01-2025 11:40\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[21-01-2025 11:33]\nAutor tecnomulti\nDescrição 471343653\nData de abertura 21-01-2025 11:33\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[21-01-2025 11:31]\nAutor tecnomulti\nDescrição Bom dia! \n\n \n\nNo momento só uso Excell\nData de abertura 21-01-2025 11:31\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[21-01-2025 11:27]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nFavor, passa o anydesk para podermos acessar. \nData de abertura 21-01-2025 11:27\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 6\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-52/add_followup.1737473229.764522450@oswintech.ddns.net','','mailing','add_followup'),
(273,'Ticket',52,4,2,1,6,'2025-01-21 15:27:14','2025-01-27 23:41:32',NULL,'[GLPI #0000052] Encerramento do chamado Excell','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000052] Encerramento do chamado Excell&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_52\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_52&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Excell &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:21-01-2025 10:50 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:21-01-2025 12:27 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- Gerson.Lima@tecnimulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Excell&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;Gerson.Lima@tecnimulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;71992750348&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Excell com problema, expirou  &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 21-01-2025 12:27&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 12:27]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Realizado procedimento e testado, Concluído!&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 12:27&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 12:05]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Será feito a desinstalação do pacote office e reinstalado. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 12:05&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 11:40]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Solucionado. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 11:40&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 11:33]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;471343653&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 11:33&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 11:31]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia! &#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;\r\n&#60;p&#62;No momento só uso Excell&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 11:31&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 11:27]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Favor, passa o anydesk para podermos acessar. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 11:27&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 6&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_52 \n\n Chamado: Descrição\n\n Título : Excell\n Requerentes :  tecnomulti  \n Data de abertura : 21-01-2025 10:50\n Data de fechamento : 21-01-2025 12:27\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - Gerson.Lima@tecnimulti.com\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Excell\n2) E-MAIL : Gerson.Lima@tecnimulti.com\n3) TELEFONE : 71992750348\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nExcell com problema, expirou  \n \n\n Data da solução : 21-01-2025 12:27\n Tipo de solução : \n Solução : \n \n\n\n[21-01-2025 12:27]\nAutor Alexsandro Cruz\nDescrição Realizado procedimento e testado, Concluído!\nData de abertura 21-01-2025 12:27\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[21-01-2025 12:05]\nAutor Alexsandro Cruz\nDescrição Será feito a desinstalação do pacote office e reinstalado. \nData de abertura 21-01-2025 12:05\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[21-01-2025 11:40]\nAutor Alexsandro Cruz\nDescrição Solucionado. \nData de abertura 21-01-2025 11:40\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[21-01-2025 11:33]\nAutor tecnomulti\nDescrição 471343653\nData de abertura 21-01-2025 11:33\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[21-01-2025 11:31]\nAutor tecnomulti\nDescrição Bom dia! \n\n \n\nNo momento só uso Excell\nData de abertura 21-01-2025 11:31\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[21-01-2025 11:27]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nFavor, passa o anydesk para podermos acessar. \nData de abertura 21-01-2025 11:27\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 6\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-52/closed.1737473234.1796362731@oswintech.ddns.net','','mailing','closed'),
(274,'Ticket',52,4,2,1,6,'2025-01-21 15:27:14','2025-01-27 23:41:32',NULL,'[GLPI #0000052] Encerramento do chamado Excell','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000052] Encerramento do chamado Excell&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_52\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_52&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Excell &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:21-01-2025 10:50 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:21-01-2025 12:27 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- Gerson.Lima@tecnimulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Excell&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;Gerson.Lima@tecnimulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;71992750348&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Excell com problema, expirou  &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 21-01-2025 12:27&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 12:27]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Realizado procedimento e testado, Concluído!&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 12:27&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 12:05]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Será feito a desinstalação do pacote office e reinstalado. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 12:05&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 11:40]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Solucionado. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 11:40&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 11:33]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;471343653&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 11:33&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 11:31]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia! &#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;\r\n&#60;p&#62;No momento só uso Excell&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 11:31&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 11:27]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Favor, passa o anydesk para podermos acessar. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 11:27&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 6&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_52 \n\n Chamado: Descrição\n\n Título : Excell\n Requerentes :  tecnomulti  \n Data de abertura : 21-01-2025 10:50\n Data de fechamento : 21-01-2025 12:27\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - Gerson.Lima@tecnimulti.com\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Excell\n2) E-MAIL : Gerson.Lima@tecnimulti.com\n3) TELEFONE : 71992750348\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nExcell com problema, expirou  \n \n\n Data da solução : 21-01-2025 12:27\n Tipo de solução : \n Solução : \n \n\n\n[21-01-2025 12:27]\nAutor Alexsandro Cruz\nDescrição Realizado procedimento e testado, Concluído!\nData de abertura 21-01-2025 12:27\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[21-01-2025 12:05]\nAutor Alexsandro Cruz\nDescrição Será feito a desinstalação do pacote office e reinstalado. \nData de abertura 21-01-2025 12:05\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[21-01-2025 11:40]\nAutor Alexsandro Cruz\nDescrição Solucionado. \nData de abertura 21-01-2025 11:40\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[21-01-2025 11:33]\nAutor tecnomulti\nDescrição 471343653\nData de abertura 21-01-2025 11:33\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[21-01-2025 11:31]\nAutor tecnomulti\nDescrição Bom dia! \n\n \n\nNo momento só uso Excell\nData de abertura 21-01-2025 11:31\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[21-01-2025 11:27]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nFavor, passa o anydesk para podermos acessar. \nData de abertura 21-01-2025 11:27\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 6\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-52/closed.1737473234.493300151@oswintech.ddns.net','','mailing','closed'),
(275,'PluginFormcreatorFormAnswer',17,29,2,1,6,'2025-01-22 11:00:46','2025-01-28 13:21:01',NULL,'[GLPI] Sua requisição foi salva','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI] Sua requisi&#38;ccedil;&#38;atilde;o foi salva&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;p&#62;Olá,&#60;br /&#62;Sua requisição do GLPI foi salva com sucesso com o número 17 e transmitido para a equipe de helpdesk.&#60;br /&#62;Você pode ver suas respostas no seguinte link:&#60;br /&#62;https://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=17&#60;/p&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;','Olá,\nSua requisição do GLPI foi salva com sucesso com o número 17 e transmitido para a equipe de helpdesk.\nVocê pode ver suas respostas no seguinte link:\nhttps://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=17\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-PluginFormcreatorFormAnswer-17/plugin_formcreator_form_created.1737543646.849986344@oswintech.ddns.net','','mailing','plugin_formcreator_form_created'),
(276,'Ticket',53,4,2,1,0,'2025-01-22 11:00:46','2025-01-22 11:00:46','2025-01-22 11:00:52','[GLPI #0000053] Novo chamado Caixa de Email Cheia',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_53 \n\n Chamado: Descrição\n\n Título : Caixa de Email Cheia\n Requerentes :  tecnomulti  \n Data de abertura : 22-01-2025 08:00\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Caixa de Email Cheia\n2) E-MAIL : vinicius.silveira@tecnomulti.com\n3) TELEFONE : 84 99104-6460\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nCaixa de E-mail cheia\n[ec3ac8cc-b2d8e96f-6790cfd5928179.61613302] [https://oswintech.ddns.net/front/document.send.php?docid=14&#38;itemtype=Ticket&#38;items_id=53]\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(277,'Ticket',53,4,2,1,0,'2025-01-22 11:00:46','2025-01-22 11:00:46','2025-01-30 15:37:33','[GLPI #0000053] Novo chamado Caixa de Email Cheia',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_53 \n\n Chamado: Descrição\n\n Título : Caixa de Email Cheia\n Requerentes :  tecnomulti  \n Data de abertura : 22-01-2025 08:00\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Caixa de Email Cheia\n2) E-MAIL : vinicius.silveira@tecnomulti.com\n3) TELEFONE : 84 99104-6460\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nCaixa de E-mail cheia\n[ec3ac8cc-b2d8e96f-6790cfd5928179.61613302] [https://oswintech.ddns.net/front/document.send.php?docid=14&#38;itemtype=Ticket&#38;items_id=53]\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(278,'Ticket',53,4,2,1,0,'2025-01-22 11:00:46','2025-01-22 11:00:46','2025-01-30 15:49:46','[GLPI #0000053] Novo chamado Caixa de Email Cheia',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_53 \n\n Chamado: Descrição\n\n Título : Caixa de Email Cheia\n Requerentes :  tecnomulti  \n Data de abertura : 22-01-2025 08:00\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Caixa de Email Cheia\n2) E-MAIL : vinicius.silveira@tecnomulti.com\n3) TELEFONE : 84 99104-6460\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nCaixa de E-mail cheia\n[ec3ac8cc-b2d8e96f-6790cfd5928179.61613302] [https://oswintech.ddns.net/front/document.send.php?docid=14&#38;itemtype=Ticket&#38;items_id=53]\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(279,'Ticket',53,4,2,1,0,'2025-01-22 11:00:46','2025-01-22 11:00:46','2025-01-27 21:30:15','[GLPI #0000053] Novo chamado Caixa de Email Cheia',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_53 \n\n Chamado: Descrição\n\n Título : Caixa de Email Cheia\n Requerentes :  tecnomulti  \n Data de abertura : 22-01-2025 08:00\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Caixa de Email Cheia\n2) E-MAIL : vinicius.silveira@tecnomulti.com\n3) TELEFONE : 84 99104-6460\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nCaixa de E-mail cheia\n[ec3ac8cc-b2d8e96f-6790cfd5928179.61613302] [https://oswintech.ddns.net/front/document.send.php?docid=14&#38;itemtype=Ticket&#38;items_id=53]\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(280,'Ticket',53,4,2,1,6,'2025-01-22 11:00:46','2025-01-28 13:21:01',NULL,'[GLPI #0000053] Novo chamado Caixa de Email Cheia','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000053] Novo chamado Caixa de Email Cheia&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_53\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_53&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Caixa de Email Cheia &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:22-01-2025 08:00 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Caixa de Email Cheia&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;vinicius.silveira@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84 99104-6460&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Caixa de E-mail cheia&#60;br /&#62;&#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=14&#38;amp;itemtype=Ticket&#38;amp;items_id=53\" target=\"_blank\"&#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-6790cfd5928179.61613302\" width=\"1069\" src=\"/front/document.send.php?docid=14&#38;amp;itemtype=Ticket&#38;amp;items_id=53\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_53 \n\n Chamado: Descrição\n\n Título : Caixa de Email Cheia\n Requerentes :  tecnomulti  \n Data de abertura : 22-01-2025 08:00\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Caixa de Email Cheia\n2) E-MAIL : vinicius.silveira@tecnomulti.com\n3) TELEFONE : 84 99104-6460\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nCaixa de E-mail cheia\n[ec3ac8cc-b2d8e96f-6790cfd5928179.61613302] [https://oswintech.ddns.net/front/document.send.php?docid=14&#38;itemtype=Ticket&#38;items_id=53]\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-53/new@oswintech.ddns.net','','mailing','new'),
(281,'Ticket',53,4,2,1,6,'2025-01-22 11:00:46','2025-01-28 13:21:01',NULL,'[GLPI #0000053] Novo chamado Caixa de Email Cheia','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000053] Novo chamado Caixa de Email Cheia&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_53\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_53&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Caixa de Email Cheia &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:22-01-2025 08:00 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Caixa de Email Cheia&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;vinicius.silveira@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84 99104-6460&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Caixa de E-mail cheia&#60;br /&#62;&#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=14&#38;amp;itemtype=Ticket&#38;amp;items_id=53\" target=\"_blank\"&#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-6790cfd5928179.61613302\" width=\"1069\" src=\"/front/document.send.php?docid=14&#38;amp;itemtype=Ticket&#38;amp;items_id=53\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_53 \n\n Chamado: Descrição\n\n Título : Caixa de Email Cheia\n Requerentes :  tecnomulti  \n Data de abertura : 22-01-2025 08:00\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Caixa de Email Cheia\n2) E-MAIL : vinicius.silveira@tecnomulti.com\n3) TELEFONE : 84 99104-6460\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nCaixa de E-mail cheia\n[ec3ac8cc-b2d8e96f-6790cfd5928179.61613302] [https://oswintech.ddns.net/front/document.send.php?docid=14&#38;itemtype=Ticket&#38;items_id=53]\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-53/new@oswintech.ddns.net','','mailing','new'),
(282,'Ticket',53,4,2,1,6,'2025-01-22 11:00:46','2025-01-28 13:21:01',NULL,'[GLPI #0000053] Novo chamado Caixa de Email Cheia','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000053] Novo chamado Caixa de Email Cheia&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_53\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_53&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Caixa de Email Cheia &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:22-01-2025 08:00 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Caixa de Email Cheia&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;vinicius.silveira@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84 99104-6460&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Caixa de E-mail cheia&#60;br /&#62;&#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=14&#38;amp;itemtype=Ticket&#38;amp;items_id=53\" target=\"_blank\"&#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-6790cfd5928179.61613302\" width=\"1069\" src=\"/front/document.send.php?docid=14&#38;amp;itemtype=Ticket&#38;amp;items_id=53\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_53 \n\n Chamado: Descrição\n\n Título : Caixa de Email Cheia\n Requerentes :  tecnomulti  \n Data de abertura : 22-01-2025 08:00\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Caixa de Email Cheia\n2) E-MAIL : vinicius.silveira@tecnomulti.com\n3) TELEFONE : 84 99104-6460\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nCaixa de E-mail cheia\n[ec3ac8cc-b2d8e96f-6790cfd5928179.61613302] [https://oswintech.ddns.net/front/document.send.php?docid=14&#38;itemtype=Ticket&#38;items_id=53]\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-53/new@oswintech.ddns.net','','mailing','new'),
(283,'Ticket',53,4,2,1,6,'2025-01-22 11:00:46','2025-01-28 13:21:01',NULL,'[GLPI #0000053] Novo chamado Caixa de Email Cheia','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000053] Novo chamado Caixa de Email Cheia&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_53\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_53&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Caixa de Email Cheia &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:22-01-2025 08:00 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Caixa de Email Cheia&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;vinicius.silveira@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84 99104-6460&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Caixa de E-mail cheia&#60;br /&#62;&#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=14&#38;amp;itemtype=Ticket&#38;amp;items_id=53\" target=\"_blank\"&#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-6790cfd5928179.61613302\" width=\"1069\" src=\"/front/document.send.php?docid=14&#38;amp;itemtype=Ticket&#38;amp;items_id=53\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_53 \n\n Chamado: Descrição\n\n Título : Caixa de Email Cheia\n Requerentes :  tecnomulti  \n Data de abertura : 22-01-2025 08:00\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Caixa de Email Cheia\n2) E-MAIL : vinicius.silveira@tecnomulti.com\n3) TELEFONE : 84 99104-6460\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nCaixa de E-mail cheia\n[ec3ac8cc-b2d8e96f-6790cfd5928179.61613302] [https://oswintech.ddns.net/front/document.send.php?docid=14&#38;itemtype=Ticket&#38;items_id=53]\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-53/new@oswintech.ddns.net','','mailing','new'),
(284,'PluginFormcreatorFormAnswer',18,29,2,1,6,'2025-01-22 11:12:01','2025-01-28 14:16:40',NULL,'[GLPI] Sua requisição foi salva','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI] Sua requisi&#38;ccedil;&#38;atilde;o foi salva&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;p&#62;Olá,&#60;br /&#62;Sua requisição do GLPI foi salva com sucesso com o número 18 e transmitido para a equipe de helpdesk.&#60;br /&#62;Você pode ver suas respostas no seguinte link:&#60;br /&#62;https://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=18&#60;/p&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;','Olá,\nSua requisição do GLPI foi salva com sucesso com o número 18 e transmitido para a equipe de helpdesk.\nVocê pode ver suas respostas no seguinte link:\nhttps://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=18\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-PluginFormcreatorFormAnswer-18/plugin_formcreator_form_created.1737544321.1992869796@oswintech.ddns.net','','mailing','plugin_formcreator_form_created'),
(285,'Ticket',54,4,2,1,0,'2025-01-22 11:12:01','2025-01-22 11:12:01','2025-01-22 11:12:02','[GLPI #0000054] Novo chamado Notebook perdendo sinal de Wi FI',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_54 \n\n Chamado: Descrição\n\n Título : Notebook perdendo sinal de Wi FI\n Requerentes :  tecnomulti  \n Data de abertura : 22-01-2025 08:12\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Notebook perdendo sinal de Wi FI\n2) E-MAIL : arthur.abreu@tecnomulti.com\n3) TELEFONE : 84 999460068\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nWi fi do computador perde conectividade com a rede e deixa de enxergar as redes disponíveis no local.\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(286,'Ticket',54,4,2,1,0,'2025-01-22 11:12:01','2025-01-22 11:12:01','2025-01-30 15:37:33','[GLPI #0000054] Novo chamado Notebook perdendo sinal de Wi FI',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_54 \n\n Chamado: Descrição\n\n Título : Notebook perdendo sinal de Wi FI\n Requerentes :  tecnomulti  \n Data de abertura : 22-01-2025 08:12\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Notebook perdendo sinal de Wi FI\n2) E-MAIL : arthur.abreu@tecnomulti.com\n3) TELEFONE : 84 999460068\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nWi fi do computador perde conectividade com a rede e deixa de enxergar as redes disponíveis no local.\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(287,'Ticket',54,4,2,1,0,'2025-01-22 11:12:01','2025-01-22 11:12:01','2025-01-30 15:49:46','[GLPI #0000054] Novo chamado Notebook perdendo sinal de Wi FI',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_54 \n\n Chamado: Descrição\n\n Título : Notebook perdendo sinal de Wi FI\n Requerentes :  tecnomulti  \n Data de abertura : 22-01-2025 08:12\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Notebook perdendo sinal de Wi FI\n2) E-MAIL : arthur.abreu@tecnomulti.com\n3) TELEFONE : 84 999460068\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nWi fi do computador perde conectividade com a rede e deixa de enxergar as redes disponíveis no local.\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(288,'Ticket',54,4,2,1,0,'2025-01-22 11:12:01','2025-01-22 11:12:01','2025-01-27 21:30:16','[GLPI #0000054] Novo chamado Notebook perdendo sinal de Wi FI',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_54 \n\n Chamado: Descrição\n\n Título : Notebook perdendo sinal de Wi FI\n Requerentes :  tecnomulti  \n Data de abertura : 22-01-2025 08:12\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Notebook perdendo sinal de Wi FI\n2) E-MAIL : arthur.abreu@tecnomulti.com\n3) TELEFONE : 84 999460068\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nWi fi do computador perde conectividade com a rede e deixa de enxergar as redes disponíveis no local.\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(289,'Ticket',54,4,2,1,6,'2025-01-22 11:12:01','2025-01-28 14:16:40',NULL,'[GLPI #0000054] Novo chamado Notebook perdendo sinal de Wi FI','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000054] Novo chamado Notebook perdendo sinal de Wi FI&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_54\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_54&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Notebook perdendo sinal de Wi FI &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:22-01-2025 08:12 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Notebook perdendo sinal de Wi FI&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;arthur.abreu@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84 999460068&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Wi fi do computador perde conectividade com a rede e deixa de enxergar as redes disponíveis no local.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_54 \n\n Chamado: Descrição\n\n Título : Notebook perdendo sinal de Wi FI\n Requerentes :  tecnomulti  \n Data de abertura : 22-01-2025 08:12\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Notebook perdendo sinal de Wi FI\n2) E-MAIL : arthur.abreu@tecnomulti.com\n3) TELEFONE : 84 999460068\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nWi fi do computador perde conectividade com a rede e deixa de enxergar as redes disponíveis no local.\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-54/new@oswintech.ddns.net','','mailing','new'),
(290,'Ticket',54,4,2,1,6,'2025-01-22 11:12:01','2025-01-28 14:16:40',NULL,'[GLPI #0000054] Novo chamado Notebook perdendo sinal de Wi FI','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000054] Novo chamado Notebook perdendo sinal de Wi FI&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_54\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_54&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Notebook perdendo sinal de Wi FI &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:22-01-2025 08:12 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Notebook perdendo sinal de Wi FI&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;arthur.abreu@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84 999460068&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Wi fi do computador perde conectividade com a rede e deixa de enxergar as redes disponíveis no local.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_54 \n\n Chamado: Descrição\n\n Título : Notebook perdendo sinal de Wi FI\n Requerentes :  tecnomulti  \n Data de abertura : 22-01-2025 08:12\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Notebook perdendo sinal de Wi FI\n2) E-MAIL : arthur.abreu@tecnomulti.com\n3) TELEFONE : 84 999460068\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nWi fi do computador perde conectividade com a rede e deixa de enxergar as redes disponíveis no local.\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-54/new@oswintech.ddns.net','','mailing','new'),
(291,'Ticket',54,4,2,1,6,'2025-01-22 11:12:01','2025-01-28 14:16:40',NULL,'[GLPI #0000054] Novo chamado Notebook perdendo sinal de Wi FI','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000054] Novo chamado Notebook perdendo sinal de Wi FI&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_54\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_54&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Notebook perdendo sinal de Wi FI &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:22-01-2025 08:12 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Notebook perdendo sinal de Wi FI&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;arthur.abreu@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84 999460068&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Wi fi do computador perde conectividade com a rede e deixa de enxergar as redes disponíveis no local.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_54 \n\n Chamado: Descrição\n\n Título : Notebook perdendo sinal de Wi FI\n Requerentes :  tecnomulti  \n Data de abertura : 22-01-2025 08:12\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Notebook perdendo sinal de Wi FI\n2) E-MAIL : arthur.abreu@tecnomulti.com\n3) TELEFONE : 84 999460068\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nWi fi do computador perde conectividade com a rede e deixa de enxergar as redes disponíveis no local.\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-54/new@oswintech.ddns.net','','mailing','new'),
(292,'Ticket',54,4,2,1,6,'2025-01-22 11:12:01','2025-01-28 14:16:40',NULL,'[GLPI #0000054] Novo chamado Notebook perdendo sinal de Wi FI','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000054] Novo chamado Notebook perdendo sinal de Wi FI&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_54\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_54&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Notebook perdendo sinal de Wi FI &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:22-01-2025 08:12 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Notebook perdendo sinal de Wi FI&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;arthur.abreu@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84 999460068&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Wi fi do computador perde conectividade com a rede e deixa de enxergar as redes disponíveis no local.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_54 \n\n Chamado: Descrição\n\n Título : Notebook perdendo sinal de Wi FI\n Requerentes :  tecnomulti  \n Data de abertura : 22-01-2025 08:12\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Notebook perdendo sinal de Wi FI\n2) E-MAIL : arthur.abreu@tecnomulti.com\n3) TELEFONE : 84 999460068\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nWi fi do computador perde conectividade com a rede e deixa de enxergar as redes disponíveis no local.\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-54/new@oswintech.ddns.net','','mailing','new'),
(293,'Ticket',54,4,2,1,6,'2025-01-22 16:52:44','2025-01-28 15:05:28',NULL,'[GLPI #0000054] Novo acompanhamento Notebook perdendo sinal de Wi FI','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000054] Novo acompanhamento Notebook perdendo sinal de Wi FI&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_54\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_54&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Notebook perdendo sinal de Wi FI &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:22-01-2025 08:12 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- arthur.abreu@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Notebook perdendo sinal de Wi FI&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;arthur.abreu@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84 999460068&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Wi fi do computador perde conectividade com a rede e deixa de enxergar as redes disponíveis no local.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [22-01-2025 13:52]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde.&#60;/p&#62;\r\n&#60;p&#62;Realizado verificação do equipamento e detectado a necessidade de upgrade. Enviado email com solicitações de compra de SSD e MEMORIA. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;22-01-2025 13:52&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_54 \n\n Chamado: Descrição\n\n Título : Notebook perdendo sinal de Wi FI\n Requerentes :  tecnomulti  \n Data de abertura : 22-01-2025 08:12\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - arthur.abreu@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Notebook perdendo sinal de Wi FI\n2) E-MAIL : arthur.abreu@tecnomulti.com\n3) TELEFONE : 84 999460068\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nWi fi do computador perde conectividade com a rede e deixa de enxergar as redes disponíveis no local.\n \n\n\n[22-01-2025 13:52]\nAutor Alexsandro Cruz\nDescrição Boa tarde.\n\nRealizado verificação do equipamento e detectado a necessidade de upgrade. Enviado email com solicitações de compra de SSD e MEMORIA. \nData de abertura 22-01-2025 13:52\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-54/add_followup.1737564764.463329718@oswintech.ddns.net','','mailing','add_followup'),
(294,'Ticket',54,4,2,1,6,'2025-01-22 16:52:44','2025-01-28 15:05:28',NULL,'[GLPI #0000054] Novo acompanhamento Notebook perdendo sinal de Wi FI','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000054] Novo acompanhamento Notebook perdendo sinal de Wi FI&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_54\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_54&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Notebook perdendo sinal de Wi FI &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:22-01-2025 08:12 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- arthur.abreu@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Notebook perdendo sinal de Wi FI&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;arthur.abreu@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84 999460068&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Wi fi do computador perde conectividade com a rede e deixa de enxergar as redes disponíveis no local.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [22-01-2025 13:52]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde.&#60;/p&#62;\r\n&#60;p&#62;Realizado verificação do equipamento e detectado a necessidade de upgrade. Enviado email com solicitações de compra de SSD e MEMORIA. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;22-01-2025 13:52&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_54 \n\n Chamado: Descrição\n\n Título : Notebook perdendo sinal de Wi FI\n Requerentes :  tecnomulti  \n Data de abertura : 22-01-2025 08:12\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - arthur.abreu@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Notebook perdendo sinal de Wi FI\n2) E-MAIL : arthur.abreu@tecnomulti.com\n3) TELEFONE : 84 999460068\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nWi fi do computador perde conectividade com a rede e deixa de enxergar as redes disponíveis no local.\n \n\n\n[22-01-2025 13:52]\nAutor Alexsandro Cruz\nDescrição Boa tarde.\n\nRealizado verificação do equipamento e detectado a necessidade de upgrade. Enviado email com solicitações de compra de SSD e MEMORIA. \nData de abertura 22-01-2025 13:52\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-54/add_followup.1737564764.1662650479@oswintech.ddns.net','','mailing','add_followup'),
(295,'Ticket',54,4,2,1,6,'2025-01-22 16:52:53','2025-01-28 15:05:28',NULL,'[GLPI #0000054] Encerramento do chamado Notebook perdendo sinal de Wi FI','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000054] Encerramento do chamado Notebook perdendo sinal de Wi FI&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_54\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_54&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Notebook perdendo sinal de Wi FI &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:22-01-2025 08:12 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:22-01-2025 13:52 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- arthur.abreu@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Notebook perdendo sinal de Wi FI&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;arthur.abreu@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84 999460068&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Wi fi do computador perde conectividade com a rede e deixa de enxergar as redes disponíveis no local.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 22-01-2025 13:52&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [22-01-2025 13:52]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde.&#60;/p&#62;\r\n&#60;p&#62;Realizado verificação do equipamento e detectado a necessidade de upgrade. Enviado email com solicitações de compra de SSD e MEMORIA. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;22-01-2025 13:52&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_54 \n\n Chamado: Descrição\n\n Título : Notebook perdendo sinal de Wi FI\n Requerentes :  tecnomulti  \n Data de abertura : 22-01-2025 08:12\n Data de fechamento : 22-01-2025 13:52\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - arthur.abreu@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Notebook perdendo sinal de Wi FI\n2) E-MAIL : arthur.abreu@tecnomulti.com\n3) TELEFONE : 84 999460068\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nWi fi do computador perde conectividade com a rede e deixa de enxergar as redes disponíveis no local.\n \n\n Data da solução : 22-01-2025 13:52\n Tipo de solução : \n Solução : \n \n\n\n[22-01-2025 13:52]\nAutor Alexsandro Cruz\nDescrição Boa tarde.\n\nRealizado verificação do equipamento e detectado a necessidade de upgrade. Enviado email com solicitações de compra de SSD e MEMORIA. \nData de abertura 22-01-2025 13:52\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-54/closed.1737564773.1171212036@oswintech.ddns.net','','mailing','closed'),
(296,'Ticket',54,4,2,1,6,'2025-01-22 16:52:53','2025-01-28 15:05:28',NULL,'[GLPI #0000054] Encerramento do chamado Notebook perdendo sinal de Wi FI','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000054] Encerramento do chamado Notebook perdendo sinal de Wi FI&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_54\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_54&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Notebook perdendo sinal de Wi FI &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:22-01-2025 08:12 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:22-01-2025 13:52 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- arthur.abreu@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Notebook perdendo sinal de Wi FI&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;arthur.abreu@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84 999460068&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Wi fi do computador perde conectividade com a rede e deixa de enxergar as redes disponíveis no local.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 22-01-2025 13:52&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [22-01-2025 13:52]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde.&#60;/p&#62;\r\n&#60;p&#62;Realizado verificação do equipamento e detectado a necessidade de upgrade. Enviado email com solicitações de compra de SSD e MEMORIA. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;22-01-2025 13:52&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_54 \n\n Chamado: Descrição\n\n Título : Notebook perdendo sinal de Wi FI\n Requerentes :  tecnomulti  \n Data de abertura : 22-01-2025 08:12\n Data de fechamento : 22-01-2025 13:52\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - arthur.abreu@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Notebook perdendo sinal de Wi FI\n2) E-MAIL : arthur.abreu@tecnomulti.com\n3) TELEFONE : 84 999460068\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nWi fi do computador perde conectividade com a rede e deixa de enxergar as redes disponíveis no local.\n \n\n Data da solução : 22-01-2025 13:52\n Tipo de solução : \n Solução : \n \n\n\n[22-01-2025 13:52]\nAutor Alexsandro Cruz\nDescrição Boa tarde.\n\nRealizado verificação do equipamento e detectado a necessidade de upgrade. Enviado email com solicitações de compra de SSD e MEMORIA. \nData de abertura 22-01-2025 13:52\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-54/closed.1737564773.348866047@oswintech.ddns.net','','mailing','closed'),
(297,'Ticket',53,4,2,1,6,'2025-01-22 16:58:17','2025-01-28 15:05:28',NULL,'[GLPI #0000053] Novo acompanhamento Caixa de Email Cheia','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000053] Novo acompanhamento Caixa de Email Cheia&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_53\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_53&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Caixa de Email Cheia &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:22-01-2025 08:00 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- vinicius.silveira@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Caixa de Email Cheia&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;vinicius.silveira@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84 99104-6460&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Caixa de E-mail cheia&#60;br /&#62;&#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=14&#38;amp;itemtype=Ticket&#38;amp;items_id=53\" target=\"_blank\"&#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-6790cfd5928179.61613302\" width=\"1069\" src=\"/front/document.send.php?docid=14&#38;amp;itemtype=Ticket&#38;amp;items_id=53\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [22-01-2025 13:58]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde,&#60;/p&#62;\r\n&#60;p&#62;Favor não clicar em nada quando receber esses e-mails de capacidade de caixa de entrada. Sempre entrar em contato quando receber. &#60;/p&#62;\r\n&#60;p&#62;Favor, entrar em contato via whatsapp para verificar configuração do outlook.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;22-01-2025 13:58&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_53 \n\n Chamado: Descrição\n\n Título : Caixa de Email Cheia\n Requerentes :  tecnomulti  \n Data de abertura : 22-01-2025 08:00\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - vinicius.silveira@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Caixa de Email Cheia\n2) E-MAIL : vinicius.silveira@tecnomulti.com\n3) TELEFONE : 84 99104-6460\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nCaixa de E-mail cheia\n[ec3ac8cc-b2d8e96f-6790cfd5928179.61613302] [https://oswintech.ddns.net/front/document.send.php?docid=14&#38;itemtype=Ticket&#38;items_id=53]\n \n\n\n[22-01-2025 13:58]\nAutor Alexsandro Cruz\nDescrição Boa tarde,\n\nFavor não clicar em nada quando receber esses e-mails de capacidade de caixa de entrada. Sempre entrar em contato quando receber. \n\nFavor, entrar em contato via whatsapp para verificar configuração do outlook.\nData de abertura 22-01-2025 13:58\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-53/add_followup.1737565098.491840945@oswintech.ddns.net','','mailing','add_followup'),
(298,'Ticket',53,4,2,1,6,'2025-01-22 16:58:17','2025-01-28 15:05:28',NULL,'[GLPI #0000053] Novo acompanhamento Caixa de Email Cheia','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000053] Novo acompanhamento Caixa de Email Cheia&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_53\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_53&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Caixa de Email Cheia &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:22-01-2025 08:00 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- vinicius.silveira@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Caixa de Email Cheia&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;vinicius.silveira@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84 99104-6460&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Caixa de E-mail cheia&#60;br /&#62;&#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=14&#38;amp;itemtype=Ticket&#38;amp;items_id=53\" target=\"_blank\"&#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-6790cfd5928179.61613302\" width=\"1069\" src=\"/front/document.send.php?docid=14&#38;amp;itemtype=Ticket&#38;amp;items_id=53\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [22-01-2025 13:58]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde,&#60;/p&#62;\r\n&#60;p&#62;Favor não clicar em nada quando receber esses e-mails de capacidade de caixa de entrada. Sempre entrar em contato quando receber. &#60;/p&#62;\r\n&#60;p&#62;Favor, entrar em contato via whatsapp para verificar configuração do outlook.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;22-01-2025 13:58&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_53 \n\n Chamado: Descrição\n\n Título : Caixa de Email Cheia\n Requerentes :  tecnomulti  \n Data de abertura : 22-01-2025 08:00\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - vinicius.silveira@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Caixa de Email Cheia\n2) E-MAIL : vinicius.silveira@tecnomulti.com\n3) TELEFONE : 84 99104-6460\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nCaixa de E-mail cheia\n[ec3ac8cc-b2d8e96f-6790cfd5928179.61613302] [https://oswintech.ddns.net/front/document.send.php?docid=14&#38;itemtype=Ticket&#38;items_id=53]\n \n\n\n[22-01-2025 13:58]\nAutor Alexsandro Cruz\nDescrição Boa tarde,\n\nFavor não clicar em nada quando receber esses e-mails de capacidade de caixa de entrada. Sempre entrar em contato quando receber. \n\nFavor, entrar em contato via whatsapp para verificar configuração do outlook.\nData de abertura 22-01-2025 13:58\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-53/add_followup.1737565098.782586612@oswintech.ddns.net','','mailing','add_followup');
INSERT INTO `glpi_queuednotifications` VALUES
(299,'Ticket',51,4,2,1,6,'2025-01-22 16:59:24','2025-01-28 15:05:28',NULL,'[GLPI #0000051] Novo acompanhamento Expansão - Memória interna ssd + RAM','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000051] Novo acompanhamento Expans&#38;atilde;o - Mem&#38;oacute;ria interna ssd + RAM&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_51\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_51&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Expans&#38;atilde;o - Mem&#38;oacute;ria interna ssd + RAM &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:21-01-2025 10:02 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- arthur.abreu@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Expansão - Memória interna ssd + RAM&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;arthur.abreu@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84 999460068&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;A memória interna do notebook está topado, e juntamente disso, a memoria RAM está sempre em seu uso total (imagem abaixo), e acredito que seja a junção desses fatores que estão ocasionando travamentos e fechamentos de relatórios, assim como limitando o usos de alguns recursos dos mesmos e outros programas.&#60;br /&#62;&#60;br /&#62;&#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=13&#38;amp;itemtype=Ticket&#38;amp;items_id=51\" target=\"_blank\"&#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-678f9ac07b0fe6.57690040\" width=\"1123\" src=\"/front/document.send.php?docid=13&#38;amp;itemtype=Ticket&#38;amp;items_id=51\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [22-01-2025 13:59]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p style=\"box-sizing: border-box; scrollbar-width: thin; scrollbar-color: rgba(96, 111, 145, 0.8) transparent; margin-top: 0px; margin-bottom: 1rem; color: #535353; font-family: inter, -apple-system, blinkmacsystemfont, \'san francisco\', \'segoe ui\', roboto, \'helvetica neue\', sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: no-contextual; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: #ececec; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;\"&#62;Boa tarde.&#60;/p&#62;\r\n&#60;p style=\"box-sizing: border-box; scrollbar-width: thin; scrollbar-color: rgba(96, 111, 145, 0.8) transparent; margin-top: 0px; margin-bottom: 1rem; color: #535353; font-family: inter, -apple-system, blinkmacsystemfont, \'san francisco\', \'segoe ui\', roboto, \'helvetica neue\', sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: no-contextual; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: #ececec; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;\"&#62;Realizado verificação do equipamento e detectado a necessidade de upgrade. Enviado email com solicitações de compra de SSD e MEMORIA.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;22-01-2025 13:59&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 11:46]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia Arthur, realmente a foto mostra um alto uso de CPU e RAM, poderíamos acessar para verificar?&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 11:46&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_51 \n\n Chamado: Descrição\n\n Título : Expansão - Memória interna ssd + RAM\n Requerentes :  tecnomulti  \n Data de abertura : 21-01-2025 10:02\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - arthur.abreu@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Expansão - Memória interna ssd + RAM\n2) E-MAIL : arthur.abreu@tecnomulti.com\n3) TELEFONE : 84 999460068\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nA memória interna do notebook está topado, e juntamente disso, a memoria RAM está sempre em seu uso total (imagem abaixo), e acredito que seja a junção desses fatores que estão ocasionando travamentos e fechamentos de relatórios, assim como limitando o usos de alguns recursos dos mesmos e outros programas.\n\n[ec3ac8cc-b2d8e96f-678f9ac07b0fe6.57690040] [https://oswintech.ddns.net/front/document.send.php?docid=13&#38;itemtype=Ticket&#38;items_id=51]\n \n\n\n[22-01-2025 13:59]\nAutor Alexsandro Cruz\nDescrição Boa tarde.\n\nRealizado verificação do equipamento e detectado a necessidade de upgrade. Enviado email com solicitações de compra de SSD e MEMORIA.\nData de abertura 22-01-2025 13:59\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[21-01-2025 11:46]\nAutor Luan Medeiros\nDescrição Bom dia Arthur, realmente a foto mostra um alto uso de CPU e RAM, poderíamos acessar para verificar?\n\n \nData de abertura 21-01-2025 11:46\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-51/add_followup.1737565164.6978200@oswintech.ddns.net','','mailing','add_followup'),
(300,'Ticket',51,4,2,1,6,'2025-01-22 16:59:24','2025-01-28 16:50:33',NULL,'[GLPI #0000051] Novo acompanhamento Expansão - Memória interna ssd + RAM','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000051] Novo acompanhamento Expans&#38;atilde;o - Mem&#38;oacute;ria interna ssd + RAM&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_51\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_51&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Expans&#38;atilde;o - Mem&#38;oacute;ria interna ssd + RAM &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:21-01-2025 10:02 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- arthur.abreu@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Expansão - Memória interna ssd + RAM&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;arthur.abreu@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84 999460068&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;A memória interna do notebook está topado, e juntamente disso, a memoria RAM está sempre em seu uso total (imagem abaixo), e acredito que seja a junção desses fatores que estão ocasionando travamentos e fechamentos de relatórios, assim como limitando o usos de alguns recursos dos mesmos e outros programas.&#60;br /&#62;&#60;br /&#62;&#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=13&#38;amp;itemtype=Ticket&#38;amp;items_id=51\" target=\"_blank\"&#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-678f9ac07b0fe6.57690040\" width=\"1123\" src=\"/front/document.send.php?docid=13&#38;amp;itemtype=Ticket&#38;amp;items_id=51\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [22-01-2025 13:59]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p style=\"box-sizing: border-box; scrollbar-width: thin; scrollbar-color: rgba(96, 111, 145, 0.8) transparent; margin-top: 0px; margin-bottom: 1rem; color: #535353; font-family: inter, -apple-system, blinkmacsystemfont, \'san francisco\', \'segoe ui\', roboto, \'helvetica neue\', sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: no-contextual; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: #ececec; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;\"&#62;Boa tarde.&#60;/p&#62;\r\n&#60;p style=\"box-sizing: border-box; scrollbar-width: thin; scrollbar-color: rgba(96, 111, 145, 0.8) transparent; margin-top: 0px; margin-bottom: 1rem; color: #535353; font-family: inter, -apple-system, blinkmacsystemfont, \'san francisco\', \'segoe ui\', roboto, \'helvetica neue\', sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: no-contextual; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: #ececec; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;\"&#62;Realizado verificação do equipamento e detectado a necessidade de upgrade. Enviado email com solicitações de compra de SSD e MEMORIA.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;22-01-2025 13:59&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 11:46]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia Arthur, realmente a foto mostra um alto uso de CPU e RAM, poderíamos acessar para verificar?&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 11:46&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_51 \n\n Chamado: Descrição\n\n Título : Expansão - Memória interna ssd + RAM\n Requerentes :  tecnomulti  \n Data de abertura : 21-01-2025 10:02\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - arthur.abreu@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Expansão - Memória interna ssd + RAM\n2) E-MAIL : arthur.abreu@tecnomulti.com\n3) TELEFONE : 84 999460068\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nA memória interna do notebook está topado, e juntamente disso, a memoria RAM está sempre em seu uso total (imagem abaixo), e acredito que seja a junção desses fatores que estão ocasionando travamentos e fechamentos de relatórios, assim como limitando o usos de alguns recursos dos mesmos e outros programas.\n\n[ec3ac8cc-b2d8e96f-678f9ac07b0fe6.57690040] [https://oswintech.ddns.net/front/document.send.php?docid=13&#38;itemtype=Ticket&#38;items_id=51]\n \n\n\n[22-01-2025 13:59]\nAutor Alexsandro Cruz\nDescrição Boa tarde.\n\nRealizado verificação do equipamento e detectado a necessidade de upgrade. Enviado email com solicitações de compra de SSD e MEMORIA.\nData de abertura 22-01-2025 13:59\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[21-01-2025 11:46]\nAutor Luan Medeiros\nDescrição Bom dia Arthur, realmente a foto mostra um alto uso de CPU e RAM, poderíamos acessar para verificar?\n\n \nData de abertura 21-01-2025 11:46\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-51/add_followup.1737565164.1715391456@oswintech.ddns.net','','mailing','add_followup'),
(301,'Ticket',51,4,2,1,6,'2025-01-22 16:59:29','2025-01-28 16:50:33',NULL,'[GLPI #0000051] Encerramento do chamado Expansão - Memória interna ssd + RAM','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000051] Encerramento do chamado Expans&#38;atilde;o - Mem&#38;oacute;ria interna ssd + RAM&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_51\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_51&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Expans&#38;atilde;o - Mem&#38;oacute;ria interna ssd + RAM &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:21-01-2025 10:02 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:22-01-2025 13:59 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- arthur.abreu@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Expansão - Memória interna ssd + RAM&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;arthur.abreu@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84 999460068&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;A memória interna do notebook está topado, e juntamente disso, a memoria RAM está sempre em seu uso total (imagem abaixo), e acredito que seja a junção desses fatores que estão ocasionando travamentos e fechamentos de relatórios, assim como limitando o usos de alguns recursos dos mesmos e outros programas.&#60;br /&#62;&#60;br /&#62;&#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=13&#38;amp;itemtype=Ticket&#38;amp;items_id=51\" target=\"_blank\"&#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-678f9ac07b0fe6.57690040\" width=\"1123\" src=\"/front/document.send.php?docid=13&#38;amp;itemtype=Ticket&#38;amp;items_id=51\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 22-01-2025 13:59&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [22-01-2025 13:59]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p style=\"box-sizing: border-box; scrollbar-width: thin; scrollbar-color: rgba(96, 111, 145, 0.8) transparent; margin-top: 0px; margin-bottom: 1rem; color: #535353; font-family: inter, -apple-system, blinkmacsystemfont, \'san francisco\', \'segoe ui\', roboto, \'helvetica neue\', sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: no-contextual; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: #ececec; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;\"&#62;Boa tarde.&#60;/p&#62;\r\n&#60;p style=\"box-sizing: border-box; scrollbar-width: thin; scrollbar-color: rgba(96, 111, 145, 0.8) transparent; margin-top: 0px; margin-bottom: 1rem; color: #535353; font-family: inter, -apple-system, blinkmacsystemfont, \'san francisco\', \'segoe ui\', roboto, \'helvetica neue\', sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: no-contextual; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: #ececec; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;\"&#62;Realizado verificação do equipamento e detectado a necessidade de upgrade. Enviado email com solicitações de compra de SSD e MEMORIA.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;22-01-2025 13:59&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 11:46]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia Arthur, realmente a foto mostra um alto uso de CPU e RAM, poderíamos acessar para verificar?&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 11:46&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_51 \n\n Chamado: Descrição\n\n Título : Expansão - Memória interna ssd + RAM\n Requerentes :  tecnomulti  \n Data de abertura : 21-01-2025 10:02\n Data de fechamento : 22-01-2025 13:59\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - arthur.abreu@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Expansão - Memória interna ssd + RAM\n2) E-MAIL : arthur.abreu@tecnomulti.com\n3) TELEFONE : 84 999460068\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nA memória interna do notebook está topado, e juntamente disso, a memoria RAM está sempre em seu uso total (imagem abaixo), e acredito que seja a junção desses fatores que estão ocasionando travamentos e fechamentos de relatórios, assim como limitando o usos de alguns recursos dos mesmos e outros programas.\n\n[ec3ac8cc-b2d8e96f-678f9ac07b0fe6.57690040] [https://oswintech.ddns.net/front/document.send.php?docid=13&#38;itemtype=Ticket&#38;items_id=51]\n \n\n Data da solução : 22-01-2025 13:59\n Tipo de solução : \n Solução : \n \n\n\n[22-01-2025 13:59]\nAutor Alexsandro Cruz\nDescrição Boa tarde.\n\nRealizado verificação do equipamento e detectado a necessidade de upgrade. Enviado email com solicitações de compra de SSD e MEMORIA.\nData de abertura 22-01-2025 13:59\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[21-01-2025 11:46]\nAutor Luan Medeiros\nDescrição Bom dia Arthur, realmente a foto mostra um alto uso de CPU e RAM, poderíamos acessar para verificar?\n\n \nData de abertura 21-01-2025 11:46\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-51/closed.1737565169.258469677@oswintech.ddns.net','','mailing','closed'),
(302,'Ticket',51,4,2,1,6,'2025-01-22 16:59:29','2025-01-28 16:50:33',NULL,'[GLPI #0000051] Encerramento do chamado Expansão - Memória interna ssd + RAM','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000051] Encerramento do chamado Expans&#38;atilde;o - Mem&#38;oacute;ria interna ssd + RAM&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_51\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_51&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Expans&#38;atilde;o - Mem&#38;oacute;ria interna ssd + RAM &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:21-01-2025 10:02 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:22-01-2025 13:59 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- arthur.abreu@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Expansão - Memória interna ssd + RAM&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;arthur.abreu@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84 999460068&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;A memória interna do notebook está topado, e juntamente disso, a memoria RAM está sempre em seu uso total (imagem abaixo), e acredito que seja a junção desses fatores que estão ocasionando travamentos e fechamentos de relatórios, assim como limitando o usos de alguns recursos dos mesmos e outros programas.&#60;br /&#62;&#60;br /&#62;&#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=13&#38;amp;itemtype=Ticket&#38;amp;items_id=51\" target=\"_blank\"&#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-678f9ac07b0fe6.57690040\" width=\"1123\" src=\"/front/document.send.php?docid=13&#38;amp;itemtype=Ticket&#38;amp;items_id=51\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 22-01-2025 13:59&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [22-01-2025 13:59]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p style=\"box-sizing: border-box; scrollbar-width: thin; scrollbar-color: rgba(96, 111, 145, 0.8) transparent; margin-top: 0px; margin-bottom: 1rem; color: #535353; font-family: inter, -apple-system, blinkmacsystemfont, \'san francisco\', \'segoe ui\', roboto, \'helvetica neue\', sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: no-contextual; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: #ececec; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;\"&#62;Boa tarde.&#60;/p&#62;\r\n&#60;p style=\"box-sizing: border-box; scrollbar-width: thin; scrollbar-color: rgba(96, 111, 145, 0.8) transparent; margin-top: 0px; margin-bottom: 1rem; color: #535353; font-family: inter, -apple-system, blinkmacsystemfont, \'san francisco\', \'segoe ui\', roboto, \'helvetica neue\', sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: no-contextual; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: #ececec; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;\"&#62;Realizado verificação do equipamento e detectado a necessidade de upgrade. Enviado email com solicitações de compra de SSD e MEMORIA.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;22-01-2025 13:59&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [21-01-2025 11:46]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia Arthur, realmente a foto mostra um alto uso de CPU e RAM, poderíamos acessar para verificar?&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;21-01-2025 11:46&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_51 \n\n Chamado: Descrição\n\n Título : Expansão - Memória interna ssd + RAM\n Requerentes :  tecnomulti  \n Data de abertura : 21-01-2025 10:02\n Data de fechamento : 22-01-2025 13:59\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - arthur.abreu@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Expansão - Memória interna ssd + RAM\n2) E-MAIL : arthur.abreu@tecnomulti.com\n3) TELEFONE : 84 999460068\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nA memória interna do notebook está topado, e juntamente disso, a memoria RAM está sempre em seu uso total (imagem abaixo), e acredito que seja a junção desses fatores que estão ocasionando travamentos e fechamentos de relatórios, assim como limitando o usos de alguns recursos dos mesmos e outros programas.\n\n[ec3ac8cc-b2d8e96f-678f9ac07b0fe6.57690040] [https://oswintech.ddns.net/front/document.send.php?docid=13&#38;itemtype=Ticket&#38;items_id=51]\n \n\n Data da solução : 22-01-2025 13:59\n Tipo de solução : \n Solução : \n \n\n\n[22-01-2025 13:59]\nAutor Alexsandro Cruz\nDescrição Boa tarde.\n\nRealizado verificação do equipamento e detectado a necessidade de upgrade. Enviado email com solicitações de compra de SSD e MEMORIA.\nData de abertura 22-01-2025 13:59\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[21-01-2025 11:46]\nAutor Luan Medeiros\nDescrição Bom dia Arthur, realmente a foto mostra um alto uso de CPU e RAM, poderíamos acessar para verificar?\n\n \nData de abertura 21-01-2025 11:46\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-51/closed.1737565169.178824793@oswintech.ddns.net','','mailing','closed'),
(303,'PluginFormcreatorFormAnswer',19,29,2,1,6,'2025-01-23 13:02:02','2025-01-28 16:50:33',NULL,'[GLPI] Sua requisição foi salva','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI] Sua requisi&#38;ccedil;&#38;atilde;o foi salva&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;p&#62;Olá,&#60;br /&#62;Sua requisição do GLPI foi salva com sucesso com o número 19 e transmitido para a equipe de helpdesk.&#60;br /&#62;Você pode ver suas respostas no seguinte link:&#60;br /&#62;https://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=19&#60;/p&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;','Olá,\nSua requisição do GLPI foi salva com sucesso com o número 19 e transmitido para a equipe de helpdesk.\nVocê pode ver suas respostas no seguinte link:\nhttps://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=19\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-PluginFormcreatorFormAnswer-19/plugin_formcreator_form_created.1737637323.1856900362@oswintech.ddns.net','','mailing','plugin_formcreator_form_created'),
(304,'Ticket',55,4,2,1,0,'2025-01-23 13:02:02','2025-01-23 13:02:02','2025-01-27 18:28:27','[GLPI #0000055] Novo chamado SAP COM PROBLEMA ',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_55 \n\n Chamado: Descrição\n\n Título : SAP COM PROBLEMA \n Requerentes :  tecnomulti  \n Data de abertura : 23-01-2025 10:02\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : SAP COM PROBLEMA \n2) E-MAIL : anacristina.araujo@tecnomulti.com\n3) TELEFONE : 83 996110690\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nSEM ACESSO AO SAP - JÁ LIMPEI CACHE - REINICIEI E NADA \n\n \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(305,'Ticket',55,4,2,1,0,'2025-01-23 13:02:02','2025-01-23 13:02:02','2025-01-30 15:37:33','[GLPI #0000055] Novo chamado SAP COM PROBLEMA ',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_55 \n\n Chamado: Descrição\n\n Título : SAP COM PROBLEMA \n Requerentes :  tecnomulti  \n Data de abertura : 23-01-2025 10:02\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : SAP COM PROBLEMA \n2) E-MAIL : anacristina.araujo@tecnomulti.com\n3) TELEFONE : 83 996110690\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nSEM ACESSO AO SAP - JÁ LIMPEI CACHE - REINICIEI E NADA \n\n \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(306,'Ticket',55,4,2,1,0,'2025-01-23 13:02:02','2025-01-23 13:02:02','2025-01-30 15:49:47','[GLPI #0000055] Novo chamado SAP COM PROBLEMA ',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_55 \n\n Chamado: Descrição\n\n Título : SAP COM PROBLEMA \n Requerentes :  tecnomulti  \n Data de abertura : 23-01-2025 10:02\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : SAP COM PROBLEMA \n2) E-MAIL : anacristina.araujo@tecnomulti.com\n3) TELEFONE : 83 996110690\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nSEM ACESSO AO SAP - JÁ LIMPEI CACHE - REINICIEI E NADA \n\n \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(307,'Ticket',55,4,2,1,0,'2025-01-23 13:02:02','2025-01-23 13:02:02','2025-01-27 21:30:16','[GLPI #0000055] Novo chamado SAP COM PROBLEMA ',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_55 \n\n Chamado: Descrição\n\n Título : SAP COM PROBLEMA \n Requerentes :  tecnomulti  \n Data de abertura : 23-01-2025 10:02\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : SAP COM PROBLEMA \n2) E-MAIL : anacristina.araujo@tecnomulti.com\n3) TELEFONE : 83 996110690\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nSEM ACESSO AO SAP - JÁ LIMPEI CACHE - REINICIEI E NADA \n\n \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(308,'Ticket',55,4,2,1,6,'2025-01-23 13:02:02','2025-01-28 16:50:33',NULL,'[GLPI #0000055] Novo chamado SAP COM PROBLEMA ','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000055] Novo chamado SAP COM PROBLEMA &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_55\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_55&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:SAP COM PROBLEMA  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:23-01-2025 10:02 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;SAP COM PROBLEMA &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;anacristina.araujo@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83 996110690&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;SEM ACESSO AO SAP - JÁ LIMPEI CACHE - REINICIEI E NADA &#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_55 \n\n Chamado: Descrição\n\n Título : SAP COM PROBLEMA \n Requerentes :  tecnomulti  \n Data de abertura : 23-01-2025 10:02\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : SAP COM PROBLEMA \n2) E-MAIL : anacristina.araujo@tecnomulti.com\n3) TELEFONE : 83 996110690\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nSEM ACESSO AO SAP - JÁ LIMPEI CACHE - REINICIEI E NADA \n\n \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-55/new@oswintech.ddns.net','','mailing','new'),
(309,'Ticket',55,4,2,1,6,'2025-01-23 13:02:02','2025-01-28 16:50:33',NULL,'[GLPI #0000055] Novo chamado SAP COM PROBLEMA ','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000055] Novo chamado SAP COM PROBLEMA &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_55\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_55&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:SAP COM PROBLEMA  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:23-01-2025 10:02 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;SAP COM PROBLEMA &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;anacristina.araujo@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83 996110690&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;SEM ACESSO AO SAP - JÁ LIMPEI CACHE - REINICIEI E NADA &#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_55 \n\n Chamado: Descrição\n\n Título : SAP COM PROBLEMA \n Requerentes :  tecnomulti  \n Data de abertura : 23-01-2025 10:02\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : SAP COM PROBLEMA \n2) E-MAIL : anacristina.araujo@tecnomulti.com\n3) TELEFONE : 83 996110690\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nSEM ACESSO AO SAP - JÁ LIMPEI CACHE - REINICIEI E NADA \n\n \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-55/new@oswintech.ddns.net','','mailing','new'),
(310,'Ticket',55,4,2,1,6,'2025-01-23 13:02:02','2025-01-28 16:50:33',NULL,'[GLPI #0000055] Novo chamado SAP COM PROBLEMA ','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000055] Novo chamado SAP COM PROBLEMA &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_55\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_55&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:SAP COM PROBLEMA  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:23-01-2025 10:02 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;SAP COM PROBLEMA &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;anacristina.araujo@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83 996110690&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;SEM ACESSO AO SAP - JÁ LIMPEI CACHE - REINICIEI E NADA &#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_55 \n\n Chamado: Descrição\n\n Título : SAP COM PROBLEMA \n Requerentes :  tecnomulti  \n Data de abertura : 23-01-2025 10:02\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : SAP COM PROBLEMA \n2) E-MAIL : anacristina.araujo@tecnomulti.com\n3) TELEFONE : 83 996110690\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nSEM ACESSO AO SAP - JÁ LIMPEI CACHE - REINICIEI E NADA \n\n \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-55/new@oswintech.ddns.net','','mailing','new'),
(311,'Ticket',55,4,2,1,6,'2025-01-23 13:02:02','2025-01-28 16:50:33',NULL,'[GLPI #0000055] Novo chamado SAP COM PROBLEMA ','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000055] Novo chamado SAP COM PROBLEMA &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_55\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_55&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:SAP COM PROBLEMA  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:23-01-2025 10:02 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;SAP COM PROBLEMA &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;anacristina.araujo@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83 996110690&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;SEM ACESSO AO SAP - JÁ LIMPEI CACHE - REINICIEI E NADA &#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_55 \n\n Chamado: Descrição\n\n Título : SAP COM PROBLEMA \n Requerentes :  tecnomulti  \n Data de abertura : 23-01-2025 10:02\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : SAP COM PROBLEMA \n2) E-MAIL : anacristina.araujo@tecnomulti.com\n3) TELEFONE : 83 996110690\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nSEM ACESSO AO SAP - JÁ LIMPEI CACHE - REINICIEI E NADA \n\n \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-55/new@oswintech.ddns.net','','mailing','new'),
(312,'Ticket',55,4,2,1,6,'2025-01-23 13:06:27','2025-01-28 16:50:33',NULL,'[GLPI #0000055] Novo acompanhamento SAP COM PROBLEMA ','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000055] Novo acompanhamento SAP COM PROBLEMA &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_55\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_55&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:SAP COM PROBLEMA  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:23-01-2025 10:02 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- anacristina.araujo@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;SAP COM PROBLEMA &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;anacristina.araujo@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83 996110690&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;SEM ACESSO AO SAP - JÁ LIMPEI CACHE - REINICIEI E NADA &#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [23-01-2025 10:06]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, Ana.&#60;/p&#62;\r\n&#60;p&#62;Por gentileza poderia me mandar a print do erro!&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;23-01-2025 10:06&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_55 \n\n Chamado: Descrição\n\n Título : SAP COM PROBLEMA \n Requerentes :  tecnomulti  \n Data de abertura : 23-01-2025 10:02\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - anacristina.araujo@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : SAP COM PROBLEMA \n2) E-MAIL : anacristina.araujo@tecnomulti.com\n3) TELEFONE : 83 996110690\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nSEM ACESSO AO SAP - JÁ LIMPEI CACHE - REINICIEI E NADA \n\n \n \n\n\n[23-01-2025 10:06]\nAutor Alexsandro Cruz\nDescrição Bom dia, Ana.\n\nPor gentileza poderia me mandar a print do erro!\nData de abertura 23-01-2025 10:06\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-55/add_followup.1737637587.864364377@oswintech.ddns.net','','mailing','add_followup'),
(313,'Ticket',55,4,2,1,6,'2025-01-23 13:06:27','2025-01-28 16:50:33',NULL,'[GLPI #0000055] Novo acompanhamento SAP COM PROBLEMA ','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000055] Novo acompanhamento SAP COM PROBLEMA &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_55\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_55&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:SAP COM PROBLEMA  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:23-01-2025 10:02 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- anacristina.araujo@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;SAP COM PROBLEMA &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;anacristina.araujo@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83 996110690&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;SEM ACESSO AO SAP - JÁ LIMPEI CACHE - REINICIEI E NADA &#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [23-01-2025 10:06]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, Ana.&#60;/p&#62;\r\n&#60;p&#62;Por gentileza poderia me mandar a print do erro!&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;23-01-2025 10:06&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_55 \n\n Chamado: Descrição\n\n Título : SAP COM PROBLEMA \n Requerentes :  tecnomulti  \n Data de abertura : 23-01-2025 10:02\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - anacristina.araujo@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : SAP COM PROBLEMA \n2) E-MAIL : anacristina.araujo@tecnomulti.com\n3) TELEFONE : 83 996110690\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nSEM ACESSO AO SAP - JÁ LIMPEI CACHE - REINICIEI E NADA \n\n \n \n\n\n[23-01-2025 10:06]\nAutor Alexsandro Cruz\nDescrição Bom dia, Ana.\n\nPor gentileza poderia me mandar a print do erro!\nData de abertura 23-01-2025 10:06\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-55/add_followup.1737637587.1760848377@oswintech.ddns.net','','mailing','add_followup'),
(314,'Ticket',55,4,2,1,6,'2025-01-23 13:20:37','2025-01-28 16:50:33',NULL,'[GLPI #0000055] Novo acompanhamento SAP COM PROBLEMA ','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000055] Novo acompanhamento SAP COM PROBLEMA &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_55\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_55&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:SAP COM PROBLEMA  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:23-01-2025 10:02 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- anacristina.araujo@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;SAP COM PROBLEMA &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;anacristina.araujo@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83 996110690&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;SEM ACESSO AO SAP - JÁ LIMPEI CACHE - REINICIEI E NADA &#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [23-01-2025 10:20]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;&#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=15&#38;amp;itemtype=Ticket&#38;amp;items_id=55\" target=\"_blank\"&#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-6792421b98dab2.18335093\" width=\"813\" src=\"/front/document.send.php?docid=15&#38;amp;itemtype=Ticket&#38;amp;items_id=55\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;23-01-2025 10:20&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [23-01-2025 10:06]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, Ana.&#60;/p&#62;\r\n&#60;p&#62;Por gentileza poderia me mandar a print do erro!&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;23-01-2025 10:06&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_55 \n\n Chamado: Descrição\n\n Título : SAP COM PROBLEMA \n Requerentes :  tecnomulti  \n Data de abertura : 23-01-2025 10:02\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - anacristina.araujo@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : SAP COM PROBLEMA \n2) E-MAIL : anacristina.araujo@tecnomulti.com\n3) TELEFONE : 83 996110690\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nSEM ACESSO AO SAP - JÁ LIMPEI CACHE - REINICIEI E NADA \n\n \n \n\n\n[23-01-2025 10:20]\nAutor tecnomulti\nDescrição [ec3ac8cc-b2d8e96f-6792421b98dab2.18335093] [https://oswintech.ddns.net/front/document.send.php?docid=15&#38;itemtype=Ticket&#38;items_id=55]\nData de abertura 23-01-2025 10:20\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[23-01-2025 10:06]\nAutor Alexsandro Cruz\nDescrição Bom dia, Ana.\n\nPor gentileza poderia me mandar a print do erro!\nData de abertura 23-01-2025 10:06\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-55/add_followup.1737638437.989350766@oswintech.ddns.net','','mailing','add_followup'),
(315,'Ticket',55,4,2,1,6,'2025-01-23 13:20:37','2025-01-28 16:50:33',NULL,'[GLPI #0000055] Novo acompanhamento SAP COM PROBLEMA ','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000055] Novo acompanhamento SAP COM PROBLEMA &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_55\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_55&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:SAP COM PROBLEMA  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:23-01-2025 10:02 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- anacristina.araujo@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;SAP COM PROBLEMA &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;anacristina.araujo@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83 996110690&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;SEM ACESSO AO SAP - JÁ LIMPEI CACHE - REINICIEI E NADA &#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [23-01-2025 10:20]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;&#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=15&#38;amp;itemtype=Ticket&#38;amp;items_id=55\" target=\"_blank\"&#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-6792421b98dab2.18335093\" width=\"813\" src=\"/front/document.send.php?docid=15&#38;amp;itemtype=Ticket&#38;amp;items_id=55\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;23-01-2025 10:20&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [23-01-2025 10:06]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, Ana.&#60;/p&#62;\r\n&#60;p&#62;Por gentileza poderia me mandar a print do erro!&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;23-01-2025 10:06&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_55 \n\n Chamado: Descrição\n\n Título : SAP COM PROBLEMA \n Requerentes :  tecnomulti  \n Data de abertura : 23-01-2025 10:02\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - anacristina.araujo@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : SAP COM PROBLEMA \n2) E-MAIL : anacristina.araujo@tecnomulti.com\n3) TELEFONE : 83 996110690\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nSEM ACESSO AO SAP - JÁ LIMPEI CACHE - REINICIEI E NADA \n\n \n \n\n\n[23-01-2025 10:20]\nAutor tecnomulti\nDescrição [ec3ac8cc-b2d8e96f-6792421b98dab2.18335093] [https://oswintech.ddns.net/front/document.send.php?docid=15&#38;itemtype=Ticket&#38;items_id=55]\nData de abertura 23-01-2025 10:20\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[23-01-2025 10:06]\nAutor Alexsandro Cruz\nDescrição Bom dia, Ana.\n\nPor gentileza poderia me mandar a print do erro!\nData de abertura 23-01-2025 10:06\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-55/add_followup.1737638437.1498628031@oswintech.ddns.net','','mailing','add_followup'),
(316,'Ticket',55,4,2,1,6,'2025-01-23 13:39:21','2025-01-28 18:37:33',NULL,'[GLPI #0000055] Novo acompanhamento SAP COM PROBLEMA ','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000055] Novo acompanhamento SAP COM PROBLEMA &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_55\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_55&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:SAP COM PROBLEMA  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:23-01-2025 10:02 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- anacristina.araujo@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;SAP COM PROBLEMA &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;anacristina.araujo@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83 996110690&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;SEM ACESSO AO SAP - JÁ LIMPEI CACHE - REINICIEI E NADA &#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [23-01-2025 10:39]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Realizado a limpeza de senha do citrix do navegador para incluir a nova senha. Após processo, foi realizado teste de acesso e OK.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;23-01-2025 10:39&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [23-01-2025 10:20]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;&#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=15&#38;amp;itemtype=Ticket&#38;amp;items_id=55\" target=\"_blank\"&#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-6792421b98dab2.18335093\" width=\"813\" src=\"/front/document.send.php?docid=15&#38;amp;itemtype=Ticket&#38;amp;items_id=55\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;23-01-2025 10:20&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [23-01-2025 10:06]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, Ana.&#60;/p&#62;\r\n&#60;p&#62;Por gentileza poderia me mandar a print do erro!&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;23-01-2025 10:06&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 3&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_55 \n\n Chamado: Descrição\n\n Título : SAP COM PROBLEMA \n Requerentes :  tecnomulti  \n Data de abertura : 23-01-2025 10:02\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - anacristina.araujo@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : SAP COM PROBLEMA \n2) E-MAIL : anacristina.araujo@tecnomulti.com\n3) TELEFONE : 83 996110690\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nSEM ACESSO AO SAP - JÁ LIMPEI CACHE - REINICIEI E NADA \n\n \n \n\n\n[23-01-2025 10:39]\nAutor Alexsandro Cruz\nDescrição Realizado a limpeza de senha do citrix do navegador para incluir a nova senha. Após processo, foi realizado teste de acesso e OK.\nData de abertura 23-01-2025 10:39\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[23-01-2025 10:20]\nAutor tecnomulti\nDescrição [ec3ac8cc-b2d8e96f-6792421b98dab2.18335093] [https://oswintech.ddns.net/front/document.send.php?docid=15&#38;itemtype=Ticket&#38;items_id=55]\nData de abertura 23-01-2025 10:20\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[23-01-2025 10:06]\nAutor Alexsandro Cruz\nDescrição Bom dia, Ana.\n\nPor gentileza poderia me mandar a print do erro!\nData de abertura 23-01-2025 10:06\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-55/add_followup.1737639561.1395318280@oswintech.ddns.net','','mailing','add_followup'),
(317,'Ticket',55,4,2,1,6,'2025-01-23 13:39:21','2025-01-28 18:37:33',NULL,'[GLPI #0000055] Novo acompanhamento SAP COM PROBLEMA ','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000055] Novo acompanhamento SAP COM PROBLEMA &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_55\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_55&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:SAP COM PROBLEMA  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:23-01-2025 10:02 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- anacristina.araujo@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;SAP COM PROBLEMA &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;anacristina.araujo@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83 996110690&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;SEM ACESSO AO SAP - JÁ LIMPEI CACHE - REINICIEI E NADA &#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [23-01-2025 10:39]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Realizado a limpeza de senha do citrix do navegador para incluir a nova senha. Após processo, foi realizado teste de acesso e OK.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;23-01-2025 10:39&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [23-01-2025 10:20]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;&#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=15&#38;amp;itemtype=Ticket&#38;amp;items_id=55\" target=\"_blank\"&#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-6792421b98dab2.18335093\" width=\"813\" src=\"/front/document.send.php?docid=15&#38;amp;itemtype=Ticket&#38;amp;items_id=55\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;23-01-2025 10:20&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [23-01-2025 10:06]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, Ana.&#60;/p&#62;\r\n&#60;p&#62;Por gentileza poderia me mandar a print do erro!&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;23-01-2025 10:06&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 3&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_55 \n\n Chamado: Descrição\n\n Título : SAP COM PROBLEMA \n Requerentes :  tecnomulti  \n Data de abertura : 23-01-2025 10:02\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - anacristina.araujo@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : SAP COM PROBLEMA \n2) E-MAIL : anacristina.araujo@tecnomulti.com\n3) TELEFONE : 83 996110690\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nSEM ACESSO AO SAP - JÁ LIMPEI CACHE - REINICIEI E NADA \n\n \n \n\n\n[23-01-2025 10:39]\nAutor Alexsandro Cruz\nDescrição Realizado a limpeza de senha do citrix do navegador para incluir a nova senha. Após processo, foi realizado teste de acesso e OK.\nData de abertura 23-01-2025 10:39\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[23-01-2025 10:20]\nAutor tecnomulti\nDescrição [ec3ac8cc-b2d8e96f-6792421b98dab2.18335093] [https://oswintech.ddns.net/front/document.send.php?docid=15&#38;itemtype=Ticket&#38;items_id=55]\nData de abertura 23-01-2025 10:20\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[23-01-2025 10:06]\nAutor Alexsandro Cruz\nDescrição Bom dia, Ana.\n\nPor gentileza poderia me mandar a print do erro!\nData de abertura 23-01-2025 10:06\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-55/add_followup.1737639561.1097796374@oswintech.ddns.net','','mailing','add_followup'),
(318,'Ticket',55,4,2,1,6,'2025-01-23 13:39:28','2025-01-28 18:37:33',NULL,'[GLPI #0000055] Encerramento do chamado SAP COM PROBLEMA ','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000055] Encerramento do chamado SAP COM PROBLEMA &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_55\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_55&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:SAP COM PROBLEMA  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:23-01-2025 10:02 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:23-01-2025 10:39 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- anacristina.araujo@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;SAP COM PROBLEMA &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;anacristina.araujo@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83 996110690&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;SEM ACESSO AO SAP - JÁ LIMPEI CACHE - REINICIEI E NADA &#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 23-01-2025 10:39&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [23-01-2025 10:39]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Realizado a limpeza de senha do citrix do navegador para incluir a nova senha. Após processo, foi realizado teste de acesso e OK.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;23-01-2025 10:39&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [23-01-2025 10:20]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;&#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=15&#38;amp;itemtype=Ticket&#38;amp;items_id=55\" target=\"_blank\"&#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-6792421b98dab2.18335093\" width=\"813\" src=\"/front/document.send.php?docid=15&#38;amp;itemtype=Ticket&#38;amp;items_id=55\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;23-01-2025 10:20&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [23-01-2025 10:06]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, Ana.&#60;/p&#62;\r\n&#60;p&#62;Por gentileza poderia me mandar a print do erro!&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;23-01-2025 10:06&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 3&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_55 \n\n Chamado: Descrição\n\n Título : SAP COM PROBLEMA \n Requerentes :  tecnomulti  \n Data de abertura : 23-01-2025 10:02\n Data de fechamento : 23-01-2025 10:39\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - anacristina.araujo@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : SAP COM PROBLEMA \n2) E-MAIL : anacristina.araujo@tecnomulti.com\n3) TELEFONE : 83 996110690\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nSEM ACESSO AO SAP - JÁ LIMPEI CACHE - REINICIEI E NADA \n\n \n \n\n Data da solução : 23-01-2025 10:39\n Tipo de solução : \n Solução : \n \n\n\n[23-01-2025 10:39]\nAutor Alexsandro Cruz\nDescrição Realizado a limpeza de senha do citrix do navegador para incluir a nova senha. Após processo, foi realizado teste de acesso e OK.\nData de abertura 23-01-2025 10:39\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[23-01-2025 10:20]\nAutor tecnomulti\nDescrição [ec3ac8cc-b2d8e96f-6792421b98dab2.18335093] [https://oswintech.ddns.net/front/document.send.php?docid=15&#38;itemtype=Ticket&#38;items_id=55]\nData de abertura 23-01-2025 10:20\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[23-01-2025 10:06]\nAutor Alexsandro Cruz\nDescrição Bom dia, Ana.\n\nPor gentileza poderia me mandar a print do erro!\nData de abertura 23-01-2025 10:06\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-55/closed.1737639568.574231038@oswintech.ddns.net','','mailing','closed'),
(319,'Ticket',55,4,2,1,6,'2025-01-23 13:39:28','2025-01-28 18:37:33',NULL,'[GLPI #0000055] Encerramento do chamado SAP COM PROBLEMA ','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000055] Encerramento do chamado SAP COM PROBLEMA &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_55\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_55&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:SAP COM PROBLEMA  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:23-01-2025 10:02 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:23-01-2025 10:39 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- anacristina.araujo@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;SAP COM PROBLEMA &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;anacristina.araujo@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83 996110690&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;SEM ACESSO AO SAP - JÁ LIMPEI CACHE - REINICIEI E NADA &#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 23-01-2025 10:39&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [23-01-2025 10:39]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Realizado a limpeza de senha do citrix do navegador para incluir a nova senha. Após processo, foi realizado teste de acesso e OK.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;23-01-2025 10:39&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [23-01-2025 10:20]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;&#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=15&#38;amp;itemtype=Ticket&#38;amp;items_id=55\" target=\"_blank\"&#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-6792421b98dab2.18335093\" width=\"813\" src=\"/front/document.send.php?docid=15&#38;amp;itemtype=Ticket&#38;amp;items_id=55\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;23-01-2025 10:20&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [23-01-2025 10:06]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, Ana.&#60;/p&#62;\r\n&#60;p&#62;Por gentileza poderia me mandar a print do erro!&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;23-01-2025 10:06&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 3&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_55 \n\n Chamado: Descrição\n\n Título : SAP COM PROBLEMA \n Requerentes :  tecnomulti  \n Data de abertura : 23-01-2025 10:02\n Data de fechamento : 23-01-2025 10:39\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - anacristina.araujo@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : SAP COM PROBLEMA \n2) E-MAIL : anacristina.araujo@tecnomulti.com\n3) TELEFONE : 83 996110690\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nSEM ACESSO AO SAP - JÁ LIMPEI CACHE - REINICIEI E NADA \n\n \n \n\n Data da solução : 23-01-2025 10:39\n Tipo de solução : \n Solução : \n \n\n\n[23-01-2025 10:39]\nAutor Alexsandro Cruz\nDescrição Realizado a limpeza de senha do citrix do navegador para incluir a nova senha. Após processo, foi realizado teste de acesso e OK.\nData de abertura 23-01-2025 10:39\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[23-01-2025 10:20]\nAutor tecnomulti\nDescrição [ec3ac8cc-b2d8e96f-6792421b98dab2.18335093] [https://oswintech.ddns.net/front/document.send.php?docid=15&#38;itemtype=Ticket&#38;items_id=55]\nData de abertura 23-01-2025 10:20\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[23-01-2025 10:06]\nAutor Alexsandro Cruz\nDescrição Bom dia, Ana.\n\nPor gentileza poderia me mandar a print do erro!\nData de abertura 23-01-2025 10:06\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-55/closed.1737639568.1157745212@oswintech.ddns.net','','mailing','closed'),
(320,'Ticket',48,4,2,1,6,'2025-01-24 11:59:34','2025-01-28 18:37:33',NULL,'[GLPI #0000048] Novo acompanhamento CAIXA DE EMAIL CHEIA ','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000048] Novo acompanhamento CAIXA DE EMAIL CHEIA &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_48\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_48&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:CAIXA DE EMAIL CHEIA  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:20-01-2025 11:05 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- graciane.coelho@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CAIXA DE EMAIL CHEIA &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;graciane.coelho@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81986981633&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;&#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=10&#38;amp;itemtype=Ticket&#38;amp;items_id=48\" target=\"_blank\"&#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-678e5833761ee6.52395438\" width=\"1366\" src=\"/front/document.send.php?docid=10&#38;amp;itemtype=Ticket&#38;amp;items_id=48\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [24-01-2025 08:59]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Chamado encerrado por falta de comunicação.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;24-01-2025 08:59&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [20-01-2025 11:35]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Olá, Bom dia!&#60;/p&#62;\r\n&#60;p&#62;Uma dica de quando receber esses e-mail é comunicarmos e não clicar em nada pois pode ser spamm. Vocês está com problema de envio ou recebimento?&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;20-01-2025 11:35&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_48 \n\n Chamado: Descrição\n\n Título : CAIXA DE EMAIL CHEIA \n Requerentes :  tecnomulti  \n Data de abertura : 20-01-2025 11:05\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - graciane.coelho@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CAIXA DE EMAIL CHEIA \n2) E-MAIL : graciane.coelho@tecnomulti.com\n3) TELEFONE : 81986981633\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \n[ec3ac8cc-b2d8e96f-678e5833761ee6.52395438] [https://oswintech.ddns.net/front/document.send.php?docid=10&#38;itemtype=Ticket&#38;items_id=48]\n \n\n\n[24-01-2025 08:59]\nAutor Alexsandro Cruz\nDescrição Chamado encerrado por falta de comunicação.\nData de abertura 24-01-2025 08:59\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[20-01-2025 11:35]\nAutor Alexsandro Cruz\nDescrição Olá, Bom dia!\n\nUma dica de quando receber esses e-mail é comunicarmos e não clicar em nada pois pode ser spamm. Vocês está com problema de envio ou recebimento?\nData de abertura 20-01-2025 11:35\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-48/add_followup.1737719975.1309038434@oswintech.ddns.net','','mailing','add_followup'),
(321,'Ticket',48,4,2,1,6,'2025-01-24 11:59:34','2025-01-28 18:37:33',NULL,'[GLPI #0000048] Novo acompanhamento CAIXA DE EMAIL CHEIA ','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000048] Novo acompanhamento CAIXA DE EMAIL CHEIA &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_48\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_48&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:CAIXA DE EMAIL CHEIA  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:20-01-2025 11:05 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- graciane.coelho@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CAIXA DE EMAIL CHEIA &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;graciane.coelho@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81986981633&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;&#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=10&#38;amp;itemtype=Ticket&#38;amp;items_id=48\" target=\"_blank\"&#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-678e5833761ee6.52395438\" width=\"1366\" src=\"/front/document.send.php?docid=10&#38;amp;itemtype=Ticket&#38;amp;items_id=48\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [24-01-2025 08:59]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Chamado encerrado por falta de comunicação.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;24-01-2025 08:59&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [20-01-2025 11:35]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Olá, Bom dia!&#60;/p&#62;\r\n&#60;p&#62;Uma dica de quando receber esses e-mail é comunicarmos e não clicar em nada pois pode ser spamm. Vocês está com problema de envio ou recebimento?&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;20-01-2025 11:35&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_48 \n\n Chamado: Descrição\n\n Título : CAIXA DE EMAIL CHEIA \n Requerentes :  tecnomulti  \n Data de abertura : 20-01-2025 11:05\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - graciane.coelho@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CAIXA DE EMAIL CHEIA \n2) E-MAIL : graciane.coelho@tecnomulti.com\n3) TELEFONE : 81986981633\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \n[ec3ac8cc-b2d8e96f-678e5833761ee6.52395438] [https://oswintech.ddns.net/front/document.send.php?docid=10&#38;itemtype=Ticket&#38;items_id=48]\n \n\n\n[24-01-2025 08:59]\nAutor Alexsandro Cruz\nDescrição Chamado encerrado por falta de comunicação.\nData de abertura 24-01-2025 08:59\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[20-01-2025 11:35]\nAutor Alexsandro Cruz\nDescrição Olá, Bom dia!\n\nUma dica de quando receber esses e-mail é comunicarmos e não clicar em nada pois pode ser spamm. Vocês está com problema de envio ou recebimento?\nData de abertura 20-01-2025 11:35\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-48/add_followup.1737719975.1061392940@oswintech.ddns.net','','mailing','add_followup'),
(322,'Ticket',48,4,2,1,6,'2025-01-24 11:59:40','2025-01-28 18:37:33',NULL,'[GLPI #0000048] Encerramento do chamado CAIXA DE EMAIL CHEIA ','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000048] Encerramento do chamado CAIXA DE EMAIL CHEIA &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_48\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_48&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:CAIXA DE EMAIL CHEIA  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:20-01-2025 11:05 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:24-01-2025 08:59 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- graciane.coelho@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CAIXA DE EMAIL CHEIA &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;graciane.coelho@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81986981633&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;&#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=10&#38;amp;itemtype=Ticket&#38;amp;items_id=48\" target=\"_blank\"&#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-678e5833761ee6.52395438\" width=\"1366\" src=\"/front/document.send.php?docid=10&#38;amp;itemtype=Ticket&#38;amp;items_id=48\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 24-01-2025 08:59&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [24-01-2025 08:59]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Chamado encerrado por falta de comunicação.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;24-01-2025 08:59&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [20-01-2025 11:35]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Olá, Bom dia!&#60;/p&#62;\r\n&#60;p&#62;Uma dica de quando receber esses e-mail é comunicarmos e não clicar em nada pois pode ser spamm. Vocês está com problema de envio ou recebimento?&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;20-01-2025 11:35&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_48 \n\n Chamado: Descrição\n\n Título : CAIXA DE EMAIL CHEIA \n Requerentes :  tecnomulti  \n Data de abertura : 20-01-2025 11:05\n Data de fechamento : 24-01-2025 08:59\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - graciane.coelho@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CAIXA DE EMAIL CHEIA \n2) E-MAIL : graciane.coelho@tecnomulti.com\n3) TELEFONE : 81986981633\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \n[ec3ac8cc-b2d8e96f-678e5833761ee6.52395438] [https://oswintech.ddns.net/front/document.send.php?docid=10&#38;itemtype=Ticket&#38;items_id=48]\n \n\n Data da solução : 24-01-2025 08:59\n Tipo de solução : \n Solução : \n \n\n\n[24-01-2025 08:59]\nAutor Alexsandro Cruz\nDescrição Chamado encerrado por falta de comunicação.\nData de abertura 24-01-2025 08:59\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[20-01-2025 11:35]\nAutor Alexsandro Cruz\nDescrição Olá, Bom dia!\n\nUma dica de quando receber esses e-mail é comunicarmos e não clicar em nada pois pode ser spamm. Vocês está com problema de envio ou recebimento?\nData de abertura 20-01-2025 11:35\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-48/closed.1737719980.986655848@oswintech.ddns.net','','mailing','closed'),
(323,'Ticket',48,4,2,1,6,'2025-01-24 11:59:40','2025-01-29 03:07:22',NULL,'[GLPI #0000048] Encerramento do chamado CAIXA DE EMAIL CHEIA ','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000048] Encerramento do chamado CAIXA DE EMAIL CHEIA &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_48\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_48&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:CAIXA DE EMAIL CHEIA  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:20-01-2025 11:05 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:24-01-2025 08:59 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- graciane.coelho@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CAIXA DE EMAIL CHEIA &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;graciane.coelho@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81986981633&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;&#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=10&#38;amp;itemtype=Ticket&#38;amp;items_id=48\" target=\"_blank\"&#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-678e5833761ee6.52395438\" width=\"1366\" src=\"/front/document.send.php?docid=10&#38;amp;itemtype=Ticket&#38;amp;items_id=48\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 24-01-2025 08:59&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [24-01-2025 08:59]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Chamado encerrado por falta de comunicação.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;24-01-2025 08:59&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [20-01-2025 11:35]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Olá, Bom dia!&#60;/p&#62;\r\n&#60;p&#62;Uma dica de quando receber esses e-mail é comunicarmos e não clicar em nada pois pode ser spamm. Vocês está com problema de envio ou recebimento?&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;20-01-2025 11:35&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_48 \n\n Chamado: Descrição\n\n Título : CAIXA DE EMAIL CHEIA \n Requerentes :  tecnomulti  \n Data de abertura : 20-01-2025 11:05\n Data de fechamento : 24-01-2025 08:59\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - graciane.coelho@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CAIXA DE EMAIL CHEIA \n2) E-MAIL : graciane.coelho@tecnomulti.com\n3) TELEFONE : 81986981633\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \n[ec3ac8cc-b2d8e96f-678e5833761ee6.52395438] [https://oswintech.ddns.net/front/document.send.php?docid=10&#38;itemtype=Ticket&#38;items_id=48]\n \n\n Data da solução : 24-01-2025 08:59\n Tipo de solução : \n Solução : \n \n\n\n[24-01-2025 08:59]\nAutor Alexsandro Cruz\nDescrição Chamado encerrado por falta de comunicação.\nData de abertura 24-01-2025 08:59\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[20-01-2025 11:35]\nAutor Alexsandro Cruz\nDescrição Olá, Bom dia!\n\nUma dica de quando receber esses e-mail é comunicarmos e não clicar em nada pois pode ser spamm. Vocês está com problema de envio ou recebimento?\nData de abertura 20-01-2025 11:35\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-48/closed.1737719980.609440212@oswintech.ddns.net','','mailing','closed'),
(324,'Ticket',53,4,2,1,6,'2025-01-24 12:00:17','2025-01-29 03:07:22',NULL,'[GLPI #0000053] Novo acompanhamento Caixa de Email Cheia','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000053] Novo acompanhamento Caixa de Email Cheia&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_53\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_53&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Caixa de Email Cheia &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:22-01-2025 08:00 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- vinicius.silveira@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Caixa de Email Cheia&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;vinicius.silveira@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84 99104-6460&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Caixa de E-mail cheia&#60;br /&#62;&#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=14&#38;amp;itemtype=Ticket&#38;amp;items_id=53\" target=\"_blank\"&#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-6790cfd5928179.61613302\" width=\"1069\" src=\"/front/document.send.php?docid=14&#38;amp;itemtype=Ticket&#38;amp;items_id=53\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [24-01-2025 09:00]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Chamado encerrado por falta de comunicação.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;24-01-2025 09:00&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [22-01-2025 13:58]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde,&#60;/p&#62;\r\n&#60;p&#62;Favor não clicar em nada quando receber esses e-mails de capacidade de caixa de entrada. Sempre entrar em contato quando receber. &#60;/p&#62;\r\n&#60;p&#62;Favor, entrar em contato via whatsapp para verificar configuração do outlook.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;22-01-2025 13:58&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_53 \n\n Chamado: Descrição\n\n Título : Caixa de Email Cheia\n Requerentes :  tecnomulti  \n Data de abertura : 22-01-2025 08:00\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - vinicius.silveira@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Caixa de Email Cheia\n2) E-MAIL : vinicius.silveira@tecnomulti.com\n3) TELEFONE : 84 99104-6460\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nCaixa de E-mail cheia\n[ec3ac8cc-b2d8e96f-6790cfd5928179.61613302] [https://oswintech.ddns.net/front/document.send.php?docid=14&#38;itemtype=Ticket&#38;items_id=53]\n \n\n\n[24-01-2025 09:00]\nAutor Alexsandro Cruz\nDescrição Chamado encerrado por falta de comunicação.\nData de abertura 24-01-2025 09:00\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[22-01-2025 13:58]\nAutor Alexsandro Cruz\nDescrição Boa tarde,\n\nFavor não clicar em nada quando receber esses e-mails de capacidade de caixa de entrada. Sempre entrar em contato quando receber. \n\nFavor, entrar em contato via whatsapp para verificar configuração do outlook.\nData de abertura 22-01-2025 13:58\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-53/add_followup.1737720017.590175305@oswintech.ddns.net','','mailing','add_followup'),
(325,'Ticket',53,4,2,1,6,'2025-01-24 12:00:17','2025-01-29 03:07:22',NULL,'[GLPI #0000053] Novo acompanhamento Caixa de Email Cheia','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000053] Novo acompanhamento Caixa de Email Cheia&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_53\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_53&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Caixa de Email Cheia &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:22-01-2025 08:00 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- vinicius.silveira@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Caixa de Email Cheia&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;vinicius.silveira@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84 99104-6460&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Caixa de E-mail cheia&#60;br /&#62;&#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=14&#38;amp;itemtype=Ticket&#38;amp;items_id=53\" target=\"_blank\"&#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-6790cfd5928179.61613302\" width=\"1069\" src=\"/front/document.send.php?docid=14&#38;amp;itemtype=Ticket&#38;amp;items_id=53\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [24-01-2025 09:00]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Chamado encerrado por falta de comunicação.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;24-01-2025 09:00&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [22-01-2025 13:58]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde,&#60;/p&#62;\r\n&#60;p&#62;Favor não clicar em nada quando receber esses e-mails de capacidade de caixa de entrada. Sempre entrar em contato quando receber. &#60;/p&#62;\r\n&#60;p&#62;Favor, entrar em contato via whatsapp para verificar configuração do outlook.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;22-01-2025 13:58&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_53 \n\n Chamado: Descrição\n\n Título : Caixa de Email Cheia\n Requerentes :  tecnomulti  \n Data de abertura : 22-01-2025 08:00\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - vinicius.silveira@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Caixa de Email Cheia\n2) E-MAIL : vinicius.silveira@tecnomulti.com\n3) TELEFONE : 84 99104-6460\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nCaixa de E-mail cheia\n[ec3ac8cc-b2d8e96f-6790cfd5928179.61613302] [https://oswintech.ddns.net/front/document.send.php?docid=14&#38;itemtype=Ticket&#38;items_id=53]\n \n\n\n[24-01-2025 09:00]\nAutor Alexsandro Cruz\nDescrição Chamado encerrado por falta de comunicação.\nData de abertura 24-01-2025 09:00\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[22-01-2025 13:58]\nAutor Alexsandro Cruz\nDescrição Boa tarde,\n\nFavor não clicar em nada quando receber esses e-mails de capacidade de caixa de entrada. Sempre entrar em contato quando receber. \n\nFavor, entrar em contato via whatsapp para verificar configuração do outlook.\nData de abertura 22-01-2025 13:58\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-53/add_followup.1737720018.1934264101@oswintech.ddns.net','','mailing','add_followup'),
(326,'Ticket',53,4,2,1,6,'2025-01-24 12:00:22','2025-01-29 03:07:22',NULL,'[GLPI #0000053] Encerramento do chamado Caixa de Email Cheia','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000053] Encerramento do chamado Caixa de Email Cheia&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_53\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_53&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Caixa de Email Cheia &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:22-01-2025 08:00 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:24-01-2025 09:00 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- vinicius.silveira@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Caixa de Email Cheia&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;vinicius.silveira@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84 99104-6460&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Caixa de E-mail cheia&#60;br /&#62;&#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=14&#38;amp;itemtype=Ticket&#38;amp;items_id=53\" target=\"_blank\"&#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-6790cfd5928179.61613302\" width=\"1069\" src=\"/front/document.send.php?docid=14&#38;amp;itemtype=Ticket&#38;amp;items_id=53\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 24-01-2025 09:00&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [24-01-2025 09:00]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Chamado encerrado por falta de comunicação.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;24-01-2025 09:00&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [22-01-2025 13:58]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde,&#60;/p&#62;\r\n&#60;p&#62;Favor não clicar em nada quando receber esses e-mails de capacidade de caixa de entrada. Sempre entrar em contato quando receber. &#60;/p&#62;\r\n&#60;p&#62;Favor, entrar em contato via whatsapp para verificar configuração do outlook.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;22-01-2025 13:58&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_53 \n\n Chamado: Descrição\n\n Título : Caixa de Email Cheia\n Requerentes :  tecnomulti  \n Data de abertura : 22-01-2025 08:00\n Data de fechamento : 24-01-2025 09:00\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - vinicius.silveira@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Caixa de Email Cheia\n2) E-MAIL : vinicius.silveira@tecnomulti.com\n3) TELEFONE : 84 99104-6460\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nCaixa de E-mail cheia\n[ec3ac8cc-b2d8e96f-6790cfd5928179.61613302] [https://oswintech.ddns.net/front/document.send.php?docid=14&#38;itemtype=Ticket&#38;items_id=53]\n \n\n Data da solução : 24-01-2025 09:00\n Tipo de solução : \n Solução : \n \n\n\n[24-01-2025 09:00]\nAutor Alexsandro Cruz\nDescrição Chamado encerrado por falta de comunicação.\nData de abertura 24-01-2025 09:00\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[22-01-2025 13:58]\nAutor Alexsandro Cruz\nDescrição Boa tarde,\n\nFavor não clicar em nada quando receber esses e-mails de capacidade de caixa de entrada. Sempre entrar em contato quando receber. \n\nFavor, entrar em contato via whatsapp para verificar configuração do outlook.\nData de abertura 22-01-2025 13:58\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-53/closed.1737720022.1823286231@oswintech.ddns.net','','mailing','closed'),
(327,'Ticket',53,4,2,1,6,'2025-01-24 12:00:22','2025-01-29 03:07:22',NULL,'[GLPI #0000053] Encerramento do chamado Caixa de Email Cheia','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000053] Encerramento do chamado Caixa de Email Cheia&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_53\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_53&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Caixa de Email Cheia &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:22-01-2025 08:00 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:24-01-2025 09:00 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- vinicius.silveira@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Caixa de Email Cheia&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;vinicius.silveira@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84 99104-6460&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Caixa de E-mail cheia&#60;br /&#62;&#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=14&#38;amp;itemtype=Ticket&#38;amp;items_id=53\" target=\"_blank\"&#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-6790cfd5928179.61613302\" width=\"1069\" src=\"/front/document.send.php?docid=14&#38;amp;itemtype=Ticket&#38;amp;items_id=53\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 24-01-2025 09:00&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [24-01-2025 09:00]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Chamado encerrado por falta de comunicação.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;24-01-2025 09:00&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [22-01-2025 13:58]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde,&#60;/p&#62;\r\n&#60;p&#62;Favor não clicar em nada quando receber esses e-mails de capacidade de caixa de entrada. Sempre entrar em contato quando receber. &#60;/p&#62;\r\n&#60;p&#62;Favor, entrar em contato via whatsapp para verificar configuração do outlook.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;22-01-2025 13:58&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_53 \n\n Chamado: Descrição\n\n Título : Caixa de Email Cheia\n Requerentes :  tecnomulti  \n Data de abertura : 22-01-2025 08:00\n Data de fechamento : 24-01-2025 09:00\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - vinicius.silveira@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Caixa de Email Cheia\n2) E-MAIL : vinicius.silveira@tecnomulti.com\n3) TELEFONE : 84 99104-6460\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nCaixa de E-mail cheia\n[ec3ac8cc-b2d8e96f-6790cfd5928179.61613302] [https://oswintech.ddns.net/front/document.send.php?docid=14&#38;itemtype=Ticket&#38;items_id=53]\n \n\n Data da solução : 24-01-2025 09:00\n Tipo de solução : \n Solução : \n \n\n\n[24-01-2025 09:00]\nAutor Alexsandro Cruz\nDescrição Chamado encerrado por falta de comunicação.\nData de abertura 24-01-2025 09:00\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[22-01-2025 13:58]\nAutor Alexsandro Cruz\nDescrição Boa tarde,\n\nFavor não clicar em nada quando receber esses e-mails de capacidade de caixa de entrada. Sempre entrar em contato quando receber. \n\nFavor, entrar em contato via whatsapp para verificar configuração do outlook.\nData de abertura 22-01-2025 13:58\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-53/closed.1737720022.1105754279@oswintech.ddns.net','','mailing','closed'),
(328,'PluginFormcreatorFormAnswer',20,29,2,1,6,'2025-01-27 18:40:14','2025-01-29 03:07:22',NULL,'[GLPI] Sua requisição foi salva','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI] Sua requisi&#38;ccedil;&#38;atilde;o foi salva&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;p&#62;Olá,&#60;br /&#62;Sua requisição do GLPI foi salva com sucesso com o número 20 e transmitido para a equipe de helpdesk.&#60;br /&#62;Você pode ver suas respostas no seguinte link:&#60;br /&#62;https://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=20&#60;/p&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;','Olá,\nSua requisição do GLPI foi salva com sucesso com o número 20 e transmitido para a equipe de helpdesk.\nVocê pode ver suas respostas no seguinte link:\nhttps://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=20\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-PluginFormcreatorFormAnswer-20/plugin_formcreator_form_created.1738003214.71800071@oswintech.ddns.net','','mailing','plugin_formcreator_form_created'),
(329,'Ticket',56,4,2,1,0,'2025-01-27 18:40:14','2025-01-27 18:40:14','2025-01-27 18:40:15','[GLPI #0000056] Novo chamado CAIXA DE EMAIL CHEIA ',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_56 \n\n Chamado: Descrição\n\n Título : CAIXA DE EMAIL CHEIA \n Requerentes :  tecnomulti  \n Data de abertura : 27-01-2025 15:40\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CAIXA DE EMAIL CHEIA \n2) E-MAIL : graciane.coelho@tecnomulti.com\n3) TELEFONE : 81986981633\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nCAIXA DE EMAIL CHEIAS\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(330,'Ticket',56,4,2,1,0,'2025-01-27 18:40:14','2025-01-27 18:40:14','2025-01-30 15:37:33','[GLPI #0000056] Novo chamado CAIXA DE EMAIL CHEIA ',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_56 \n\n Chamado: Descrição\n\n Título : CAIXA DE EMAIL CHEIA \n Requerentes :  tecnomulti  \n Data de abertura : 27-01-2025 15:40\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CAIXA DE EMAIL CHEIA \n2) E-MAIL : graciane.coelho@tecnomulti.com\n3) TELEFONE : 81986981633\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nCAIXA DE EMAIL CHEIAS\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(331,'Ticket',56,4,2,1,0,'2025-01-27 18:40:14','2025-01-27 18:40:14','2025-01-30 15:49:47','[GLPI #0000056] Novo chamado CAIXA DE EMAIL CHEIA ',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_56 \n\n Chamado: Descrição\n\n Título : CAIXA DE EMAIL CHEIA \n Requerentes :  tecnomulti  \n Data de abertura : 27-01-2025 15:40\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CAIXA DE EMAIL CHEIA \n2) E-MAIL : graciane.coelho@tecnomulti.com\n3) TELEFONE : 81986981633\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nCAIXA DE EMAIL CHEIAS\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(332,'Ticket',56,4,2,1,0,'2025-01-27 18:40:14','2025-01-27 18:40:14','2025-01-27 21:30:17','[GLPI #0000056] Novo chamado CAIXA DE EMAIL CHEIA ',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_56 \n\n Chamado: Descrição\n\n Título : CAIXA DE EMAIL CHEIA \n Requerentes :  tecnomulti  \n Data de abertura : 27-01-2025 15:40\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CAIXA DE EMAIL CHEIA \n2) E-MAIL : graciane.coelho@tecnomulti.com\n3) TELEFONE : 81986981633\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nCAIXA DE EMAIL CHEIAS\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(333,'Ticket',56,4,2,1,6,'2025-01-27 18:40:14','2025-01-29 03:17:28',NULL,'[GLPI #0000056] Novo chamado CAIXA DE EMAIL CHEIA ','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000056] Novo chamado CAIXA DE EMAIL CHEIA &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_56\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_56&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:CAIXA DE EMAIL CHEIA  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:27-01-2025 15:40 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CAIXA DE EMAIL CHEIA &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;graciane.coelho@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81986981633&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;CAIXA DE EMAIL CHEIAS&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_56 \n\n Chamado: Descrição\n\n Título : CAIXA DE EMAIL CHEIA \n Requerentes :  tecnomulti  \n Data de abertura : 27-01-2025 15:40\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CAIXA DE EMAIL CHEIA \n2) E-MAIL : graciane.coelho@tecnomulti.com\n3) TELEFONE : 81986981633\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nCAIXA DE EMAIL CHEIAS\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-56/new@oswintech.ddns.net','','mailing','new'),
(334,'Ticket',56,4,2,1,6,'2025-01-27 18:40:14','2025-01-29 03:17:28',NULL,'[GLPI #0000056] Novo chamado CAIXA DE EMAIL CHEIA ','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000056] Novo chamado CAIXA DE EMAIL CHEIA &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_56\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_56&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:CAIXA DE EMAIL CHEIA  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:27-01-2025 15:40 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CAIXA DE EMAIL CHEIA &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;graciane.coelho@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81986981633&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;CAIXA DE EMAIL CHEIAS&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_56 \n\n Chamado: Descrição\n\n Título : CAIXA DE EMAIL CHEIA \n Requerentes :  tecnomulti  \n Data de abertura : 27-01-2025 15:40\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CAIXA DE EMAIL CHEIA \n2) E-MAIL : graciane.coelho@tecnomulti.com\n3) TELEFONE : 81986981633\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nCAIXA DE EMAIL CHEIAS\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-56/new@oswintech.ddns.net','','mailing','new'),
(335,'Ticket',56,4,2,1,6,'2025-01-27 18:40:14','2025-01-29 03:17:28',NULL,'[GLPI #0000056] Novo chamado CAIXA DE EMAIL CHEIA ','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000056] Novo chamado CAIXA DE EMAIL CHEIA &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_56\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_56&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:CAIXA DE EMAIL CHEIA  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:27-01-2025 15:40 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CAIXA DE EMAIL CHEIA &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;graciane.coelho@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81986981633&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;CAIXA DE EMAIL CHEIAS&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_56 \n\n Chamado: Descrição\n\n Título : CAIXA DE EMAIL CHEIA \n Requerentes :  tecnomulti  \n Data de abertura : 27-01-2025 15:40\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CAIXA DE EMAIL CHEIA \n2) E-MAIL : graciane.coelho@tecnomulti.com\n3) TELEFONE : 81986981633\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nCAIXA DE EMAIL CHEIAS\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-56/new@oswintech.ddns.net','','mailing','new'),
(336,'Ticket',56,4,2,1,6,'2025-01-27 18:40:14','2025-01-29 03:17:28',NULL,'[GLPI #0000056] Novo chamado CAIXA DE EMAIL CHEIA ','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000056] Novo chamado CAIXA DE EMAIL CHEIA &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_56\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_56&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:CAIXA DE EMAIL CHEIA  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:27-01-2025 15:40 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CAIXA DE EMAIL CHEIA &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;graciane.coelho@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81986981633&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;CAIXA DE EMAIL CHEIAS&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_56 \n\n Chamado: Descrição\n\n Título : CAIXA DE EMAIL CHEIA \n Requerentes :  tecnomulti  \n Data de abertura : 27-01-2025 15:40\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CAIXA DE EMAIL CHEIA \n2) E-MAIL : graciane.coelho@tecnomulti.com\n3) TELEFONE : 81986981633\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nCAIXA DE EMAIL CHEIAS\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-56/new@oswintech.ddns.net','','mailing','new'),
(337,'PluginFormcreatorFormAnswer',21,29,2,1,6,'2025-01-28 11:11:21','2025-01-29 11:48:07',NULL,'[GLPI] Sua requisição foi salva','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI] Sua requisi&#38;ccedil;&#38;atilde;o foi salva&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;p&#62;Olá,&#60;br /&#62;Sua requisição do GLPI foi salva com sucesso com o número 21 e transmitido para a equipe de helpdesk.&#60;br /&#62;Você pode ver suas respostas no seguinte link:&#60;br /&#62;https://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=21&#60;/p&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;','Olá,\nSua requisição do GLPI foi salva com sucesso com o número 21 e transmitido para a equipe de helpdesk.\nVocê pode ver suas respostas no seguinte link:\nhttps://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=21\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-PluginFormcreatorFormAnswer-21/plugin_formcreator_form_created.1738062681.542246757@oswintech.ddns.net','','mailing','plugin_formcreator_form_created'),
(338,'Ticket',57,4,2,1,0,'2025-01-28 11:11:21','2025-01-28 11:11:21','2025-01-28 12:05:07','[GLPI #0000057] Novo chamado CAIXA DE EMAIL CHEIA ',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_57 \n\n Chamado: Descrição\n\n Título : CAIXA DE EMAIL CHEIA \n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 08:11\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CAIXA DE EMAIL CHEIA \n2) E-MAIL : graciane.coelho@tecnomulti.com\n3) TELEFONE : 81986981633\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \ne-mail com problema \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(339,'Ticket',57,4,2,1,0,'2025-01-28 11:11:21','2025-01-28 11:11:21','2025-01-30 15:37:33','[GLPI #0000057] Novo chamado CAIXA DE EMAIL CHEIA ',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_57 \n\n Chamado: Descrição\n\n Título : CAIXA DE EMAIL CHEIA \n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 08:11\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CAIXA DE EMAIL CHEIA \n2) E-MAIL : graciane.coelho@tecnomulti.com\n3) TELEFONE : 81986981633\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \ne-mail com problema \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(340,'Ticket',57,4,2,1,0,'2025-01-28 11:11:21','2025-01-28 11:11:21','2025-01-30 15:49:47','[GLPI #0000057] Novo chamado CAIXA DE EMAIL CHEIA ',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_57 \n\n Chamado: Descrição\n\n Título : CAIXA DE EMAIL CHEIA \n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 08:11\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CAIXA DE EMAIL CHEIA \n2) E-MAIL : graciane.coelho@tecnomulti.com\n3) TELEFONE : 81986981633\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \ne-mail com problema \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(341,'Ticket',57,4,2,1,0,'2025-01-28 11:11:21','2025-01-28 11:11:21','2025-01-29 01:27:46','[GLPI #0000057] Novo chamado CAIXA DE EMAIL CHEIA ',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_57 \n\n Chamado: Descrição\n\n Título : CAIXA DE EMAIL CHEIA \n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 08:11\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CAIXA DE EMAIL CHEIA \n2) E-MAIL : graciane.coelho@tecnomulti.com\n3) TELEFONE : 81986981633\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \ne-mail com problema \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(342,'Ticket',57,4,2,1,6,'2025-01-28 11:11:21','2025-01-29 11:48:07',NULL,'[GLPI #0000057] Novo chamado CAIXA DE EMAIL CHEIA ','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000057] Novo chamado CAIXA DE EMAIL CHEIA &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_57\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_57&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:CAIXA DE EMAIL CHEIA  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 08:11 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CAIXA DE EMAIL CHEIA &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;graciane.coelho@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81986981633&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;e-mail com problema &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_57 \n\n Chamado: Descrição\n\n Título : CAIXA DE EMAIL CHEIA \n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 08:11\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CAIXA DE EMAIL CHEIA \n2) E-MAIL : graciane.coelho@tecnomulti.com\n3) TELEFONE : 81986981633\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \ne-mail com problema \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-57/new@oswintech.ddns.net','','mailing','new'),
(343,'Ticket',57,4,2,1,6,'2025-01-28 11:11:21','2025-01-29 11:48:07',NULL,'[GLPI #0000057] Novo chamado CAIXA DE EMAIL CHEIA ','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000057] Novo chamado CAIXA DE EMAIL CHEIA &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_57\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_57&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:CAIXA DE EMAIL CHEIA  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 08:11 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CAIXA DE EMAIL CHEIA &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;graciane.coelho@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81986981633&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;e-mail com problema &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_57 \n\n Chamado: Descrição\n\n Título : CAIXA DE EMAIL CHEIA \n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 08:11\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CAIXA DE EMAIL CHEIA \n2) E-MAIL : graciane.coelho@tecnomulti.com\n3) TELEFONE : 81986981633\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \ne-mail com problema \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-57/new@oswintech.ddns.net','','mailing','new'),
(344,'Ticket',57,4,2,1,6,'2025-01-28 11:11:21','2025-01-29 11:48:07',NULL,'[GLPI #0000057] Novo chamado CAIXA DE EMAIL CHEIA ','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000057] Novo chamado CAIXA DE EMAIL CHEIA &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_57\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_57&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:CAIXA DE EMAIL CHEIA  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 08:11 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CAIXA DE EMAIL CHEIA &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;graciane.coelho@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81986981633&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;e-mail com problema &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_57 \n\n Chamado: Descrição\n\n Título : CAIXA DE EMAIL CHEIA \n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 08:11\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CAIXA DE EMAIL CHEIA \n2) E-MAIL : graciane.coelho@tecnomulti.com\n3) TELEFONE : 81986981633\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \ne-mail com problema \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-57/new@oswintech.ddns.net','','mailing','new'),
(345,'Ticket',57,4,2,1,6,'2025-01-28 11:11:21','2025-01-30 18:00:50',NULL,'[GLPI #0000057] Novo chamado CAIXA DE EMAIL CHEIA ','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000057] Novo chamado CAIXA DE EMAIL CHEIA &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_57\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_57&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:CAIXA DE EMAIL CHEIA  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 08:11 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CAIXA DE EMAIL CHEIA &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;graciane.coelho@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81986981633&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;e-mail com problema &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_57 \n\n Chamado: Descrição\n\n Título : CAIXA DE EMAIL CHEIA \n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 08:11\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CAIXA DE EMAIL CHEIA \n2) E-MAIL : graciane.coelho@tecnomulti.com\n3) TELEFONE : 81986981633\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \ne-mail com problema \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-57/new@oswintech.ddns.net','','mailing','new'),
(346,'Ticket',56,4,2,1,6,'2025-01-28 11:17:26','2025-01-30 18:00:50',NULL,'[GLPI #0000056] Novo acompanhamento CAIXA DE EMAIL CHEIA ','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000056] Novo acompanhamento CAIXA DE EMAIL CHEIA &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_56\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_56&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:CAIXA DE EMAIL CHEIA  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:27-01-2025 15:40 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- graciane.coelho@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CAIXA DE EMAIL CHEIA &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;graciane.coelho@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81986981633&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;CAIXA DE EMAIL CHEIAS&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 08:17]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia!&#60;/p&#62;\r\n&#60;p&#62;Estarei verificando.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 08:17&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_56 \n\n Chamado: Descrição\n\n Título : CAIXA DE EMAIL CHEIA \n Requerentes :  tecnomulti  \n Data de abertura : 27-01-2025 15:40\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - graciane.coelho@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CAIXA DE EMAIL CHEIA \n2) E-MAIL : graciane.coelho@tecnomulti.com\n3) TELEFONE : 81986981633\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nCAIXA DE EMAIL CHEIAS\n \n\n\n[28-01-2025 08:17]\nAutor Alexsandro Cruz\nDescrição Bom dia!\n\nEstarei verificando.\nData de abertura 28-01-2025 08:17\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-56/add_followup.1738063046.1591140415@oswintech.ddns.net','','mailing','add_followup'),
(347,'Ticket',56,4,2,1,6,'2025-01-28 11:17:26','2025-01-30 18:00:50',NULL,'[GLPI #0000056] Novo acompanhamento CAIXA DE EMAIL CHEIA ','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000056] Novo acompanhamento CAIXA DE EMAIL CHEIA &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_56\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_56&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:CAIXA DE EMAIL CHEIA  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:27-01-2025 15:40 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- graciane.coelho@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CAIXA DE EMAIL CHEIA &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;graciane.coelho@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81986981633&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;CAIXA DE EMAIL CHEIAS&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 08:17]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia!&#60;/p&#62;\r\n&#60;p&#62;Estarei verificando.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 08:17&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_56 \n\n Chamado: Descrição\n\n Título : CAIXA DE EMAIL CHEIA \n Requerentes :  tecnomulti  \n Data de abertura : 27-01-2025 15:40\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - graciane.coelho@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CAIXA DE EMAIL CHEIA \n2) E-MAIL : graciane.coelho@tecnomulti.com\n3) TELEFONE : 81986981633\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nCAIXA DE EMAIL CHEIAS\n \n\n\n[28-01-2025 08:17]\nAutor Alexsandro Cruz\nDescrição Bom dia!\n\nEstarei verificando.\nData de abertura 28-01-2025 08:17\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-56/add_followup.1738063046.811139760@oswintech.ddns.net','','mailing','add_followup'),
(348,'Ticket',56,4,2,1,6,'2025-01-28 11:19:49','2025-01-30 18:00:50',NULL,'[GLPI #0000056] Novo acompanhamento CAIXA DE EMAIL CHEIA ','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000056] Novo acompanhamento CAIXA DE EMAIL CHEIA &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_56\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_56&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:CAIXA DE EMAIL CHEIA  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:27-01-2025 15:40 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- graciane.coelho@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CAIXA DE EMAIL CHEIA &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;graciane.coelho@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81986981633&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;CAIXA DE EMAIL CHEIAS&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 08:19]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Preciso acessar seu equipamento para verificar algumas configurações. Por favor, me passe o ID do anydesk.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 08:19&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 08:17]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia!&#60;/p&#62;\r\n&#60;p&#62;Estarei verificando.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 08:17&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_56 \n\n Chamado: Descrição\n\n Título : CAIXA DE EMAIL CHEIA \n Requerentes :  tecnomulti  \n Data de abertura : 27-01-2025 15:40\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - graciane.coelho@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CAIXA DE EMAIL CHEIA \n2) E-MAIL : graciane.coelho@tecnomulti.com\n3) TELEFONE : 81986981633\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nCAIXA DE EMAIL CHEIAS\n \n\n\n[28-01-2025 08:19]\nAutor Alexsandro Cruz\nDescrição Preciso acessar seu equipamento para verificar algumas configurações. Por favor, me passe o ID do anydesk.\nData de abertura 28-01-2025 08:19\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 08:17]\nAutor Alexsandro Cruz\nDescrição Bom dia!\n\nEstarei verificando.\nData de abertura 28-01-2025 08:17\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-56/add_followup.1738063189.398451710@oswintech.ddns.net','','mailing','add_followup'),
(349,'Ticket',56,4,2,1,6,'2025-01-28 11:19:49','2025-01-30 18:00:50',NULL,'[GLPI #0000056] Novo acompanhamento CAIXA DE EMAIL CHEIA ','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000056] Novo acompanhamento CAIXA DE EMAIL CHEIA &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_56\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_56&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:CAIXA DE EMAIL CHEIA  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:27-01-2025 15:40 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- graciane.coelho@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CAIXA DE EMAIL CHEIA &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;graciane.coelho@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81986981633&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;CAIXA DE EMAIL CHEIAS&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 08:19]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Preciso acessar seu equipamento para verificar algumas configurações. Por favor, me passe o ID do anydesk.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 08:19&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 08:17]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia!&#60;/p&#62;\r\n&#60;p&#62;Estarei verificando.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 08:17&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_56 \n\n Chamado: Descrição\n\n Título : CAIXA DE EMAIL CHEIA \n Requerentes :  tecnomulti  \n Data de abertura : 27-01-2025 15:40\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - graciane.coelho@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CAIXA DE EMAIL CHEIA \n2) E-MAIL : graciane.coelho@tecnomulti.com\n3) TELEFONE : 81986981633\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nCAIXA DE EMAIL CHEIAS\n \n\n\n[28-01-2025 08:19]\nAutor Alexsandro Cruz\nDescrição Preciso acessar seu equipamento para verificar algumas configurações. Por favor, me passe o ID do anydesk.\nData de abertura 28-01-2025 08:19\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 08:17]\nAutor Alexsandro Cruz\nDescrição Bom dia!\n\nEstarei verificando.\nData de abertura 28-01-2025 08:17\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-56/add_followup.1738063189.1535978038@oswintech.ddns.net','','mailing','add_followup'),
(350,'Ticket',57,4,2,1,6,'2025-01-28 11:41:16','2025-01-30 18:00:50',NULL,'[GLPI #0000057] Novo acompanhamento CAIXA DE EMAIL CHEIA ','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000057] Novo acompanhamento CAIXA DE EMAIL CHEIA &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_57\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_57&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:CAIXA DE EMAIL CHEIA  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 08:11 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- graciane.coelho@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CAIXA DE EMAIL CHEIA &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;graciane.coelho@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81986981633&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;e-mail com problema &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 08:41]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Chamado repetido.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 08:41&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_57 \n\n Chamado: Descrição\n\n Título : CAIXA DE EMAIL CHEIA \n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 08:11\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - graciane.coelho@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CAIXA DE EMAIL CHEIA \n2) E-MAIL : graciane.coelho@tecnomulti.com\n3) TELEFONE : 81986981633\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \ne-mail com problema \n \n\n\n[28-01-2025 08:41]\nAutor Alexsandro Cruz\nDescrição Chamado repetido.\nData de abertura 28-01-2025 08:41\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-57/add_followup.1738064476.1073763942@oswintech.ddns.net','','mailing','add_followup'),
(351,'Ticket',57,4,2,1,6,'2025-01-28 11:41:16','2025-01-30 18:00:50',NULL,'[GLPI #0000057] Novo acompanhamento CAIXA DE EMAIL CHEIA ','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000057] Novo acompanhamento CAIXA DE EMAIL CHEIA &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_57\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_57&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:CAIXA DE EMAIL CHEIA  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 08:11 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- graciane.coelho@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CAIXA DE EMAIL CHEIA &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;graciane.coelho@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81986981633&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;e-mail com problema &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 08:41]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Chamado repetido.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 08:41&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_57 \n\n Chamado: Descrição\n\n Título : CAIXA DE EMAIL CHEIA \n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 08:11\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - graciane.coelho@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CAIXA DE EMAIL CHEIA \n2) E-MAIL : graciane.coelho@tecnomulti.com\n3) TELEFONE : 81986981633\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \ne-mail com problema \n \n\n\n[28-01-2025 08:41]\nAutor Alexsandro Cruz\nDescrição Chamado repetido.\nData de abertura 28-01-2025 08:41\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-57/add_followup.1738064476.1455748361@oswintech.ddns.net','','mailing','add_followup'),
(352,'Ticket',57,4,2,1,6,'2025-01-28 11:41:20','2025-01-30 18:00:50',NULL,'[GLPI #0000057] Encerramento do chamado CAIXA DE EMAIL CHEIA ','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000057] Encerramento do chamado CAIXA DE EMAIL CHEIA &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_57\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_57&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:CAIXA DE EMAIL CHEIA  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 08:11 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:28-01-2025 08:41 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- graciane.coelho@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CAIXA DE EMAIL CHEIA &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;graciane.coelho@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81986981633&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;e-mail com problema &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 28-01-2025 08:41&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 08:41]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Chamado repetido.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 08:41&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_57 \n\n Chamado: Descrição\n\n Título : CAIXA DE EMAIL CHEIA \n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 08:11\n Data de fechamento : 28-01-2025 08:41\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - graciane.coelho@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CAIXA DE EMAIL CHEIA \n2) E-MAIL : graciane.coelho@tecnomulti.com\n3) TELEFONE : 81986981633\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \ne-mail com problema \n \n\n Data da solução : 28-01-2025 08:41\n Tipo de solução : \n Solução : \n \n\n\n[28-01-2025 08:41]\nAutor Alexsandro Cruz\nDescrição Chamado repetido.\nData de abertura 28-01-2025 08:41\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-57/closed.1738064480.112214036@oswintech.ddns.net','','mailing','closed'),
(353,'Ticket',57,4,2,1,6,'2025-01-28 11:41:20','2025-01-30 18:00:50',NULL,'[GLPI #0000057] Encerramento do chamado CAIXA DE EMAIL CHEIA ','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000057] Encerramento do chamado CAIXA DE EMAIL CHEIA &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_57\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_57&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:CAIXA DE EMAIL CHEIA  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 08:11 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:28-01-2025 08:41 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- graciane.coelho@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CAIXA DE EMAIL CHEIA &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;graciane.coelho@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81986981633&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;e-mail com problema &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 28-01-2025 08:41&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 08:41]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Chamado repetido.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 08:41&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_57 \n\n Chamado: Descrição\n\n Título : CAIXA DE EMAIL CHEIA \n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 08:11\n Data de fechamento : 28-01-2025 08:41\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - graciane.coelho@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CAIXA DE EMAIL CHEIA \n2) E-MAIL : graciane.coelho@tecnomulti.com\n3) TELEFONE : 81986981633\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \ne-mail com problema \n \n\n Data da solução : 28-01-2025 08:41\n Tipo de solução : \n Solução : \n \n\n\n[28-01-2025 08:41]\nAutor Alexsandro Cruz\nDescrição Chamado repetido.\nData de abertura 28-01-2025 08:41\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-57/closed.1738064480.2103425311@oswintech.ddns.net','','mailing','closed'),
(354,'PluginFormcreatorFormAnswer',22,29,2,1,6,'2025-01-28 12:39:13','2025-01-31 11:40:01',NULL,'[GLPI] Sua requisição foi salva','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI] Sua requisi&#38;ccedil;&#38;atilde;o foi salva&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;p&#62;Olá,&#60;br /&#62;Sua requisição do GLPI foi salva com sucesso com o número 22 e transmitido para a equipe de helpdesk.&#60;br /&#62;Você pode ver suas respostas no seguinte link:&#60;br /&#62;https://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=22&#60;/p&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;','Olá,\nSua requisição do GLPI foi salva com sucesso com o número 22 e transmitido para a equipe de helpdesk.\nVocê pode ver suas respostas no seguinte link:\nhttps://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=22\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-PluginFormcreatorFormAnswer-22/plugin_formcreator_form_created.1738067954.428459017@oswintech.ddns.net','','mailing','plugin_formcreator_form_created'),
(355,'Ticket',58,4,2,1,0,'2025-01-28 12:39:13','2025-01-28 12:39:13','2025-01-28 13:18:24','[GLPI #0000058] Novo chamado OSP control não está abrindo e ativar o e-mail ',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_58 \n\n Chamado: Descrição\n\n Título : OSP control não está abrindo e ativar o e-mail \n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 09:39\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistemas VIVO/FIBRASIL  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : OSP control não está abrindo e ativar o e-mail \n2) E-MAIL : selma.belizario@tecnomulti.com\n3) TELEFONE : 83 98808-8867\n4) CATEGORIA : Sistemas VIVO/FIBRASIL\n5) INFORME MAIS DETALHES : \ntoda vez que tento acessar o OSP Control aparece a mensagem: ops, algo deu errado. Por favor, tente novamente. Consigo acessar em outo notebook, mas no meu não acessa. \n\nTambém preciso que o meu e-mail seja migrado do notebook anterior, para o que estou utilizado agora.\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(356,'Ticket',58,4,2,1,0,'2025-01-28 12:39:13','2025-01-28 12:39:13','2025-01-30 15:37:33','[GLPI #0000058] Novo chamado OSP control não está abrindo e ativar o e-mail ',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_58 \n\n Chamado: Descrição\n\n Título : OSP control não está abrindo e ativar o e-mail \n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 09:39\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistemas VIVO/FIBRASIL  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : OSP control não está abrindo e ativar o e-mail \n2) E-MAIL : selma.belizario@tecnomulti.com\n3) TELEFONE : 83 98808-8867\n4) CATEGORIA : Sistemas VIVO/FIBRASIL\n5) INFORME MAIS DETALHES : \ntoda vez que tento acessar o OSP Control aparece a mensagem: ops, algo deu errado. Por favor, tente novamente. Consigo acessar em outo notebook, mas no meu não acessa. \n\nTambém preciso que o meu e-mail seja migrado do notebook anterior, para o que estou utilizado agora.\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(357,'Ticket',58,4,2,1,0,'2025-01-28 12:39:13','2025-01-28 12:39:13','2025-01-30 15:49:47','[GLPI #0000058] Novo chamado OSP control não está abrindo e ativar o e-mail ',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_58 \n\n Chamado: Descrição\n\n Título : OSP control não está abrindo e ativar o e-mail \n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 09:39\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistemas VIVO/FIBRASIL  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : OSP control não está abrindo e ativar o e-mail \n2) E-MAIL : selma.belizario@tecnomulti.com\n3) TELEFONE : 83 98808-8867\n4) CATEGORIA : Sistemas VIVO/FIBRASIL\n5) INFORME MAIS DETALHES : \ntoda vez que tento acessar o OSP Control aparece a mensagem: ops, algo deu errado. Por favor, tente novamente. Consigo acessar em outo notebook, mas no meu não acessa. \n\nTambém preciso que o meu e-mail seja migrado do notebook anterior, para o que estou utilizado agora.\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(358,'Ticket',58,4,2,1,0,'2025-01-28 12:39:13','2025-01-28 12:39:13','2025-01-29 01:27:46','[GLPI #0000058] Novo chamado OSP control não está abrindo e ativar o e-mail ',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_58 \n\n Chamado: Descrição\n\n Título : OSP control não está abrindo e ativar o e-mail \n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 09:39\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistemas VIVO/FIBRASIL  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : OSP control não está abrindo e ativar o e-mail \n2) E-MAIL : selma.belizario@tecnomulti.com\n3) TELEFONE : 83 98808-8867\n4) CATEGORIA : Sistemas VIVO/FIBRASIL\n5) INFORME MAIS DETALHES : \ntoda vez que tento acessar o OSP Control aparece a mensagem: ops, algo deu errado. Por favor, tente novamente. Consigo acessar em outo notebook, mas no meu não acessa. \n\nTambém preciso que o meu e-mail seja migrado do notebook anterior, para o que estou utilizado agora.\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(359,'Ticket',58,4,2,1,6,'2025-01-28 12:39:13','2025-01-31 11:40:01',NULL,'[GLPI #0000058] Novo chamado OSP control não está abrindo e ativar o e-mail ','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000058] Novo chamado OSP control n&#38;atilde;o est&#38;aacute; abrindo e ativar o e-mail &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_58\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_58&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:OSP control n&#38;atilde;o est&#38;aacute; abrindo e ativar o e-mail  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 09:39 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistemas VIVO/FIBRASIL      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;OSP control não está abrindo e ativar o e-mail &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;selma.belizario@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83 98808-8867&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistemas VIVO/FIBRASIL&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;toda vez que tento acessar o OSP Control aparece a mensagem: ops, algo deu errado. Por favor, tente novamente. Consigo acessar em outo notebook, mas no meu não acessa. &#60;/p&#62;\n&#60;p&#62;Também preciso que o meu e-mail seja migrado do notebook anterior, para o que estou utilizado agora.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_58 \n\n Chamado: Descrição\n\n Título : OSP control não está abrindo e ativar o e-mail \n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 09:39\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistemas VIVO/FIBRASIL  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : OSP control não está abrindo e ativar o e-mail \n2) E-MAIL : selma.belizario@tecnomulti.com\n3) TELEFONE : 83 98808-8867\n4) CATEGORIA : Sistemas VIVO/FIBRASIL\n5) INFORME MAIS DETALHES : \ntoda vez que tento acessar o OSP Control aparece a mensagem: ops, algo deu errado. Por favor, tente novamente. Consigo acessar em outo notebook, mas no meu não acessa. \n\nTambém preciso que o meu e-mail seja migrado do notebook anterior, para o que estou utilizado agora.\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-58/new@oswintech.ddns.net','','mailing','new'),
(360,'Ticket',58,4,2,1,6,'2025-01-28 12:39:13','2025-01-31 11:40:01',NULL,'[GLPI #0000058] Novo chamado OSP control não está abrindo e ativar o e-mail ','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000058] Novo chamado OSP control n&#38;atilde;o est&#38;aacute; abrindo e ativar o e-mail &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_58\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_58&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:OSP control n&#38;atilde;o est&#38;aacute; abrindo e ativar o e-mail  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 09:39 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistemas VIVO/FIBRASIL      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;OSP control não está abrindo e ativar o e-mail &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;selma.belizario@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83 98808-8867&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistemas VIVO/FIBRASIL&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;toda vez que tento acessar o OSP Control aparece a mensagem: ops, algo deu errado. Por favor, tente novamente. Consigo acessar em outo notebook, mas no meu não acessa. &#60;/p&#62;\n&#60;p&#62;Também preciso que o meu e-mail seja migrado do notebook anterior, para o que estou utilizado agora.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_58 \n\n Chamado: Descrição\n\n Título : OSP control não está abrindo e ativar o e-mail \n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 09:39\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistemas VIVO/FIBRASIL  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : OSP control não está abrindo e ativar o e-mail \n2) E-MAIL : selma.belizario@tecnomulti.com\n3) TELEFONE : 83 98808-8867\n4) CATEGORIA : Sistemas VIVO/FIBRASIL\n5) INFORME MAIS DETALHES : \ntoda vez que tento acessar o OSP Control aparece a mensagem: ops, algo deu errado. Por favor, tente novamente. Consigo acessar em outo notebook, mas no meu não acessa. \n\nTambém preciso que o meu e-mail seja migrado do notebook anterior, para o que estou utilizado agora.\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-58/new@oswintech.ddns.net','','mailing','new'),
(361,'Ticket',58,4,2,1,6,'2025-01-28 12:39:13','2025-02-01 13:31:52',NULL,'[GLPI #0000058] Novo chamado OSP control não está abrindo e ativar o e-mail ','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000058] Novo chamado OSP control n&#38;atilde;o est&#38;aacute; abrindo e ativar o e-mail &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_58\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_58&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:OSP control n&#38;atilde;o est&#38;aacute; abrindo e ativar o e-mail  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 09:39 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistemas VIVO/FIBRASIL      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;OSP control não está abrindo e ativar o e-mail &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;selma.belizario@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83 98808-8867&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistemas VIVO/FIBRASIL&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;toda vez que tento acessar o OSP Control aparece a mensagem: ops, algo deu errado. Por favor, tente novamente. Consigo acessar em outo notebook, mas no meu não acessa. &#60;/p&#62;\n&#60;p&#62;Também preciso que o meu e-mail seja migrado do notebook anterior, para o que estou utilizado agora.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_58 \n\n Chamado: Descrição\n\n Título : OSP control não está abrindo e ativar o e-mail \n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 09:39\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistemas VIVO/FIBRASIL  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : OSP control não está abrindo e ativar o e-mail \n2) E-MAIL : selma.belizario@tecnomulti.com\n3) TELEFONE : 83 98808-8867\n4) CATEGORIA : Sistemas VIVO/FIBRASIL\n5) INFORME MAIS DETALHES : \ntoda vez que tento acessar o OSP Control aparece a mensagem: ops, algo deu errado. Por favor, tente novamente. Consigo acessar em outo notebook, mas no meu não acessa. \n\nTambém preciso que o meu e-mail seja migrado do notebook anterior, para o que estou utilizado agora.\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-58/new@oswintech.ddns.net','','mailing','new'),
(362,'Ticket',58,4,2,1,6,'2025-01-28 12:39:13','2025-02-05 12:53:09',NULL,'[GLPI #0000058] Novo chamado OSP control não está abrindo e ativar o e-mail ','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000058] Novo chamado OSP control n&#38;atilde;o est&#38;aacute; abrindo e ativar o e-mail &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_58\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_58&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:OSP control n&#38;atilde;o est&#38;aacute; abrindo e ativar o e-mail  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 09:39 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistemas VIVO/FIBRASIL      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;OSP control não está abrindo e ativar o e-mail &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;selma.belizario@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83 98808-8867&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistemas VIVO/FIBRASIL&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;toda vez que tento acessar o OSP Control aparece a mensagem: ops, algo deu errado. Por favor, tente novamente. Consigo acessar em outo notebook, mas no meu não acessa. &#60;/p&#62;\n&#60;p&#62;Também preciso que o meu e-mail seja migrado do notebook anterior, para o que estou utilizado agora.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_58 \n\n Chamado: Descrição\n\n Título : OSP control não está abrindo e ativar o e-mail \n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 09:39\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistemas VIVO/FIBRASIL  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : OSP control não está abrindo e ativar o e-mail \n2) E-MAIL : selma.belizario@tecnomulti.com\n3) TELEFONE : 83 98808-8867\n4) CATEGORIA : Sistemas VIVO/FIBRASIL\n5) INFORME MAIS DETALHES : \ntoda vez que tento acessar o OSP Control aparece a mensagem: ops, algo deu errado. Por favor, tente novamente. Consigo acessar em outo notebook, mas no meu não acessa. \n\nTambém preciso que o meu e-mail seja migrado do notebook anterior, para o que estou utilizado agora.\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-58/new@oswintech.ddns.net','','mailing','new'),
(363,'Ticket',56,4,2,1,6,'2025-01-28 12:51:31','2025-02-05 12:53:09',NULL,'[GLPI #0000056] Novo acompanhamento CAIXA DE EMAIL CHEIA ','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000056] Novo acompanhamento CAIXA DE EMAIL CHEIA &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_56\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_56&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:CAIXA DE EMAIL CHEIA  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:27-01-2025 15:40 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- graciane.coelho@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CAIXA DE EMAIL CHEIA &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;graciane.coelho@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81986981633&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;CAIXA DE EMAIL CHEIAS&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 09:51]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Realizado acesso remoto e verificado que o outlook estava configurado como IMAP. Refeito a configuração e testado. Liberado para uso. &#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 09:51&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 08:19]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Preciso acessar seu equipamento para verificar algumas configurações. Por favor, me passe o ID do anydesk.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 08:19&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 08:17]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia!&#60;/p&#62;\r\n&#60;p&#62;Estarei verificando.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 08:17&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 3&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_56 \n\n Chamado: Descrição\n\n Título : CAIXA DE EMAIL CHEIA \n Requerentes :  tecnomulti  \n Data de abertura : 27-01-2025 15:40\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - graciane.coelho@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CAIXA DE EMAIL CHEIA \n2) E-MAIL : graciane.coelho@tecnomulti.com\n3) TELEFONE : 81986981633\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nCAIXA DE EMAIL CHEIAS\n \n\n\n[28-01-2025 09:51]\nAutor Alexsandro Cruz\nDescrição Realizado acesso remoto e verificado que o outlook estava configurado como IMAP. Refeito a configuração e testado. Liberado para uso. \n\n \nData de abertura 28-01-2025 09:51\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 08:19]\nAutor Alexsandro Cruz\nDescrição Preciso acessar seu equipamento para verificar algumas configurações. Por favor, me passe o ID do anydesk.\nData de abertura 28-01-2025 08:19\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 08:17]\nAutor Alexsandro Cruz\nDescrição Bom dia!\n\nEstarei verificando.\nData de abertura 28-01-2025 08:17\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-56/add_followup.1738068691.1949479655@oswintech.ddns.net','','mailing','add_followup'),
(364,'Ticket',56,4,2,1,6,'2025-01-28 12:51:31','2025-02-05 12:53:09',NULL,'[GLPI #0000056] Novo acompanhamento CAIXA DE EMAIL CHEIA ','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000056] Novo acompanhamento CAIXA DE EMAIL CHEIA &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_56\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_56&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:CAIXA DE EMAIL CHEIA  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:27-01-2025 15:40 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- graciane.coelho@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CAIXA DE EMAIL CHEIA &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;graciane.coelho@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81986981633&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;CAIXA DE EMAIL CHEIAS&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 09:51]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Realizado acesso remoto e verificado que o outlook estava configurado como IMAP. Refeito a configuração e testado. Liberado para uso. &#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 09:51&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 08:19]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Preciso acessar seu equipamento para verificar algumas configurações. Por favor, me passe o ID do anydesk.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 08:19&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 08:17]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia!&#60;/p&#62;\r\n&#60;p&#62;Estarei verificando.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 08:17&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 3&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_56 \n\n Chamado: Descrição\n\n Título : CAIXA DE EMAIL CHEIA \n Requerentes :  tecnomulti  \n Data de abertura : 27-01-2025 15:40\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - graciane.coelho@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CAIXA DE EMAIL CHEIA \n2) E-MAIL : graciane.coelho@tecnomulti.com\n3) TELEFONE : 81986981633\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nCAIXA DE EMAIL CHEIAS\n \n\n\n[28-01-2025 09:51]\nAutor Alexsandro Cruz\nDescrição Realizado acesso remoto e verificado que o outlook estava configurado como IMAP. Refeito a configuração e testado. Liberado para uso. \n\n \nData de abertura 28-01-2025 09:51\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 08:19]\nAutor Alexsandro Cruz\nDescrição Preciso acessar seu equipamento para verificar algumas configurações. Por favor, me passe o ID do anydesk.\nData de abertura 28-01-2025 08:19\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 08:17]\nAutor Alexsandro Cruz\nDescrição Bom dia!\n\nEstarei verificando.\nData de abertura 28-01-2025 08:17\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-56/add_followup.1738068691.675600611@oswintech.ddns.net','','mailing','add_followup'),
(365,'Ticket',56,4,2,1,6,'2025-01-28 12:51:41','2025-02-05 12:53:09',NULL,'[GLPI #0000056] Encerramento do chamado CAIXA DE EMAIL CHEIA ','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000056] Encerramento do chamado CAIXA DE EMAIL CHEIA &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_56\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_56&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:CAIXA DE EMAIL CHEIA  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:27-01-2025 15:40 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:28-01-2025 09:51 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- graciane.coelho@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CAIXA DE EMAIL CHEIA &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;graciane.coelho@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81986981633&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;CAIXA DE EMAIL CHEIAS&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 28-01-2025 09:51&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 09:51]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Realizado acesso remoto e verificado que o outlook estava configurado como IMAP. Refeito a configuração e testado. Liberado para uso. &#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 09:51&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 08:19]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Preciso acessar seu equipamento para verificar algumas configurações. Por favor, me passe o ID do anydesk.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 08:19&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 08:17]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia!&#60;/p&#62;\r\n&#60;p&#62;Estarei verificando.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 08:17&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 3&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_56 \n\n Chamado: Descrição\n\n Título : CAIXA DE EMAIL CHEIA \n Requerentes :  tecnomulti  \n Data de abertura : 27-01-2025 15:40\n Data de fechamento : 28-01-2025 09:51\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - graciane.coelho@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CAIXA DE EMAIL CHEIA \n2) E-MAIL : graciane.coelho@tecnomulti.com\n3) TELEFONE : 81986981633\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nCAIXA DE EMAIL CHEIAS\n \n\n Data da solução : 28-01-2025 09:51\n Tipo de solução : \n Solução : \n \n\n\n[28-01-2025 09:51]\nAutor Alexsandro Cruz\nDescrição Realizado acesso remoto e verificado que o outlook estava configurado como IMAP. Refeito a configuração e testado. Liberado para uso. \n\n \nData de abertura 28-01-2025 09:51\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 08:19]\nAutor Alexsandro Cruz\nDescrição Preciso acessar seu equipamento para verificar algumas configurações. Por favor, me passe o ID do anydesk.\nData de abertura 28-01-2025 08:19\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 08:17]\nAutor Alexsandro Cruz\nDescrição Bom dia!\n\nEstarei verificando.\nData de abertura 28-01-2025 08:17\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-56/closed.1738068702.1243817520@oswintech.ddns.net','','mailing','closed'),
(366,'Ticket',56,4,2,1,6,'2025-01-28 12:51:41','2025-02-05 12:53:09',NULL,'[GLPI #0000056] Encerramento do chamado CAIXA DE EMAIL CHEIA ','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000056] Encerramento do chamado CAIXA DE EMAIL CHEIA &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_56\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_56&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:CAIXA DE EMAIL CHEIA  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:27-01-2025 15:40 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:28-01-2025 09:51 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- graciane.coelho@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CAIXA DE EMAIL CHEIA &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;graciane.coelho@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81986981633&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;CAIXA DE EMAIL CHEIAS&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 28-01-2025 09:51&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 09:51]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Realizado acesso remoto e verificado que o outlook estava configurado como IMAP. Refeito a configuração e testado. Liberado para uso. &#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 09:51&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 08:19]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Preciso acessar seu equipamento para verificar algumas configurações. Por favor, me passe o ID do anydesk.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 08:19&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 08:17]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia!&#60;/p&#62;\r\n&#60;p&#62;Estarei verificando.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 08:17&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 3&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_56 \n\n Chamado: Descrição\n\n Título : CAIXA DE EMAIL CHEIA \n Requerentes :  tecnomulti  \n Data de abertura : 27-01-2025 15:40\n Data de fechamento : 28-01-2025 09:51\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - graciane.coelho@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CAIXA DE EMAIL CHEIA \n2) E-MAIL : graciane.coelho@tecnomulti.com\n3) TELEFONE : 81986981633\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nCAIXA DE EMAIL CHEIAS\n \n\n Data da solução : 28-01-2025 09:51\n Tipo de solução : \n Solução : \n \n\n\n[28-01-2025 09:51]\nAutor Alexsandro Cruz\nDescrição Realizado acesso remoto e verificado que o outlook estava configurado como IMAP. Refeito a configuração e testado. Liberado para uso. \n\n \nData de abertura 28-01-2025 09:51\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 08:19]\nAutor Alexsandro Cruz\nDescrição Preciso acessar seu equipamento para verificar algumas configurações. Por favor, me passe o ID do anydesk.\nData de abertura 28-01-2025 08:19\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 08:17]\nAutor Alexsandro Cruz\nDescrição Bom dia!\n\nEstarei verificando.\nData de abertura 28-01-2025 08:17\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-56/closed.1738068702.1449755112@oswintech.ddns.net','','mailing','closed'),
(367,'PluginFormcreatorFormAnswer',23,29,2,1,6,'2025-01-28 13:46:40','2025-02-05 12:53:09',NULL,'[GLPI] Sua requisição foi salva','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI] Sua requisi&#38;ccedil;&#38;atilde;o foi salva&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;p&#62;Olá,&#60;br /&#62;Sua requisição do GLPI foi salva com sucesso com o número 23 e transmitido para a equipe de helpdesk.&#60;br /&#62;Você pode ver suas respostas no seguinte link:&#60;br /&#62;https://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=23&#60;/p&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;','Olá,\nSua requisição do GLPI foi salva com sucesso com o número 23 e transmitido para a equipe de helpdesk.\nVocê pode ver suas respostas no seguinte link:\nhttps://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=23\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-PluginFormcreatorFormAnswer-23/plugin_formcreator_form_created.1738072000.1891939770@oswintech.ddns.net','','mailing','plugin_formcreator_form_created'),
(368,'Ticket',59,4,2,1,0,'2025-01-28 13:46:40','2025-01-28 13:46:40','2025-01-28 13:46:47','[GLPI #0000059] Novo chamado GOOGLE HEART',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_59 \n\n Chamado: Descrição\n\n Título : GOOGLE HEART\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 10:46\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : GOOGLE HEART\n2) E-MAIL : gerson.lima@tecnomulti.com\n3) TELEFONE : 71992750348\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \ngoogle heart com erro, necessário reinstalar \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(369,'Ticket',59,4,2,1,0,'2025-01-28 13:46:40','2025-01-28 13:46:40','2025-01-30 15:37:33','[GLPI #0000059] Novo chamado GOOGLE HEART',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_59 \n\n Chamado: Descrição\n\n Título : GOOGLE HEART\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 10:46\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : GOOGLE HEART\n2) E-MAIL : gerson.lima@tecnomulti.com\n3) TELEFONE : 71992750348\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \ngoogle heart com erro, necessário reinstalar \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(370,'Ticket',59,4,2,1,0,'2025-01-28 13:46:40','2025-01-28 13:46:40','2025-01-30 15:49:47','[GLPI #0000059] Novo chamado GOOGLE HEART',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_59 \n\n Chamado: Descrição\n\n Título : GOOGLE HEART\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 10:46\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : GOOGLE HEART\n2) E-MAIL : gerson.lima@tecnomulti.com\n3) TELEFONE : 71992750348\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \ngoogle heart com erro, necessário reinstalar \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(371,'Ticket',59,4,2,1,0,'2025-01-28 13:46:40','2025-01-28 13:46:40','2025-01-29 01:27:48','[GLPI #0000059] Novo chamado GOOGLE HEART',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_59 \n\n Chamado: Descrição\n\n Título : GOOGLE HEART\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 10:46\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : GOOGLE HEART\n2) E-MAIL : gerson.lima@tecnomulti.com\n3) TELEFONE : 71992750348\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \ngoogle heart com erro, necessário reinstalar \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(372,'Ticket',59,4,2,1,6,'2025-01-28 13:46:40','2025-02-05 12:53:09',NULL,'[GLPI #0000059] Novo chamado GOOGLE HEART','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000059] Novo chamado GOOGLE HEART&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_59\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_59&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:GOOGLE HEART &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 10:46 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;GOOGLE HEART&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;gerson.lima@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;71992750348&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;google heart com erro, necessário reinstalar &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_59 \n\n Chamado: Descrição\n\n Título : GOOGLE HEART\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 10:46\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : GOOGLE HEART\n2) E-MAIL : gerson.lima@tecnomulti.com\n3) TELEFONE : 71992750348\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \ngoogle heart com erro, necessário reinstalar \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-59/new@oswintech.ddns.net','','mailing','new'),
(373,'Ticket',59,4,2,1,6,'2025-01-28 13:46:40','2025-02-05 12:53:09',NULL,'[GLPI #0000059] Novo chamado GOOGLE HEART','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000059] Novo chamado GOOGLE HEART&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_59\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_59&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:GOOGLE HEART &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 10:46 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;GOOGLE HEART&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;gerson.lima@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;71992750348&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;google heart com erro, necessário reinstalar &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_59 \n\n Chamado: Descrição\n\n Título : GOOGLE HEART\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 10:46\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : GOOGLE HEART\n2) E-MAIL : gerson.lima@tecnomulti.com\n3) TELEFONE : 71992750348\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \ngoogle heart com erro, necessário reinstalar \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-59/new@oswintech.ddns.net','','mailing','new'),
(374,'Ticket',59,4,2,1,6,'2025-01-28 13:46:40','2025-02-05 12:53:09',NULL,'[GLPI #0000059] Novo chamado GOOGLE HEART','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000059] Novo chamado GOOGLE HEART&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_59\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_59&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:GOOGLE HEART &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 10:46 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;GOOGLE HEART&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;gerson.lima@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;71992750348&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;google heart com erro, necessário reinstalar &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_59 \n\n Chamado: Descrição\n\n Título : GOOGLE HEART\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 10:46\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : GOOGLE HEART\n2) E-MAIL : gerson.lima@tecnomulti.com\n3) TELEFONE : 71992750348\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \ngoogle heart com erro, necessário reinstalar \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-59/new@oswintech.ddns.net','','mailing','new'),
(375,'Ticket',59,4,2,1,6,'2025-01-28 13:46:40','2025-02-05 12:53:09',NULL,'[GLPI #0000059] Novo chamado GOOGLE HEART','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000059] Novo chamado GOOGLE HEART&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_59\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_59&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:GOOGLE HEART &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 10:46 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;GOOGLE HEART&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;gerson.lima@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;71992750348&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;google heart com erro, necessário reinstalar &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_59 \n\n Chamado: Descrição\n\n Título : GOOGLE HEART\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 10:46\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : GOOGLE HEART\n2) E-MAIL : gerson.lima@tecnomulti.com\n3) TELEFONE : 71992750348\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \ngoogle heart com erro, necessário reinstalar \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-59/new@oswintech.ddns.net','','mailing','new'),
(376,'PluginFormcreatorFormAnswer',24,29,2,1,6,'2025-01-28 13:53:54','2025-02-05 12:53:09',NULL,'[GLPI] Sua requisição foi salva','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI] Sua requisi&#38;ccedil;&#38;atilde;o foi salva&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;p&#62;Olá,&#60;br /&#62;Sua requisição do GLPI foi salva com sucesso com o número 24 e transmitido para a equipe de helpdesk.&#60;br /&#62;Você pode ver suas respostas no seguinte link:&#60;br /&#62;https://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=24&#60;/p&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;','Olá,\nSua requisição do GLPI foi salva com sucesso com o número 24 e transmitido para a equipe de helpdesk.\nVocê pode ver suas respostas no seguinte link:\nhttps://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=24\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-PluginFormcreatorFormAnswer-24/plugin_formcreator_form_created.1738072435.1201188993@oswintech.ddns.net','','mailing','plugin_formcreator_form_created'),
(377,'Ticket',60,4,2,1,0,'2025-01-28 13:53:54','2025-01-28 13:53:54','2025-01-28 13:53:55','[GLPI #0000060] Novo chamado PASTA DE REDE / FROTA',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_60 \n\n Chamado: Descrição\n\n Título : PASTA DE REDE / FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 10:53\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA DE REDE / FROTA\n2) E-MAIL : monalisa.furtado@tecnomulti.com\n3) TELEFONE : 84988112339\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nMonalisa: 368905108\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(378,'Ticket',60,4,2,1,0,'2025-01-28 13:53:54','2025-01-28 13:53:54','2025-01-30 15:37:33','[GLPI #0000060] Novo chamado PASTA DE REDE / FROTA',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_60 \n\n Chamado: Descrição\n\n Título : PASTA DE REDE / FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 10:53\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA DE REDE / FROTA\n2) E-MAIL : monalisa.furtado@tecnomulti.com\n3) TELEFONE : 84988112339\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nMonalisa: 368905108\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(379,'Ticket',60,4,2,1,0,'2025-01-28 13:53:54','2025-01-28 13:53:54','2025-01-30 15:49:47','[GLPI #0000060] Novo chamado PASTA DE REDE / FROTA',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_60 \n\n Chamado: Descrição\n\n Título : PASTA DE REDE / FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 10:53\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA DE REDE / FROTA\n2) E-MAIL : monalisa.furtado@tecnomulti.com\n3) TELEFONE : 84988112339\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nMonalisa: 368905108\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(380,'Ticket',60,4,2,1,0,'2025-01-28 13:53:54','2025-01-28 13:53:54','2025-01-29 01:27:48','[GLPI #0000060] Novo chamado PASTA DE REDE / FROTA',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_60 \n\n Chamado: Descrição\n\n Título : PASTA DE REDE / FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 10:53\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA DE REDE / FROTA\n2) E-MAIL : monalisa.furtado@tecnomulti.com\n3) TELEFONE : 84988112339\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nMonalisa: 368905108\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(381,'Ticket',60,4,2,1,6,'2025-01-28 13:53:54','2025-02-05 12:53:09',NULL,'[GLPI #0000060] Novo chamado PASTA DE REDE / FROTA','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000060] Novo chamado PASTA DE REDE / FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_60\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_60&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA DE REDE / FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 10:53 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA DE REDE / FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;monalisa.furtado@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84988112339&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Monalisa: 368905108&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_60 \n\n Chamado: Descrição\n\n Título : PASTA DE REDE / FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 10:53\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA DE REDE / FROTA\n2) E-MAIL : monalisa.furtado@tecnomulti.com\n3) TELEFONE : 84988112339\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nMonalisa: 368905108\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-60/new@oswintech.ddns.net','','mailing','new'),
(382,'Ticket',60,4,2,1,6,'2025-01-28 13:53:54','2025-02-10 11:06:52',NULL,'[GLPI #0000060] Novo chamado PASTA DE REDE / FROTA','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000060] Novo chamado PASTA DE REDE / FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_60\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_60&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA DE REDE / FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 10:53 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA DE REDE / FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;monalisa.furtado@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84988112339&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Monalisa: 368905108&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_60 \n\n Chamado: Descrição\n\n Título : PASTA DE REDE / FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 10:53\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA DE REDE / FROTA\n2) E-MAIL : monalisa.furtado@tecnomulti.com\n3) TELEFONE : 84988112339\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nMonalisa: 368905108\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-60/new@oswintech.ddns.net','','mailing','new'),
(383,'Ticket',60,4,2,1,6,'2025-01-28 13:53:54','2025-02-10 11:06:52',NULL,'[GLPI #0000060] Novo chamado PASTA DE REDE / FROTA','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000060] Novo chamado PASTA DE REDE / FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_60\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_60&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA DE REDE / FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 10:53 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA DE REDE / FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;monalisa.furtado@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84988112339&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Monalisa: 368905108&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_60 \n\n Chamado: Descrição\n\n Título : PASTA DE REDE / FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 10:53\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA DE REDE / FROTA\n2) E-MAIL : monalisa.furtado@tecnomulti.com\n3) TELEFONE : 84988112339\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nMonalisa: 368905108\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-60/new@oswintech.ddns.net','','mailing','new'),
(384,'Ticket',60,4,2,1,6,'2025-01-28 13:53:54','2025-02-10 11:06:52',NULL,'[GLPI #0000060] Novo chamado PASTA DE REDE / FROTA','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000060] Novo chamado PASTA DE REDE / FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_60\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_60&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA DE REDE / FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 10:53 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA DE REDE / FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;monalisa.furtado@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84988112339&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Monalisa: 368905108&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_60 \n\n Chamado: Descrição\n\n Título : PASTA DE REDE / FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 10:53\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA DE REDE / FROTA\n2) E-MAIL : monalisa.furtado@tecnomulti.com\n3) TELEFONE : 84988112339\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nMonalisa: 368905108\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-60/new@oswintech.ddns.net','','mailing','new'),
(385,'Ticket',60,4,2,1,6,'2025-01-28 13:58:47','2025-02-10 11:06:52',NULL,'[GLPI #0000060] Novo acompanhamento PASTA DE REDE / FROTA','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000060] Novo acompanhamento PASTA DE REDE / FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_60\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_60&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA DE REDE / FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 10:53 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- monalisa.furtado@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA DE REDE / FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;monalisa.furtado@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84988112339&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Monalisa: 368905108&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 10:58]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, &#60;/p&#62;\r\n&#60;p&#62;Solicitação atendida. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 10:58&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_60 \n\n Chamado: Descrição\n\n Título : PASTA DE REDE / FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 10:53\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - monalisa.furtado@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA DE REDE / FROTA\n2) E-MAIL : monalisa.furtado@tecnomulti.com\n3) TELEFONE : 84988112339\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nMonalisa: 368905108\n \n\n\n[28-01-2025 10:58]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nSolicitação atendida. \nData de abertura 28-01-2025 10:58\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-60/add_followup.1738072727.1731137253@oswintech.ddns.net','','mailing','add_followup'),
(386,'Ticket',60,4,2,1,6,'2025-01-28 13:58:47','2025-02-10 11:06:52',NULL,'[GLPI #0000060] Novo acompanhamento PASTA DE REDE / FROTA','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000060] Novo acompanhamento PASTA DE REDE / FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_60\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_60&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA DE REDE / FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 10:53 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- monalisa.furtado@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA DE REDE / FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;monalisa.furtado@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84988112339&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Monalisa: 368905108&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 10:58]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, &#60;/p&#62;\r\n&#60;p&#62;Solicitação atendida. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 10:58&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_60 \n\n Chamado: Descrição\n\n Título : PASTA DE REDE / FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 10:53\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - monalisa.furtado@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA DE REDE / FROTA\n2) E-MAIL : monalisa.furtado@tecnomulti.com\n3) TELEFONE : 84988112339\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nMonalisa: 368905108\n \n\n\n[28-01-2025 10:58]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nSolicitação atendida. \nData de abertura 28-01-2025 10:58\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-60/add_followup.1738072727.1795140037@oswintech.ddns.net','','mailing','add_followup'),
(387,'Ticket',60,4,2,1,6,'2025-01-28 13:58:52','2025-02-10 11:06:52',NULL,'[GLPI #0000060] Encerramento do chamado PASTA DE REDE / FROTA','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000060] Encerramento do chamado PASTA DE REDE / FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_60\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_60&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA DE REDE / FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 10:53 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:28-01-2025 10:58 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- monalisa.furtado@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA DE REDE / FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;monalisa.furtado@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84988112339&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Monalisa: 368905108&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 28-01-2025 10:58&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 10:58]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, &#60;/p&#62;\r\n&#60;p&#62;Solicitação atendida. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 10:58&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_60 \n\n Chamado: Descrição\n\n Título : PASTA DE REDE / FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 10:53\n Data de fechamento : 28-01-2025 10:58\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - monalisa.furtado@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA DE REDE / FROTA\n2) E-MAIL : monalisa.furtado@tecnomulti.com\n3) TELEFONE : 84988112339\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nMonalisa: 368905108\n \n\n Data da solução : 28-01-2025 10:58\n Tipo de solução : \n Solução : \n \n\n\n[28-01-2025 10:58]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nSolicitação atendida. \nData de abertura 28-01-2025 10:58\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-60/closed.1738072732.1096222068@oswintech.ddns.net','','mailing','closed'),
(388,'Ticket',60,4,2,1,6,'2025-01-28 13:58:52','2025-02-11 12:26:07',NULL,'[GLPI #0000060] Encerramento do chamado PASTA DE REDE / FROTA','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000060] Encerramento do chamado PASTA DE REDE / FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_60\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_60&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA DE REDE / FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 10:53 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:28-01-2025 10:58 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- monalisa.furtado@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA DE REDE / FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;monalisa.furtado@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84988112339&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Monalisa: 368905108&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 28-01-2025 10:58&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 10:58]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, &#60;/p&#62;\r\n&#60;p&#62;Solicitação atendida. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 10:58&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_60 \n\n Chamado: Descrição\n\n Título : PASTA DE REDE / FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 10:53\n Data de fechamento : 28-01-2025 10:58\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - monalisa.furtado@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA DE REDE / FROTA\n2) E-MAIL : monalisa.furtado@tecnomulti.com\n3) TELEFONE : 84988112339\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nMonalisa: 368905108\n \n\n Data da solução : 28-01-2025 10:58\n Tipo de solução : \n Solução : \n \n\n\n[28-01-2025 10:58]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nSolicitação atendida. \nData de abertura 28-01-2025 10:58\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-60/closed.1738072732.1564290921@oswintech.ddns.net','','mailing','closed'),
(389,'PluginFormcreatorFormAnswer',25,29,2,1,6,'2025-01-28 13:59:04','2025-02-11 12:26:07',NULL,'[GLPI] Sua requisição foi salva','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI] Sua requisi&#38;ccedil;&#38;atilde;o foi salva&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;p&#62;Olá,&#60;br /&#62;Sua requisição do GLPI foi salva com sucesso com o número 25 e transmitido para a equipe de helpdesk.&#60;br /&#62;Você pode ver suas respostas no seguinte link:&#60;br /&#62;https://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=25&#60;/p&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;','Olá,\nSua requisição do GLPI foi salva com sucesso com o número 25 e transmitido para a equipe de helpdesk.\nVocê pode ver suas respostas no seguinte link:\nhttps://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=25\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-PluginFormcreatorFormAnswer-25/plugin_formcreator_form_created.1738072744.1199507607@oswintech.ddns.net','','mailing','plugin_formcreator_form_created'),
(390,'Ticket',61,4,2,1,0,'2025-01-28 13:59:04','2025-01-28 13:59:04','2025-01-28 13:59:10','[GLPI #0000061] Novo chamado PASTA DE REDE / FROTA',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_61 \n\n Chamado: Descrição\n\n Título : PASTA DE REDE / FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 10:59\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA DE REDE / FROTA\n2) E-MAIL : monalisa.furtado@tecnomulti.com\n3) TELEFONE : 84988112339\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nMonalisa: 368 905 108\n\n \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(391,'Ticket',61,4,2,1,0,'2025-01-28 13:59:04','2025-01-28 13:59:04','2025-01-30 15:37:33','[GLPI #0000061] Novo chamado PASTA DE REDE / FROTA',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_61 \n\n Chamado: Descrição\n\n Título : PASTA DE REDE / FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 10:59\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA DE REDE / FROTA\n2) E-MAIL : monalisa.furtado@tecnomulti.com\n3) TELEFONE : 84988112339\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nMonalisa: 368 905 108\n\n \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(392,'Ticket',61,4,2,1,0,'2025-01-28 13:59:04','2025-01-28 13:59:04','2025-01-30 15:49:47','[GLPI #0000061] Novo chamado PASTA DE REDE / FROTA',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_61 \n\n Chamado: Descrição\n\n Título : PASTA DE REDE / FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 10:59\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA DE REDE / FROTA\n2) E-MAIL : monalisa.furtado@tecnomulti.com\n3) TELEFONE : 84988112339\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nMonalisa: 368 905 108\n\n \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(393,'Ticket',61,4,2,1,0,'2025-01-28 13:59:04','2025-01-28 13:59:04','2025-01-29 01:27:48','[GLPI #0000061] Novo chamado PASTA DE REDE / FROTA',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_61 \n\n Chamado: Descrição\n\n Título : PASTA DE REDE / FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 10:59\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA DE REDE / FROTA\n2) E-MAIL : monalisa.furtado@tecnomulti.com\n3) TELEFONE : 84988112339\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nMonalisa: 368 905 108\n\n \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(394,'Ticket',61,4,2,1,6,'2025-01-28 13:59:04','2025-02-11 12:26:07',NULL,'[GLPI #0000061] Novo chamado PASTA DE REDE / FROTA','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000061] Novo chamado PASTA DE REDE / FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_61\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_61&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA DE REDE / FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 10:59 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA DE REDE / FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;monalisa.furtado@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84988112339&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Monalisa: 368 905 108&#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_61 \n\n Chamado: Descrição\n\n Título : PASTA DE REDE / FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 10:59\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA DE REDE / FROTA\n2) E-MAIL : monalisa.furtado@tecnomulti.com\n3) TELEFONE : 84988112339\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nMonalisa: 368 905 108\n\n \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-61/new@oswintech.ddns.net','','mailing','new'),
(395,'Ticket',61,4,2,1,6,'2025-01-28 13:59:04','2025-02-11 12:26:07',NULL,'[GLPI #0000061] Novo chamado PASTA DE REDE / FROTA','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000061] Novo chamado PASTA DE REDE / FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_61\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_61&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA DE REDE / FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 10:59 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA DE REDE / FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;monalisa.furtado@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84988112339&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Monalisa: 368 905 108&#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_61 \n\n Chamado: Descrição\n\n Título : PASTA DE REDE / FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 10:59\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA DE REDE / FROTA\n2) E-MAIL : monalisa.furtado@tecnomulti.com\n3) TELEFONE : 84988112339\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nMonalisa: 368 905 108\n\n \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-61/new@oswintech.ddns.net','','mailing','new'),
(396,'Ticket',61,4,2,1,6,'2025-01-28 13:59:04','2025-02-11 12:26:07',NULL,'[GLPI #0000061] Novo chamado PASTA DE REDE / FROTA','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000061] Novo chamado PASTA DE REDE / FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_61\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_61&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA DE REDE / FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 10:59 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA DE REDE / FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;monalisa.furtado@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84988112339&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Monalisa: 368 905 108&#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_61 \n\n Chamado: Descrição\n\n Título : PASTA DE REDE / FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 10:59\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA DE REDE / FROTA\n2) E-MAIL : monalisa.furtado@tecnomulti.com\n3) TELEFONE : 84988112339\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nMonalisa: 368 905 108\n\n \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-61/new@oswintech.ddns.net','','mailing','new'),
(397,'Ticket',61,4,2,1,6,'2025-01-28 13:59:04','2025-02-11 12:26:07',NULL,'[GLPI #0000061] Novo chamado PASTA DE REDE / FROTA','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000061] Novo chamado PASTA DE REDE / FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_61\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_61&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA DE REDE / FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 10:59 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA DE REDE / FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;monalisa.furtado@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84988112339&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Monalisa: 368 905 108&#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_61 \n\n Chamado: Descrição\n\n Título : PASTA DE REDE / FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 10:59\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA DE REDE / FROTA\n2) E-MAIL : monalisa.furtado@tecnomulti.com\n3) TELEFONE : 84988112339\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nMonalisa: 368 905 108\n\n \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-61/new@oswintech.ddns.net','','mailing','new'),
(398,'Ticket',59,4,2,1,6,'2025-01-28 13:59:29','2025-02-11 12:26:07',NULL,'[GLPI #0000059] Novo acompanhamento GOOGLE HEART','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000059] Novo acompanhamento GOOGLE HEART&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_59\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_59&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:GOOGLE HEART &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 10:46 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- gerson.lima@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;GOOGLE HEART&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;gerson.lima@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;71992750348&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;google heart com erro, necessário reinstalar &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 10:59]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Poderia mandar a print do erro, por gentileza!&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 10:59&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_59 \n\n Chamado: Descrição\n\n Título : GOOGLE HEART\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 10:46\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - gerson.lima@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : GOOGLE HEART\n2) E-MAIL : gerson.lima@tecnomulti.com\n3) TELEFONE : 71992750348\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \ngoogle heart com erro, necessário reinstalar \n \n\n\n[28-01-2025 10:59]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nPoderia mandar a print do erro, por gentileza!\nData de abertura 28-01-2025 10:59\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-59/add_followup.1738072769.1821602897@oswintech.ddns.net','','mailing','add_followup'),
(399,'Ticket',59,4,2,1,6,'2025-01-28 13:59:29','2025-02-11 12:26:07',NULL,'[GLPI #0000059] Novo acompanhamento GOOGLE HEART','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000059] Novo acompanhamento GOOGLE HEART&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_59\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_59&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:GOOGLE HEART &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 10:46 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- gerson.lima@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;GOOGLE HEART&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;gerson.lima@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;71992750348&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;google heart com erro, necessário reinstalar &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 10:59]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Poderia mandar a print do erro, por gentileza!&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 10:59&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_59 \n\n Chamado: Descrição\n\n Título : GOOGLE HEART\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 10:46\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - gerson.lima@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : GOOGLE HEART\n2) E-MAIL : gerson.lima@tecnomulti.com\n3) TELEFONE : 71992750348\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \ngoogle heart com erro, necessário reinstalar \n \n\n\n[28-01-2025 10:59]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nPoderia mandar a print do erro, por gentileza!\nData de abertura 28-01-2025 10:59\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-59/add_followup.1738072769.1202605228@oswintech.ddns.net','','mailing','add_followup'),
(400,'Ticket',61,4,2,1,6,'2025-01-28 14:02:01','2025-02-12 12:11:33',NULL,'[GLPI #0000061] Novo acompanhamento PASTA DE REDE / FROTA','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000061] Novo acompanhamento PASTA DE REDE / FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_61\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_61&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA DE REDE / FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 10:59 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- monalisa.furtado@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA DE REDE / FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;monalisa.furtado@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84988112339&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Monalisa: 368 905 108&#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Chamado será finalizado por está duplicado. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_61 \n\n Chamado: Descrição\n\n Título : PASTA DE REDE / FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 10:59\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - monalisa.furtado@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA DE REDE / FROTA\n2) E-MAIL : monalisa.furtado@tecnomulti.com\n3) TELEFONE : 84988112339\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nMonalisa: 368 905 108\n\n \n \n\n\n[28-01-2025 11:02]\nAutor Alexsandro Cruz\nDescrição Chamado será finalizado por está duplicado. \nData de abertura 28-01-2025 11:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-61/add_followup.1738072921.932567763@oswintech.ddns.net','','mailing','add_followup'),
(401,'Ticket',61,4,2,1,6,'2025-01-28 14:02:01','2025-02-12 12:11:33',NULL,'[GLPI #0000061] Novo acompanhamento PASTA DE REDE / FROTA','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000061] Novo acompanhamento PASTA DE REDE / FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_61\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_61&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA DE REDE / FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 10:59 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- monalisa.furtado@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA DE REDE / FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;monalisa.furtado@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84988112339&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Monalisa: 368 905 108&#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Chamado será finalizado por está duplicado. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_61 \n\n Chamado: Descrição\n\n Título : PASTA DE REDE / FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 10:59\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - monalisa.furtado@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA DE REDE / FROTA\n2) E-MAIL : monalisa.furtado@tecnomulti.com\n3) TELEFONE : 84988112339\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nMonalisa: 368 905 108\n\n \n \n\n\n[28-01-2025 11:02]\nAutor Alexsandro Cruz\nDescrição Chamado será finalizado por está duplicado. \nData de abertura 28-01-2025 11:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-61/add_followup.1738072921.1622059256@oswintech.ddns.net','','mailing','add_followup'),
(402,'Ticket',61,4,2,1,6,'2025-01-28 14:02:05','2025-02-12 12:11:33',NULL,'[GLPI #0000061] Encerramento do chamado PASTA DE REDE / FROTA','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000061] Encerramento do chamado PASTA DE REDE / FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_61\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_61&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA DE REDE / FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 10:59 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:28-01-2025 11:02 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- monalisa.furtado@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA DE REDE / FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;monalisa.furtado@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84988112339&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Monalisa: 368 905 108&#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 28-01-2025 11:02&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Chamado será finalizado por está duplicado. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_61 \n\n Chamado: Descrição\n\n Título : PASTA DE REDE / FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 10:59\n Data de fechamento : 28-01-2025 11:02\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - monalisa.furtado@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA DE REDE / FROTA\n2) E-MAIL : monalisa.furtado@tecnomulti.com\n3) TELEFONE : 84988112339\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nMonalisa: 368 905 108\n\n \n \n\n Data da solução : 28-01-2025 11:02\n Tipo de solução : \n Solução : \n \n\n\n[28-01-2025 11:02]\nAutor Alexsandro Cruz\nDescrição Chamado será finalizado por está duplicado. \nData de abertura 28-01-2025 11:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-61/closed.1738072925.991923929@oswintech.ddns.net','','mailing','closed'),
(403,'Ticket',61,4,2,1,6,'2025-01-28 14:02:05','2025-02-12 12:11:33',NULL,'[GLPI #0000061] Encerramento do chamado PASTA DE REDE / FROTA','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000061] Encerramento do chamado PASTA DE REDE / FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_61\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_61&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA DE REDE / FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 10:59 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:28-01-2025 11:02 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- monalisa.furtado@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA DE REDE / FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;monalisa.furtado@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84988112339&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Monalisa: 368 905 108&#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 28-01-2025 11:02&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Chamado será finalizado por está duplicado. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_61 \n\n Chamado: Descrição\n\n Título : PASTA DE REDE / FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 10:59\n Data de fechamento : 28-01-2025 11:02\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - monalisa.furtado@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA DE REDE / FROTA\n2) E-MAIL : monalisa.furtado@tecnomulti.com\n3) TELEFONE : 84988112339\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nMonalisa: 368 905 108\n\n \n \n\n Data da solução : 28-01-2025 11:02\n Tipo de solução : \n Solução : \n \n\n\n[28-01-2025 11:02]\nAutor Alexsandro Cruz\nDescrição Chamado será finalizado por está duplicado. \nData de abertura 28-01-2025 11:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-61/closed.1738072926.2915955@oswintech.ddns.net','','mailing','closed'),
(404,'PluginFormcreatorFormAnswer',26,29,2,1,6,'2025-01-28 14:02:27','2025-02-12 12:11:33',NULL,'[GLPI] Sua requisição foi salva','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI] Sua requisi&#38;ccedil;&#38;atilde;o foi salva&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;p&#62;Olá,&#60;br /&#62;Sua requisição do GLPI foi salva com sucesso com o número 26 e transmitido para a equipe de helpdesk.&#60;br /&#62;Você pode ver suas respostas no seguinte link:&#60;br /&#62;https://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=26&#60;/p&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;','Olá,\nSua requisição do GLPI foi salva com sucesso com o número 26 e transmitido para a equipe de helpdesk.\nVocê pode ver suas respostas no seguinte link:\nhttps://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=26\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-PluginFormcreatorFormAnswer-26/plugin_formcreator_form_created.1738072947.648021801@oswintech.ddns.net','','mailing','plugin_formcreator_form_created'),
(405,'Ticket',62,4,2,1,0,'2025-01-28 14:02:27','2025-01-28 14:02:27','2025-01-28 14:02:47','[GLPI #0000062] Novo chamado PASTA FROTA',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_62 \n\n Chamado: Descrição\n\n Título : PASTA FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 11:02\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA FROTA\n2) E-MAIL : laryssa.felix@tecnomulti.com\n3) TELEFONE : 84988112339\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nANYDESK: 1050 655 391\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(406,'Ticket',62,4,2,1,0,'2025-01-28 14:02:27','2025-01-28 14:02:27','2025-01-30 15:37:33','[GLPI #0000062] Novo chamado PASTA FROTA',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_62 \n\n Chamado: Descrição\n\n Título : PASTA FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 11:02\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA FROTA\n2) E-MAIL : laryssa.felix@tecnomulti.com\n3) TELEFONE : 84988112339\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nANYDESK: 1050 655 391\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(407,'Ticket',62,4,2,1,0,'2025-01-28 14:02:27','2025-01-28 14:02:27','2025-01-30 15:49:47','[GLPI #0000062] Novo chamado PASTA FROTA',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_62 \n\n Chamado: Descrição\n\n Título : PASTA FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 11:02\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA FROTA\n2) E-MAIL : laryssa.felix@tecnomulti.com\n3) TELEFONE : 84988112339\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nANYDESK: 1050 655 391\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(408,'Ticket',62,4,2,1,0,'2025-01-28 14:02:27','2025-01-28 14:02:27','2025-01-29 01:27:48','[GLPI #0000062] Novo chamado PASTA FROTA',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_62 \n\n Chamado: Descrição\n\n Título : PASTA FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 11:02\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA FROTA\n2) E-MAIL : laryssa.felix@tecnomulti.com\n3) TELEFONE : 84988112339\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nANYDESK: 1050 655 391\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(409,'Ticket',62,4,2,1,6,'2025-01-28 14:02:27','2025-02-12 12:11:33',NULL,'[GLPI #0000062] Novo chamado PASTA FROTA','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000062] Novo chamado PASTA FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_62\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_62&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 11:02 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;laryssa.felix@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84988112339&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;ANYDESK: 1050 655 391&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_62 \n\n Chamado: Descrição\n\n Título : PASTA FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 11:02\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA FROTA\n2) E-MAIL : laryssa.felix@tecnomulti.com\n3) TELEFONE : 84988112339\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nANYDESK: 1050 655 391\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-62/new@oswintech.ddns.net','','mailing','new'),
(410,'Ticket',62,4,2,1,6,'2025-01-28 14:02:27','2025-02-12 12:11:33',NULL,'[GLPI #0000062] Novo chamado PASTA FROTA','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000062] Novo chamado PASTA FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_62\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_62&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 11:02 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;laryssa.felix@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84988112339&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;ANYDESK: 1050 655 391&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_62 \n\n Chamado: Descrição\n\n Título : PASTA FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 11:02\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA FROTA\n2) E-MAIL : laryssa.felix@tecnomulti.com\n3) TELEFONE : 84988112339\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nANYDESK: 1050 655 391\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-62/new@oswintech.ddns.net','','mailing','new'),
(411,'Ticket',62,4,2,1,6,'2025-01-28 14:02:27','2025-02-12 12:11:33',NULL,'[GLPI #0000062] Novo chamado PASTA FROTA','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000062] Novo chamado PASTA FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_62\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_62&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 11:02 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;laryssa.felix@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84988112339&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;ANYDESK: 1050 655 391&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_62 \n\n Chamado: Descrição\n\n Título : PASTA FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 11:02\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA FROTA\n2) E-MAIL : laryssa.felix@tecnomulti.com\n3) TELEFONE : 84988112339\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nANYDESK: 1050 655 391\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-62/new@oswintech.ddns.net','','mailing','new'),
(412,'Ticket',62,4,2,1,6,'2025-01-28 14:02:27','2025-02-12 12:11:33',NULL,'[GLPI #0000062] Novo chamado PASTA FROTA','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000062] Novo chamado PASTA FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_62\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_62&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 11:02 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;laryssa.felix@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84988112339&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;ANYDESK: 1050 655 391&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_62 \n\n Chamado: Descrição\n\n Título : PASTA FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 11:02\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA FROTA\n2) E-MAIL : laryssa.felix@tecnomulti.com\n3) TELEFONE : 84988112339\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nANYDESK: 1050 655 391\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-62/new@oswintech.ddns.net','','mailing','new'),
(413,'PluginFormcreatorFormAnswer',27,29,2,1,6,'2025-01-28 14:04:55','2025-02-12 12:11:33',NULL,'[GLPI] Sua requisição foi salva','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI] Sua requisi&#38;ccedil;&#38;atilde;o foi salva&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;p&#62;Olá,&#60;br /&#62;Sua requisição do GLPI foi salva com sucesso com o número 27 e transmitido para a equipe de helpdesk.&#60;br /&#62;Você pode ver suas respostas no seguinte link:&#60;br /&#62;https://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=27&#60;/p&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;','Olá,\nSua requisição do GLPI foi salva com sucesso com o número 27 e transmitido para a equipe de helpdesk.\nVocê pode ver suas respostas no seguinte link:\nhttps://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=27\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-PluginFormcreatorFormAnswer-27/plugin_formcreator_form_created.1738073095.1014368951@oswintech.ddns.net','','mailing','plugin_formcreator_form_created'),
(414,'Ticket',63,4,2,1,0,'2025-01-28 14:04:55','2025-01-28 14:04:55','2025-01-28 14:05:00','[GLPI #0000063] Novo chamado PASTA DE REDE / FROTA',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_63 \n\n Chamado: Descrição\n\n Título : PASTA DE REDE / FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 11:04\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA DE REDE / FROTA\n2) E-MAIL : joaopaulo.leite@tecnomulti.com\n3) TELEFONE : 81 98584-2246\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nANYDESK: 723335506\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(415,'Ticket',63,4,2,1,0,'2025-01-28 14:04:55','2025-01-28 14:04:55','2025-01-30 15:37:34','[GLPI #0000063] Novo chamado PASTA DE REDE / FROTA',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_63 \n\n Chamado: Descrição\n\n Título : PASTA DE REDE / FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 11:04\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA DE REDE / FROTA\n2) E-MAIL : joaopaulo.leite@tecnomulti.com\n3) TELEFONE : 81 98584-2246\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nANYDESK: 723335506\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(416,'Ticket',63,4,2,1,0,'2025-01-28 14:04:55','2025-01-28 14:04:55','2025-01-30 15:49:47','[GLPI #0000063] Novo chamado PASTA DE REDE / FROTA',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_63 \n\n Chamado: Descrição\n\n Título : PASTA DE REDE / FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 11:04\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA DE REDE / FROTA\n2) E-MAIL : joaopaulo.leite@tecnomulti.com\n3) TELEFONE : 81 98584-2246\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nANYDESK: 723335506\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(417,'Ticket',63,4,2,1,0,'2025-01-28 14:04:55','2025-01-28 14:04:55','2025-01-29 01:27:48','[GLPI #0000063] Novo chamado PASTA DE REDE / FROTA',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_63 \n\n Chamado: Descrição\n\n Título : PASTA DE REDE / FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 11:04\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA DE REDE / FROTA\n2) E-MAIL : joaopaulo.leite@tecnomulti.com\n3) TELEFONE : 81 98584-2246\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nANYDESK: 723335506\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(418,'Ticket',63,4,2,1,6,'2025-01-28 14:04:55','2025-02-12 12:11:33',NULL,'[GLPI #0000063] Novo chamado PASTA DE REDE / FROTA','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000063] Novo chamado PASTA DE REDE / FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_63\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_63&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA DE REDE / FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 11:04 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA DE REDE / FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;joaopaulo.leite@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 98584-2246&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;ANYDESK: 723335506&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_63 \n\n Chamado: Descrição\n\n Título : PASTA DE REDE / FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 11:04\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA DE REDE / FROTA\n2) E-MAIL : joaopaulo.leite@tecnomulti.com\n3) TELEFONE : 81 98584-2246\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nANYDESK: 723335506\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-63/new@oswintech.ddns.net','','mailing','new'),
(419,'Ticket',63,4,2,1,6,'2025-01-28 14:04:55','2025-02-12 12:11:33',NULL,'[GLPI #0000063] Novo chamado PASTA DE REDE / FROTA','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000063] Novo chamado PASTA DE REDE / FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_63\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_63&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA DE REDE / FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 11:04 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA DE REDE / FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;joaopaulo.leite@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 98584-2246&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;ANYDESK: 723335506&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_63 \n\n Chamado: Descrição\n\n Título : PASTA DE REDE / FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 11:04\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA DE REDE / FROTA\n2) E-MAIL : joaopaulo.leite@tecnomulti.com\n3) TELEFONE : 81 98584-2246\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nANYDESK: 723335506\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-63/new@oswintech.ddns.net','','mailing','new'),
(420,'Ticket',63,4,2,1,6,'2025-01-28 14:04:55','2025-02-12 12:11:33',NULL,'[GLPI #0000063] Novo chamado PASTA DE REDE / FROTA','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000063] Novo chamado PASTA DE REDE / FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_63\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_63&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA DE REDE / FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 11:04 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA DE REDE / FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;joaopaulo.leite@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 98584-2246&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;ANYDESK: 723335506&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_63 \n\n Chamado: Descrição\n\n Título : PASTA DE REDE / FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 11:04\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA DE REDE / FROTA\n2) E-MAIL : joaopaulo.leite@tecnomulti.com\n3) TELEFONE : 81 98584-2246\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nANYDESK: 723335506\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-63/new@oswintech.ddns.net','','mailing','new'),
(421,'Ticket',63,4,2,1,6,'2025-01-28 14:04:55','2025-02-12 12:11:33',NULL,'[GLPI #0000063] Novo chamado PASTA DE REDE / FROTA','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000063] Novo chamado PASTA DE REDE / FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_63\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_63&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA DE REDE / FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 11:04 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA DE REDE / FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;joaopaulo.leite@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 98584-2246&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;ANYDESK: 723335506&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_63 \n\n Chamado: Descrição\n\n Título : PASTA DE REDE / FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 11:04\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA DE REDE / FROTA\n2) E-MAIL : joaopaulo.leite@tecnomulti.com\n3) TELEFONE : 81 98584-2246\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nANYDESK: 723335506\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-63/new@oswintech.ddns.net','','mailing','new'),
(422,'Ticket',62,4,2,1,6,'2025-01-28 14:05:13','2025-02-12 12:11:34',NULL,'[GLPI #0000062] Novo acompanhamento PASTA FROTA','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000062] Novo acompanhamento PASTA FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_62\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_62&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 11:02 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- laryssa.felix@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;laryssa.felix@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84988112339&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;ANYDESK: 1050 655 391&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:05]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, &#60;/p&#62;\r\n&#60;p&#62;Pasta configurada e testada.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:05&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_62 \n\n Chamado: Descrição\n\n Título : PASTA FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 11:02\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - laryssa.felix@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA FROTA\n2) E-MAIL : laryssa.felix@tecnomulti.com\n3) TELEFONE : 84988112339\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nANYDESK: 1050 655 391\n \n\n\n[28-01-2025 11:05]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nPasta configurada e testada.\nData de abertura 28-01-2025 11:05\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-62/add_followup.1738073114.1279118844@oswintech.ddns.net','','mailing','add_followup'),
(423,'Ticket',62,4,2,1,6,'2025-01-28 14:05:13','2025-02-12 12:11:34',NULL,'[GLPI #0000062] Novo acompanhamento PASTA FROTA','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000062] Novo acompanhamento PASTA FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_62\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_62&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 11:02 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- laryssa.felix@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;laryssa.felix@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84988112339&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;ANYDESK: 1050 655 391&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:05]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, &#60;/p&#62;\r\n&#60;p&#62;Pasta configurada e testada.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:05&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_62 \n\n Chamado: Descrição\n\n Título : PASTA FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 11:02\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - laryssa.felix@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA FROTA\n2) E-MAIL : laryssa.felix@tecnomulti.com\n3) TELEFONE : 84988112339\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nANYDESK: 1050 655 391\n \n\n\n[28-01-2025 11:05]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nPasta configurada e testada.\nData de abertura 28-01-2025 11:05\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-62/add_followup.1738073114.815187108@oswintech.ddns.net','','mailing','add_followup'),
(424,'Ticket',62,4,2,1,6,'2025-01-28 14:05:20','2025-02-17 13:29:16',NULL,'[GLPI #0000062] Encerramento do chamado PASTA FROTA','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000062] Encerramento do chamado PASTA FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_62\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_62&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 11:02 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:28-01-2025 11:05 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- laryssa.felix@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;laryssa.felix@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84988112339&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;ANYDESK: 1050 655 391&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 28-01-2025 11:05&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:05]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, &#60;/p&#62;\r\n&#60;p&#62;Pasta configurada e testada.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:05&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_62 \n\n Chamado: Descrição\n\n Título : PASTA FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 11:02\n Data de fechamento : 28-01-2025 11:05\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - laryssa.felix@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA FROTA\n2) E-MAIL : laryssa.felix@tecnomulti.com\n3) TELEFONE : 84988112339\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nANYDESK: 1050 655 391\n \n\n Data da solução : 28-01-2025 11:05\n Tipo de solução : \n Solução : \n \n\n\n[28-01-2025 11:05]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nPasta configurada e testada.\nData de abertura 28-01-2025 11:05\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-62/closed.1738073120.10514271@oswintech.ddns.net','','mailing','closed'),
(425,'Ticket',62,4,2,1,6,'2025-01-28 14:05:20','2025-02-17 13:29:16',NULL,'[GLPI #0000062] Encerramento do chamado PASTA FROTA','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000062] Encerramento do chamado PASTA FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_62\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_62&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 11:02 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:28-01-2025 11:05 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- laryssa.felix@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;laryssa.felix@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84988112339&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;ANYDESK: 1050 655 391&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 28-01-2025 11:05&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:05]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, &#60;/p&#62;\r\n&#60;p&#62;Pasta configurada e testada.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:05&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_62 \n\n Chamado: Descrição\n\n Título : PASTA FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 11:02\n Data de fechamento : 28-01-2025 11:05\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - laryssa.felix@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA FROTA\n2) E-MAIL : laryssa.felix@tecnomulti.com\n3) TELEFONE : 84988112339\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nANYDESK: 1050 655 391\n \n\n Data da solução : 28-01-2025 11:05\n Tipo de solução : \n Solução : \n \n\n\n[28-01-2025 11:05]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nPasta configurada e testada.\nData de abertura 28-01-2025 11:05\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-62/closed.1738073120.622086934@oswintech.ddns.net','','mailing','closed'),
(426,'PluginFormcreatorFormAnswer',28,29,2,1,6,'2025-01-28 14:06:03','2025-02-17 13:29:16',NULL,'[GLPI] Sua requisição foi salva','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI] Sua requisi&#38;ccedil;&#38;atilde;o foi salva&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;p&#62;Olá,&#60;br /&#62;Sua requisição do GLPI foi salva com sucesso com o número 28 e transmitido para a equipe de helpdesk.&#60;br /&#62;Você pode ver suas respostas no seguinte link:&#60;br /&#62;https://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=28&#60;/p&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;','Olá,\nSua requisição do GLPI foi salva com sucesso com o número 28 e transmitido para a equipe de helpdesk.\nVocê pode ver suas respostas no seguinte link:\nhttps://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=28\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-PluginFormcreatorFormAnswer-28/plugin_formcreator_form_created.1738073163.264731905@oswintech.ddns.net','','mailing','plugin_formcreator_form_created'),
(427,'Ticket',64,4,2,1,0,'2025-01-28 14:06:03','2025-01-28 14:06:03','2025-01-28 14:06:08','[GLPI #0000064] Novo chamado PASTA DE REDE / FROTA',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_64 \n\n Chamado: Descrição\n\n Título : PASTA DE REDE / FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 11:06\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA DE REDE / FROTA\n2) E-MAIL : arthur.abreu@tecnomulti.com\n3) TELEFONE : 84 9946-0068\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nAnydesk: 1 307 766 794\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(428,'Ticket',64,4,2,1,0,'2025-01-28 14:06:03','2025-01-28 14:06:03','2025-01-30 15:37:34','[GLPI #0000064] Novo chamado PASTA DE REDE / FROTA',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_64 \n\n Chamado: Descrição\n\n Título : PASTA DE REDE / FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 11:06\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA DE REDE / FROTA\n2) E-MAIL : arthur.abreu@tecnomulti.com\n3) TELEFONE : 84 9946-0068\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nAnydesk: 1 307 766 794\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(429,'Ticket',64,4,2,1,0,'2025-01-28 14:06:03','2025-01-28 14:06:03','2025-01-30 15:49:47','[GLPI #0000064] Novo chamado PASTA DE REDE / FROTA',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_64 \n\n Chamado: Descrição\n\n Título : PASTA DE REDE / FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 11:06\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA DE REDE / FROTA\n2) E-MAIL : arthur.abreu@tecnomulti.com\n3) TELEFONE : 84 9946-0068\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nAnydesk: 1 307 766 794\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(430,'Ticket',64,4,2,1,0,'2025-01-28 14:06:03','2025-01-28 14:06:03','2025-01-29 01:27:48','[GLPI #0000064] Novo chamado PASTA DE REDE / FROTA',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_64 \n\n Chamado: Descrição\n\n Título : PASTA DE REDE / FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 11:06\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA DE REDE / FROTA\n2) E-MAIL : arthur.abreu@tecnomulti.com\n3) TELEFONE : 84 9946-0068\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nAnydesk: 1 307 766 794\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(431,'Ticket',64,4,2,1,6,'2025-01-28 14:06:03','2025-02-17 13:29:16',NULL,'[GLPI #0000064] Novo chamado PASTA DE REDE / FROTA','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000064] Novo chamado PASTA DE REDE / FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_64\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_64&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA DE REDE / FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 11:06 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA DE REDE / FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;arthur.abreu@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84 9946-0068&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Anydesk: 1 307 766 794&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_64 \n\n Chamado: Descrição\n\n Título : PASTA DE REDE / FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 11:06\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA DE REDE / FROTA\n2) E-MAIL : arthur.abreu@tecnomulti.com\n3) TELEFONE : 84 9946-0068\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nAnydesk: 1 307 766 794\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-64/new@oswintech.ddns.net','','mailing','new'),
(432,'Ticket',64,4,2,1,6,'2025-01-28 14:06:03','2025-02-17 13:29:16',NULL,'[GLPI #0000064] Novo chamado PASTA DE REDE / FROTA','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000064] Novo chamado PASTA DE REDE / FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_64\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_64&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA DE REDE / FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 11:06 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA DE REDE / FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;arthur.abreu@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84 9946-0068&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Anydesk: 1 307 766 794&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_64 \n\n Chamado: Descrição\n\n Título : PASTA DE REDE / FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 11:06\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA DE REDE / FROTA\n2) E-MAIL : arthur.abreu@tecnomulti.com\n3) TELEFONE : 84 9946-0068\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nAnydesk: 1 307 766 794\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-64/new@oswintech.ddns.net','','mailing','new'),
(433,'Ticket',64,4,2,1,6,'2025-01-28 14:06:03','2025-02-17 13:29:16',NULL,'[GLPI #0000064] Novo chamado PASTA DE REDE / FROTA','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000064] Novo chamado PASTA DE REDE / FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_64\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_64&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA DE REDE / FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 11:06 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA DE REDE / FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;arthur.abreu@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84 9946-0068&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Anydesk: 1 307 766 794&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_64 \n\n Chamado: Descrição\n\n Título : PASTA DE REDE / FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 11:06\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA DE REDE / FROTA\n2) E-MAIL : arthur.abreu@tecnomulti.com\n3) TELEFONE : 84 9946-0068\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nAnydesk: 1 307 766 794\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-64/new@oswintech.ddns.net','','mailing','new'),
(434,'Ticket',64,4,2,1,6,'2025-01-28 14:06:03','2025-02-17 13:29:16',NULL,'[GLPI #0000064] Novo chamado PASTA DE REDE / FROTA','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000064] Novo chamado PASTA DE REDE / FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_64\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_64&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA DE REDE / FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 11:06 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA DE REDE / FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;arthur.abreu@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84 9946-0068&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Anydesk: 1 307 766 794&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_64 \n\n Chamado: Descrição\n\n Título : PASTA DE REDE / FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 11:06\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA DE REDE / FROTA\n2) E-MAIL : arthur.abreu@tecnomulti.com\n3) TELEFONE : 84 9946-0068\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nAnydesk: 1 307 766 794\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-64/new@oswintech.ddns.net','','mailing','new'),
(435,'Ticket',63,4,2,1,6,'2025-01-28 14:06:10','2025-02-17 13:29:16',NULL,'[GLPI #0000063] Novo acompanhamento PASTA DE REDE / FROTA','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000063] Novo acompanhamento PASTA DE REDE / FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_63\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_63&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA DE REDE / FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 11:04 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- joaopaulo.leite@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA DE REDE / FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;joaopaulo.leite@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 98584-2246&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;ANYDESK: 723335506&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:06]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Configuração da pasta concluído e testado.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:06&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_63 \n\n Chamado: Descrição\n\n Título : PASTA DE REDE / FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 11:04\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - joaopaulo.leite@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA DE REDE / FROTA\n2) E-MAIL : joaopaulo.leite@tecnomulti.com\n3) TELEFONE : 81 98584-2246\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nANYDESK: 723335506\n \n\n\n[28-01-2025 11:06]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nConfiguração da pasta concluído e testado.\nData de abertura 28-01-2025 11:06\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-63/add_followup.1738073170.2131393643@oswintech.ddns.net','','mailing','add_followup'),
(436,'Ticket',63,4,2,1,6,'2025-01-28 14:06:10','2025-02-17 13:29:16',NULL,'[GLPI #0000063] Novo acompanhamento PASTA DE REDE / FROTA','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000063] Novo acompanhamento PASTA DE REDE / FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_63\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_63&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA DE REDE / FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 11:04 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- joaopaulo.leite@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA DE REDE / FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;joaopaulo.leite@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 98584-2246&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;ANYDESK: 723335506&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:06]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Configuração da pasta concluído e testado.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:06&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_63 \n\n Chamado: Descrição\n\n Título : PASTA DE REDE / FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 11:04\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - joaopaulo.leite@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA DE REDE / FROTA\n2) E-MAIL : joaopaulo.leite@tecnomulti.com\n3) TELEFONE : 81 98584-2246\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nANYDESK: 723335506\n \n\n\n[28-01-2025 11:06]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nConfiguração da pasta concluído e testado.\nData de abertura 28-01-2025 11:06\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-63/add_followup.1738073170.212146618@oswintech.ddns.net','','mailing','add_followup'),
(437,'Ticket',59,4,2,1,6,'2025-01-28 14:06:51','2025-02-18 18:15:35',NULL,'[GLPI #0000059] Novo acompanhamento GOOGLE HEART','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000059] Novo acompanhamento GOOGLE HEART&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_59\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_59&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:GOOGLE HEART &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 10:46 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- gerson.lima@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;GOOGLE HEART&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;gerson.lima@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;71992750348&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;google heart com erro, necessário reinstalar &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:06]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;não esta abrindo&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:06&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 10:59]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Poderia mandar a print do erro, por gentileza!&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 10:59&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_59 \n\n Chamado: Descrição\n\n Título : GOOGLE HEART\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 10:46\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - gerson.lima@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : GOOGLE HEART\n2) E-MAIL : gerson.lima@tecnomulti.com\n3) TELEFONE : 71992750348\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \ngoogle heart com erro, necessário reinstalar \n \n\n\n[28-01-2025 11:06]\nAutor tecnomulti\nDescrição não esta abrindo\nData de abertura 28-01-2025 11:06\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 10:59]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nPoderia mandar a print do erro, por gentileza!\nData de abertura 28-01-2025 10:59\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-59/add_followup.1738073211.2069494286@oswintech.ddns.net','','mailing','add_followup'),
(438,'Ticket',59,4,2,1,6,'2025-01-28 14:06:51','2025-02-18 18:15:35',NULL,'[GLPI #0000059] Novo acompanhamento GOOGLE HEART','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000059] Novo acompanhamento GOOGLE HEART&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_59\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_59&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:GOOGLE HEART &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 10:46 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- gerson.lima@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;GOOGLE HEART&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;gerson.lima@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;71992750348&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;google heart com erro, necessário reinstalar &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:06]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;não esta abrindo&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:06&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 10:59]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Poderia mandar a print do erro, por gentileza!&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 10:59&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_59 \n\n Chamado: Descrição\n\n Título : GOOGLE HEART\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 10:46\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - gerson.lima@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : GOOGLE HEART\n2) E-MAIL : gerson.lima@tecnomulti.com\n3) TELEFONE : 71992750348\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \ngoogle heart com erro, necessário reinstalar \n \n\n\n[28-01-2025 11:06]\nAutor tecnomulti\nDescrição não esta abrindo\nData de abertura 28-01-2025 11:06\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 10:59]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nPoderia mandar a print do erro, por gentileza!\nData de abertura 28-01-2025 10:59\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-59/add_followup.1738073211.1502467954@oswintech.ddns.net','','mailing','add_followup'),
(439,'Ticket',63,4,2,1,6,'2025-01-28 14:11:39','2025-02-18 18:15:35',NULL,'[GLPI #0000063] Encerramento do chamado PASTA DE REDE / FROTA','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000063] Encerramento do chamado PASTA DE REDE / FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_63\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_63&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA DE REDE / FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 11:04 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:28-01-2025 11:11 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- joaopaulo.leite@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA DE REDE / FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;joaopaulo.leite@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 98584-2246&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;ANYDESK: 723335506&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 28-01-2025 11:11&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:06]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Configuração da pasta concluído e testado.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:06&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_63 \n\n Chamado: Descrição\n\n Título : PASTA DE REDE / FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 11:04\n Data de fechamento : 28-01-2025 11:11\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - joaopaulo.leite@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA DE REDE / FROTA\n2) E-MAIL : joaopaulo.leite@tecnomulti.com\n3) TELEFONE : 81 98584-2246\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nANYDESK: 723335506\n \n\n Data da solução : 28-01-2025 11:11\n Tipo de solução : \n Solução : \n \n\n\n[28-01-2025 11:06]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nConfiguração da pasta concluído e testado.\nData de abertura 28-01-2025 11:06\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-63/closed.1738073499.1885518831@oswintech.ddns.net','','mailing','closed'),
(440,'Ticket',63,4,2,1,6,'2025-01-28 14:11:39','2025-02-18 18:15:35',NULL,'[GLPI #0000063] Encerramento do chamado PASTA DE REDE / FROTA','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000063] Encerramento do chamado PASTA DE REDE / FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_63\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_63&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA DE REDE / FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 11:04 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:28-01-2025 11:11 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- joaopaulo.leite@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA DE REDE / FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;joaopaulo.leite@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 98584-2246&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;ANYDESK: 723335506&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 28-01-2025 11:11&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:06]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Configuração da pasta concluído e testado.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:06&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_63 \n\n Chamado: Descrição\n\n Título : PASTA DE REDE / FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 11:04\n Data de fechamento : 28-01-2025 11:11\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - joaopaulo.leite@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA DE REDE / FROTA\n2) E-MAIL : joaopaulo.leite@tecnomulti.com\n3) TELEFONE : 81 98584-2246\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nANYDESK: 723335506\n \n\n Data da solução : 28-01-2025 11:11\n Tipo de solução : \n Solução : \n \n\n\n[28-01-2025 11:06]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nConfiguração da pasta concluído e testado.\nData de abertura 28-01-2025 11:06\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-63/closed.1738073499.360699777@oswintech.ddns.net','','mailing','closed'),
(441,'Ticket',64,4,2,1,6,'2025-01-28 14:13:32','2025-02-18 18:15:35',NULL,'[GLPI #0000064] Novo acompanhamento PASTA DE REDE / FROTA','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000064] Novo acompanhamento PASTA DE REDE / FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_64\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_64&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA DE REDE / FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 11:06 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- arthur.abreu@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA DE REDE / FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;arthur.abreu@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84 9946-0068&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Anydesk: 1 307 766 794&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:13]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Configuração da pasta concluído e testado.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:13&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_64 \n\n Chamado: Descrição\n\n Título : PASTA DE REDE / FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 11:06\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - arthur.abreu@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA DE REDE / FROTA\n2) E-MAIL : arthur.abreu@tecnomulti.com\n3) TELEFONE : 84 9946-0068\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nAnydesk: 1 307 766 794\n \n\n\n[28-01-2025 11:13]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nConfiguração da pasta concluído e testado.\nData de abertura 28-01-2025 11:13\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-64/add_followup.1738073612.1100450182@oswintech.ddns.net','','mailing','add_followup'),
(442,'Ticket',64,4,2,1,6,'2025-01-28 14:13:32','2025-02-18 18:15:35',NULL,'[GLPI #0000064] Novo acompanhamento PASTA DE REDE / FROTA','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000064] Novo acompanhamento PASTA DE REDE / FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_64\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_64&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA DE REDE / FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 11:06 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- arthur.abreu@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA DE REDE / FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;arthur.abreu@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84 9946-0068&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Anydesk: 1 307 766 794&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:13]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Configuração da pasta concluído e testado.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:13&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_64 \n\n Chamado: Descrição\n\n Título : PASTA DE REDE / FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 11:06\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - arthur.abreu@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA DE REDE / FROTA\n2) E-MAIL : arthur.abreu@tecnomulti.com\n3) TELEFONE : 84 9946-0068\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nAnydesk: 1 307 766 794\n \n\n\n[28-01-2025 11:13]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nConfiguração da pasta concluído e testado.\nData de abertura 28-01-2025 11:13\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-64/add_followup.1738073612.988513250@oswintech.ddns.net','','mailing','add_followup'),
(443,'Ticket',64,4,2,1,6,'2025-01-28 14:13:35','2025-02-18 18:53:01',NULL,'[GLPI #0000064] Encerramento do chamado PASTA DE REDE / FROTA','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000064] Encerramento do chamado PASTA DE REDE / FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_64\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_64&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA DE REDE / FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 11:06 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:28-01-2025 11:13 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- arthur.abreu@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA DE REDE / FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;arthur.abreu@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84 9946-0068&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Anydesk: 1 307 766 794&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 28-01-2025 11:13&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:13]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Configuração da pasta concluído e testado.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:13&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_64 \n\n Chamado: Descrição\n\n Título : PASTA DE REDE / FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 11:06\n Data de fechamento : 28-01-2025 11:13\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - arthur.abreu@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA DE REDE / FROTA\n2) E-MAIL : arthur.abreu@tecnomulti.com\n3) TELEFONE : 84 9946-0068\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nAnydesk: 1 307 766 794\n \n\n Data da solução : 28-01-2025 11:13\n Tipo de solução : \n Solução : \n \n\n\n[28-01-2025 11:13]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nConfiguração da pasta concluído e testado.\nData de abertura 28-01-2025 11:13\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-64/closed.1738073615.1468084590@oswintech.ddns.net','','mailing','closed'),
(444,'Ticket',64,4,2,1,6,'2025-01-28 14:13:35','2025-02-18 18:53:01',NULL,'[GLPI #0000064] Encerramento do chamado PASTA DE REDE / FROTA','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000064] Encerramento do chamado PASTA DE REDE / FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_64\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_64&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA DE REDE / FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 11:06 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:28-01-2025 11:13 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- arthur.abreu@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA DE REDE / FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;arthur.abreu@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84 9946-0068&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Anydesk: 1 307 766 794&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 28-01-2025 11:13&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:13]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Configuração da pasta concluído e testado.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:13&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_64 \n\n Chamado: Descrição\n\n Título : PASTA DE REDE / FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 11:06\n Data de fechamento : 28-01-2025 11:13\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - arthur.abreu@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA DE REDE / FROTA\n2) E-MAIL : arthur.abreu@tecnomulti.com\n3) TELEFONE : 84 9946-0068\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nAnydesk: 1 307 766 794\n \n\n Data da solução : 28-01-2025 11:13\n Tipo de solução : \n Solução : \n \n\n\n[28-01-2025 11:13]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nConfiguração da pasta concluído e testado.\nData de abertura 28-01-2025 11:13\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-64/closed.1738073615.1820157591@oswintech.ddns.net','','mailing','closed'),
(445,'PluginFormcreatorFormAnswer',29,29,2,1,6,'2025-01-28 14:16:01','2025-02-18 18:53:01',NULL,'[GLPI] Sua requisição foi salva','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI] Sua requisi&#38;ccedil;&#38;atilde;o foi salva&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;p&#62;Olá,&#60;br /&#62;Sua requisição do GLPI foi salva com sucesso com o número 29 e transmitido para a equipe de helpdesk.&#60;br /&#62;Você pode ver suas respostas no seguinte link:&#60;br /&#62;https://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=29&#60;/p&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;','Olá,\nSua requisição do GLPI foi salva com sucesso com o número 29 e transmitido para a equipe de helpdesk.\nVocê pode ver suas respostas no seguinte link:\nhttps://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=29\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-PluginFormcreatorFormAnswer-29/plugin_formcreator_form_created.1738073762.1622355299@oswintech.ddns.net','','mailing','plugin_formcreator_form_created'),
(446,'Ticket',65,4,2,1,0,'2025-01-28 14:16:01','2025-01-28 14:16:01','2025-01-28 14:16:08','[GLPI #0000065] Novo chamado PASTA DE REDE / FROTA',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_65 \n\n Chamado: Descrição\n\n Título : PASTA DE REDE / FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 11:16\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA DE REDE / FROTA\n2) E-MAIL : gilmar.lourenco@tecnomulti.com\n3) TELEFONE : 84 99946-0230\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nANYDESK: 777746514\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(447,'Ticket',65,4,2,1,0,'2025-01-28 14:16:01','2025-01-28 14:16:01','2025-01-30 15:37:34','[GLPI #0000065] Novo chamado PASTA DE REDE / FROTA',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_65 \n\n Chamado: Descrição\n\n Título : PASTA DE REDE / FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 11:16\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA DE REDE / FROTA\n2) E-MAIL : gilmar.lourenco@tecnomulti.com\n3) TELEFONE : 84 99946-0230\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nANYDESK: 777746514\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(448,'Ticket',65,4,2,1,0,'2025-01-28 14:16:01','2025-01-28 14:16:01','2025-01-30 15:49:48','[GLPI #0000065] Novo chamado PASTA DE REDE / FROTA',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_65 \n\n Chamado: Descrição\n\n Título : PASTA DE REDE / FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 11:16\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA DE REDE / FROTA\n2) E-MAIL : gilmar.lourenco@tecnomulti.com\n3) TELEFONE : 84 99946-0230\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nANYDESK: 777746514\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(449,'Ticket',65,4,2,1,0,'2025-01-28 14:16:01','2025-01-28 14:16:01','2025-01-29 01:27:48','[GLPI #0000065] Novo chamado PASTA DE REDE / FROTA',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_65 \n\n Chamado: Descrição\n\n Título : PASTA DE REDE / FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 11:16\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA DE REDE / FROTA\n2) E-MAIL : gilmar.lourenco@tecnomulti.com\n3) TELEFONE : 84 99946-0230\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nANYDESK: 777746514\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(450,'Ticket',65,4,2,1,6,'2025-01-28 14:16:01','2025-02-18 18:53:01',NULL,'[GLPI #0000065] Novo chamado PASTA DE REDE / FROTA','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000065] Novo chamado PASTA DE REDE / FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_65\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_65&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA DE REDE / FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 11:16 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA DE REDE / FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;gilmar.lourenco@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84 99946-0230&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;ANYDESK: 777746514&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_65 \n\n Chamado: Descrição\n\n Título : PASTA DE REDE / FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 11:16\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA DE REDE / FROTA\n2) E-MAIL : gilmar.lourenco@tecnomulti.com\n3) TELEFONE : 84 99946-0230\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nANYDESK: 777746514\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-65/new@oswintech.ddns.net','','mailing','new'),
(451,'Ticket',65,4,2,1,6,'2025-01-28 14:16:01','2025-02-18 18:53:01',NULL,'[GLPI #0000065] Novo chamado PASTA DE REDE / FROTA','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000065] Novo chamado PASTA DE REDE / FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_65\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_65&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA DE REDE / FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 11:16 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA DE REDE / FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;gilmar.lourenco@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84 99946-0230&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;ANYDESK: 777746514&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_65 \n\n Chamado: Descrição\n\n Título : PASTA DE REDE / FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 11:16\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA DE REDE / FROTA\n2) E-MAIL : gilmar.lourenco@tecnomulti.com\n3) TELEFONE : 84 99946-0230\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nANYDESK: 777746514\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-65/new@oswintech.ddns.net','','mailing','new'),
(452,'Ticket',65,4,2,1,6,'2025-01-28 14:16:01','2025-02-18 18:53:01',NULL,'[GLPI #0000065] Novo chamado PASTA DE REDE / FROTA','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000065] Novo chamado PASTA DE REDE / FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_65\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_65&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA DE REDE / FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 11:16 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA DE REDE / FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;gilmar.lourenco@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84 99946-0230&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;ANYDESK: 777746514&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_65 \n\n Chamado: Descrição\n\n Título : PASTA DE REDE / FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 11:16\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA DE REDE / FROTA\n2) E-MAIL : gilmar.lourenco@tecnomulti.com\n3) TELEFONE : 84 99946-0230\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nANYDESK: 777746514\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-65/new@oswintech.ddns.net','','mailing','new'),
(453,'Ticket',65,4,2,1,6,'2025-01-28 14:16:01','2025-02-18 18:53:01',NULL,'[GLPI #0000065] Novo chamado PASTA DE REDE / FROTA','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000065] Novo chamado PASTA DE REDE / FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_65\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_65&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA DE REDE / FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 11:16 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA DE REDE / FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;gilmar.lourenco@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84 99946-0230&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;ANYDESK: 777746514&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_65 \n\n Chamado: Descrição\n\n Título : PASTA DE REDE / FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 11:16\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA DE REDE / FROTA\n2) E-MAIL : gilmar.lourenco@tecnomulti.com\n3) TELEFONE : 84 99946-0230\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nANYDESK: 777746514\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-65/new@oswintech.ddns.net','','mailing','new'),
(454,'PluginFormcreatorFormAnswer',30,29,2,0,5,'2025-01-28 14:31:35','2025-02-10 11:06:52',NULL,'[GLPI] Sua requisição foi salva','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI] Sua requisi&#38;ccedil;&#38;atilde;o foi salva&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;p&#62;Olá,&#60;br /&#62;Sua requisição do GLPI foi salva com sucesso com o número 30 e transmitido para a equipe de helpdesk.&#60;br /&#62;Você pode ver suas respostas no seguinte link:&#60;br /&#62;https://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=30&#60;/p&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;','Olá,\nSua requisição do GLPI foi salva com sucesso com o número 30 e transmitido para a equipe de helpdesk.\nVocê pode ver suas respostas no seguinte link:\nhttps://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=30\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-PluginFormcreatorFormAnswer-30/plugin_formcreator_form_created.1738074695.1954248461@oswintech.ddns.net','','mailing','plugin_formcreator_form_created'),
(455,'Ticket',66,4,2,1,0,'2025-01-28 14:31:35','2025-01-28 14:31:35','2025-01-28 14:31:38','[GLPI #0000066] Novo chamado Configurar o SAP ',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_66 \n\n Chamado: Descrição\n\n Título : Configurar o SAP \n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 11:31\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistemas VIVO/FIBRASIL  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Configurar o SAP \n2) E-MAIL : jose.carmo@tecnomulti.com\n3) TELEFONE : 81986954083\n4) CATEGORIA : Sistemas VIVO/FIBRASIL\n5) INFORME MAIS DETALHES : \nPreciso urgentemente que configure minha conta nova do Sap nessa maquina. \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(456,'Ticket',66,4,2,1,0,'2025-01-28 14:31:35','2025-01-28 14:31:35','2025-01-30 15:37:34','[GLPI #0000066] Novo chamado Configurar o SAP ',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_66 \n\n Chamado: Descrição\n\n Título : Configurar o SAP \n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 11:31\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistemas VIVO/FIBRASIL  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Configurar o SAP \n2) E-MAIL : jose.carmo@tecnomulti.com\n3) TELEFONE : 81986954083\n4) CATEGORIA : Sistemas VIVO/FIBRASIL\n5) INFORME MAIS DETALHES : \nPreciso urgentemente que configure minha conta nova do Sap nessa maquina. \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(457,'Ticket',66,4,2,1,0,'2025-01-28 14:31:35','2025-01-28 14:31:35','2025-01-30 15:49:48','[GLPI #0000066] Novo chamado Configurar o SAP ',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_66 \n\n Chamado: Descrição\n\n Título : Configurar o SAP \n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 11:31\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistemas VIVO/FIBRASIL  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Configurar o SAP \n2) E-MAIL : jose.carmo@tecnomulti.com\n3) TELEFONE : 81986954083\n4) CATEGORIA : Sistemas VIVO/FIBRASIL\n5) INFORME MAIS DETALHES : \nPreciso urgentemente que configure minha conta nova do Sap nessa maquina. \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(458,'Ticket',66,4,2,1,0,'2025-01-28 14:31:35','2025-01-28 14:31:35','2025-01-29 01:27:48','[GLPI #0000066] Novo chamado Configurar o SAP ',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_66 \n\n Chamado: Descrição\n\n Título : Configurar o SAP \n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 11:31\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistemas VIVO/FIBRASIL  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Configurar o SAP \n2) E-MAIL : jose.carmo@tecnomulti.com\n3) TELEFONE : 81986954083\n4) CATEGORIA : Sistemas VIVO/FIBRASIL\n5) INFORME MAIS DETALHES : \nPreciso urgentemente que configure minha conta nova do Sap nessa maquina. \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(459,'Ticket',66,4,2,0,5,'2025-01-28 14:31:35','2025-02-10 11:06:52',NULL,'[GLPI #0000066] Novo chamado Configurar o SAP ','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000066] Novo chamado Configurar o SAP &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_66\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_66&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Configurar o SAP  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 11:31 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistemas VIVO/FIBRASIL      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Configurar o SAP &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;jose.carmo@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81986954083&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistemas VIVO/FIBRASIL&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Preciso urgentemente que configure minha conta nova do Sap nessa maquina. &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_66 \n\n Chamado: Descrição\n\n Título : Configurar o SAP \n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 11:31\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistemas VIVO/FIBRASIL  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Configurar o SAP \n2) E-MAIL : jose.carmo@tecnomulti.com\n3) TELEFONE : 81986954083\n4) CATEGORIA : Sistemas VIVO/FIBRASIL\n5) INFORME MAIS DETALHES : \nPreciso urgentemente que configure minha conta nova do Sap nessa maquina. \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-66/new@oswintech.ddns.net','','mailing','new'),
(460,'Ticket',66,4,2,0,5,'2025-01-28 14:31:35','2025-02-10 11:06:52',NULL,'[GLPI #0000066] Novo chamado Configurar o SAP ','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000066] Novo chamado Configurar o SAP &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_66\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_66&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Configurar o SAP  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 11:31 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistemas VIVO/FIBRASIL      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Configurar o SAP &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;jose.carmo@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81986954083&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistemas VIVO/FIBRASIL&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Preciso urgentemente que configure minha conta nova do Sap nessa maquina. &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_66 \n\n Chamado: Descrição\n\n Título : Configurar o SAP \n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 11:31\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistemas VIVO/FIBRASIL  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Configurar o SAP \n2) E-MAIL : jose.carmo@tecnomulti.com\n3) TELEFONE : 81986954083\n4) CATEGORIA : Sistemas VIVO/FIBRASIL\n5) INFORME MAIS DETALHES : \nPreciso urgentemente que configure minha conta nova do Sap nessa maquina. \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-66/new@oswintech.ddns.net','','mailing','new'),
(461,'Ticket',66,4,2,0,5,'2025-01-28 14:31:35','2025-02-10 11:06:52',NULL,'[GLPI #0000066] Novo chamado Configurar o SAP ','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000066] Novo chamado Configurar o SAP &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_66\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_66&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Configurar o SAP  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 11:31 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistemas VIVO/FIBRASIL      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Configurar o SAP &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;jose.carmo@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81986954083&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistemas VIVO/FIBRASIL&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Preciso urgentemente que configure minha conta nova do Sap nessa maquina. &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_66 \n\n Chamado: Descrição\n\n Título : Configurar o SAP \n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 11:31\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistemas VIVO/FIBRASIL  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Configurar o SAP \n2) E-MAIL : jose.carmo@tecnomulti.com\n3) TELEFONE : 81986954083\n4) CATEGORIA : Sistemas VIVO/FIBRASIL\n5) INFORME MAIS DETALHES : \nPreciso urgentemente que configure minha conta nova do Sap nessa maquina. \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-66/new@oswintech.ddns.net','','mailing','new'),
(462,'Ticket',66,4,2,0,5,'2025-01-28 14:31:35','2025-02-10 11:06:52',NULL,'[GLPI #0000066] Novo chamado Configurar o SAP ','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000066] Novo chamado Configurar o SAP &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_66\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_66&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Configurar o SAP  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 11:31 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistemas VIVO/FIBRASIL      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Configurar o SAP &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;jose.carmo@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81986954083&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistemas VIVO/FIBRASIL&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Preciso urgentemente que configure minha conta nova do Sap nessa maquina. &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_66 \n\n Chamado: Descrição\n\n Título : Configurar o SAP \n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 11:31\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistemas VIVO/FIBRASIL  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Configurar o SAP \n2) E-MAIL : jose.carmo@tecnomulti.com\n3) TELEFONE : 81986954083\n4) CATEGORIA : Sistemas VIVO/FIBRASIL\n5) INFORME MAIS DETALHES : \nPreciso urgentemente que configure minha conta nova do Sap nessa maquina. \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-66/new@oswintech.ddns.net','','mailing','new'),
(463,'Ticket',31,4,2,0,5,'2025-01-28 14:40:22','2025-02-10 11:06:52',NULL,'[GLPI #0000031] Novo acompanhamento VPN','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000031] Novo acompanhamento VPN&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_31\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_31&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:VPN &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:14-01-2025 15:57 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Helpdesk&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Pendente&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;p&#62;Telefone:81 992936741&#60;/p&#62;\n&#60;p&#62;E-mail: fabiano.melo@tecnomulti.com&#60;/p&#62;\n&#60;p&#62;boa tarde ! solicito por favor a VPN para acompanhar os testes da minha equipe &#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;\n&#60;p&#62;favor assim que possivel Grato &#60;/p&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:40]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Chamado encerrado por falta de resposta.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:40&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [14-01-2025 16:58]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, a solicitação de VPN tem que ser solicitada também por email para o supervisor responsável. Lembrar de colocar em cópia o email do suporte(suporte@tecnomulti.com) para conseguirmos acompanhar a autorização.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;14-01-2025 16:58&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_31 \n\n Chamado: Descrição\n\n Título : VPN\n Requerentes :  tecnomulti  \n Data de abertura : 14-01-2025 15:57\n Data de fechamento : \n Origem da requisição : Helpdesk\nItem associado :\n\n\n\n Status : Pendente\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : Telefone:81 992936741\n\nE-mail: fabiano.melo@tecnomulti.com\n\nboa tarde ! solicito por favor a VPN para acompanhar os testes da minha equipe \n\n \n\nfavor assim que possivel Grato \n \n\n\n[28-01-2025 11:40]\nAutor Luan Medeiros\nDescrição Chamado encerrado por falta de resposta.\nData de abertura 28-01-2025 11:40\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[14-01-2025 16:58]\nAutor Luan Medeiros\nDescrição Boa tarde, a solicitação de VPN tem que ser solicitada também por email para o supervisor responsável. Lembrar de colocar em cópia o email do suporte(suporte@tecnomulti.com) para conseguirmos acompanhar a autorização.\nData de abertura 14-01-2025 16:58\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-31/add_followup.1738075222.1107504429@oswintech.ddns.net','','mailing','add_followup'),
(464,'Ticket',31,4,2,0,5,'2025-01-28 14:40:22','2025-02-10 11:06:52',NULL,'[GLPI #0000031] Novo acompanhamento VPN','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000031] Novo acompanhamento VPN&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_31\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_31&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:VPN &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:14-01-2025 15:57 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Helpdesk&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Pendente&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;p&#62;Telefone:81 992936741&#60;/p&#62;\n&#60;p&#62;E-mail: fabiano.melo@tecnomulti.com&#60;/p&#62;\n&#60;p&#62;boa tarde ! solicito por favor a VPN para acompanhar os testes da minha equipe &#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;\n&#60;p&#62;favor assim que possivel Grato &#60;/p&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:40]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Chamado encerrado por falta de resposta.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:40&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [14-01-2025 16:58]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, a solicitação de VPN tem que ser solicitada também por email para o supervisor responsável. Lembrar de colocar em cópia o email do suporte(suporte@tecnomulti.com) para conseguirmos acompanhar a autorização.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;14-01-2025 16:58&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_31 \n\n Chamado: Descrição\n\n Título : VPN\n Requerentes :  tecnomulti  \n Data de abertura : 14-01-2025 15:57\n Data de fechamento : \n Origem da requisição : Helpdesk\nItem associado :\n\n\n\n Status : Pendente\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : Telefone:81 992936741\n\nE-mail: fabiano.melo@tecnomulti.com\n\nboa tarde ! solicito por favor a VPN para acompanhar os testes da minha equipe \n\n \n\nfavor assim que possivel Grato \n \n\n\n[28-01-2025 11:40]\nAutor Luan Medeiros\nDescrição Chamado encerrado por falta de resposta.\nData de abertura 28-01-2025 11:40\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[14-01-2025 16:58]\nAutor Luan Medeiros\nDescrição Boa tarde, a solicitação de VPN tem que ser solicitada também por email para o supervisor responsável. Lembrar de colocar em cópia o email do suporte(suporte@tecnomulti.com) para conseguirmos acompanhar a autorização.\nData de abertura 14-01-2025 16:58\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-31/add_followup.1738075222.2137088583@oswintech.ddns.net','','mailing','add_followup'),
(465,'Ticket',31,4,2,0,5,'2025-01-28 14:40:30','2025-02-10 11:06:52',NULL,'[GLPI #0000031] Encerramento do chamado VPN','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000031] Encerramento do chamado VPN&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_31\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_31&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:VPN &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:14-01-2025 15:57 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:28-01-2025 11:40 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Helpdesk&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;p&#62;Telefone:81 992936741&#60;/p&#62;\n&#60;p&#62;E-mail: fabiano.melo@tecnomulti.com&#60;/p&#62;\n&#60;p&#62;boa tarde ! solicito por favor a VPN para acompanhar os testes da minha equipe &#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;\n&#60;p&#62;favor assim que possivel Grato &#60;/p&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 28-01-2025 11:40&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:40]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Chamado encerrado por falta de resposta.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:40&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [14-01-2025 16:58]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, a solicitação de VPN tem que ser solicitada também por email para o supervisor responsável. Lembrar de colocar em cópia o email do suporte(suporte@tecnomulti.com) para conseguirmos acompanhar a autorização.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;14-01-2025 16:58&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_31 \n\n Chamado: Descrição\n\n Título : VPN\n Requerentes :  tecnomulti  \n Data de abertura : 14-01-2025 15:57\n Data de fechamento : 28-01-2025 11:40\n Origem da requisição : Helpdesk\nItem associado :\n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : Telefone:81 992936741\n\nE-mail: fabiano.melo@tecnomulti.com\n\nboa tarde ! solicito por favor a VPN para acompanhar os testes da minha equipe \n\n \n\nfavor assim que possivel Grato \n \n\n Data da solução : 28-01-2025 11:40\n Tipo de solução : \n Solução : \n \n\n\n[28-01-2025 11:40]\nAutor Luan Medeiros\nDescrição Chamado encerrado por falta de resposta.\nData de abertura 28-01-2025 11:40\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[14-01-2025 16:58]\nAutor Luan Medeiros\nDescrição Boa tarde, a solicitação de VPN tem que ser solicitada também por email para o supervisor responsável. Lembrar de colocar em cópia o email do suporte(suporte@tecnomulti.com) para conseguirmos acompanhar a autorização.\nData de abertura 14-01-2025 16:58\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-31/closed.1738075230.691758483@oswintech.ddns.net','','mailing','closed'),
(466,'Ticket',31,4,2,0,5,'2025-01-28 14:40:30','2025-02-10 11:06:52',NULL,'[GLPI #0000031] Encerramento do chamado VPN','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000031] Encerramento do chamado VPN&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_31\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_31&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:VPN &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:14-01-2025 15:57 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:28-01-2025 11:40 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Helpdesk&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;p&#62;Telefone:81 992936741&#60;/p&#62;\n&#60;p&#62;E-mail: fabiano.melo@tecnomulti.com&#60;/p&#62;\n&#60;p&#62;boa tarde ! solicito por favor a VPN para acompanhar os testes da minha equipe &#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;\n&#60;p&#62;favor assim que possivel Grato &#60;/p&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 28-01-2025 11:40&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:40]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Chamado encerrado por falta de resposta.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:40&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [14-01-2025 16:58]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, a solicitação de VPN tem que ser solicitada também por email para o supervisor responsável. Lembrar de colocar em cópia o email do suporte(suporte@tecnomulti.com) para conseguirmos acompanhar a autorização.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;14-01-2025 16:58&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_31 \n\n Chamado: Descrição\n\n Título : VPN\n Requerentes :  tecnomulti  \n Data de abertura : 14-01-2025 15:57\n Data de fechamento : 28-01-2025 11:40\n Origem da requisição : Helpdesk\nItem associado :\n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : Telefone:81 992936741\n\nE-mail: fabiano.melo@tecnomulti.com\n\nboa tarde ! solicito por favor a VPN para acompanhar os testes da minha equipe \n\n \n\nfavor assim que possivel Grato \n \n\n Data da solução : 28-01-2025 11:40\n Tipo de solução : \n Solução : \n \n\n\n[28-01-2025 11:40]\nAutor Luan Medeiros\nDescrição Chamado encerrado por falta de resposta.\nData de abertura 28-01-2025 11:40\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[14-01-2025 16:58]\nAutor Luan Medeiros\nDescrição Boa tarde, a solicitação de VPN tem que ser solicitada também por email para o supervisor responsável. Lembrar de colocar em cópia o email do suporte(suporte@tecnomulti.com) para conseguirmos acompanhar a autorização.\nData de abertura 14-01-2025 16:58\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-31/closed.1738075230.959487904@oswintech.ddns.net','','mailing','closed'),
(467,'Ticket',58,4,2,0,5,'2025-01-28 14:42:25','2025-02-10 11:06:52',NULL,'[GLPI #0000058] Novo acompanhamento OSP control não está abrindo e ativar o e-mail ','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000058] Novo acompanhamento OSP control n&#38;atilde;o est&#38;aacute; abrindo e ativar o e-mail &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_58\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_58&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:OSP control n&#38;atilde;o est&#38;aacute; abrindo e ativar o e-mail  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 09:39 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- selma.belizario@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistemas VIVO/FIBRASIL      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;OSP control não está abrindo e ativar o e-mail &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;selma.belizario@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83 98808-8867&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistemas VIVO/FIBRASIL&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;toda vez que tento acessar o OSP Control aparece a mensagem: ops, algo deu errado. Por favor, tente novamente. Consigo acessar em outo notebook, mas no meu não acessa. &#60;/p&#62;\n&#60;p&#62;Também preciso que o meu e-mail seja migrado do notebook anterior, para o que estou utilizado agora.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:42]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, poderia passar o acesso remoto por favor(anydesk ou teamviewer).&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:42&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_58 \n\n Chamado: Descrição\n\n Título : OSP control não está abrindo e ativar o e-mail \n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 09:39\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - selma.belizario@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistemas VIVO/FIBRASIL  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : OSP control não está abrindo e ativar o e-mail \n2) E-MAIL : selma.belizario@tecnomulti.com\n3) TELEFONE : 83 98808-8867\n4) CATEGORIA : Sistemas VIVO/FIBRASIL\n5) INFORME MAIS DETALHES : \ntoda vez que tento acessar o OSP Control aparece a mensagem: ops, algo deu errado. Por favor, tente novamente. Consigo acessar em outo notebook, mas no meu não acessa. \n\nTambém preciso que o meu e-mail seja migrado do notebook anterior, para o que estou utilizado agora.\n \n\n\n[28-01-2025 11:42]\nAutor Luan Medeiros\nDescrição Bom dia, poderia passar o acesso remoto por favor(anydesk ou teamviewer).\nData de abertura 28-01-2025 11:42\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-58/add_followup.1738075345.540672323@oswintech.ddns.net','','mailing','add_followup'),
(468,'Ticket',58,4,2,0,5,'2025-01-28 14:42:25','2025-02-10 11:06:52',NULL,'[GLPI #0000058] Novo acompanhamento OSP control não está abrindo e ativar o e-mail ','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000058] Novo acompanhamento OSP control n&#38;atilde;o est&#38;aacute; abrindo e ativar o e-mail &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_58\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_58&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:OSP control n&#38;atilde;o est&#38;aacute; abrindo e ativar o e-mail  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 09:39 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- selma.belizario@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistemas VIVO/FIBRASIL      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;OSP control não está abrindo e ativar o e-mail &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;selma.belizario@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83 98808-8867&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistemas VIVO/FIBRASIL&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;toda vez que tento acessar o OSP Control aparece a mensagem: ops, algo deu errado. Por favor, tente novamente. Consigo acessar em outo notebook, mas no meu não acessa. &#60;/p&#62;\n&#60;p&#62;Também preciso que o meu e-mail seja migrado do notebook anterior, para o que estou utilizado agora.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:42]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, poderia passar o acesso remoto por favor(anydesk ou teamviewer).&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:42&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_58 \n\n Chamado: Descrição\n\n Título : OSP control não está abrindo e ativar o e-mail \n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 09:39\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - selma.belizario@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistemas VIVO/FIBRASIL  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : OSP control não está abrindo e ativar o e-mail \n2) E-MAIL : selma.belizario@tecnomulti.com\n3) TELEFONE : 83 98808-8867\n4) CATEGORIA : Sistemas VIVO/FIBRASIL\n5) INFORME MAIS DETALHES : \ntoda vez que tento acessar o OSP Control aparece a mensagem: ops, algo deu errado. Por favor, tente novamente. Consigo acessar em outo notebook, mas no meu não acessa. \n\nTambém preciso que o meu e-mail seja migrado do notebook anterior, para o que estou utilizado agora.\n \n\n\n[28-01-2025 11:42]\nAutor Luan Medeiros\nDescrição Bom dia, poderia passar o acesso remoto por favor(anydesk ou teamviewer).\nData de abertura 28-01-2025 11:42\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-58/add_followup.1738075345.1957612396@oswintech.ddns.net','','mailing','add_followup'),
(469,'Ticket',59,4,2,0,5,'2025-01-28 14:46:04','2025-02-10 11:06:52',NULL,'[GLPI #0000059] Novo acompanhamento GOOGLE HEART','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000059] Novo acompanhamento GOOGLE HEART&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_59\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_59&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:GOOGLE HEART &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 10:46 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- gerson.lima@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;GOOGLE HEART&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;gerson.lima@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;71992750348&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;google heart com erro, necessário reinstalar &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:46]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;já desinstalei e instalei e não abre de jeito nenhum &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:46&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:06]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;não esta abrindo&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:06&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 10:59]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Poderia mandar a print do erro, por gentileza!&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 10:59&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 3&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_59 \n\n Chamado: Descrição\n\n Título : GOOGLE HEART\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 10:46\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - gerson.lima@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : GOOGLE HEART\n2) E-MAIL : gerson.lima@tecnomulti.com\n3) TELEFONE : 71992750348\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \ngoogle heart com erro, necessário reinstalar \n \n\n\n[28-01-2025 11:46]\nAutor tecnomulti\nDescrição já desinstalei e instalei e não abre de jeito nenhum \nData de abertura 28-01-2025 11:46\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 11:06]\nAutor tecnomulti\nDescrição não esta abrindo\nData de abertura 28-01-2025 11:06\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 10:59]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nPoderia mandar a print do erro, por gentileza!\nData de abertura 28-01-2025 10:59\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-59/add_followup.1738075564.493755743@oswintech.ddns.net','','mailing','add_followup'),
(470,'Ticket',59,4,2,0,5,'2025-01-28 14:46:04','2025-02-10 11:06:52',NULL,'[GLPI #0000059] Novo acompanhamento GOOGLE HEART','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000059] Novo acompanhamento GOOGLE HEART&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_59\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_59&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:GOOGLE HEART &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 10:46 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- gerson.lima@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;GOOGLE HEART&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;gerson.lima@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;71992750348&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;google heart com erro, necessário reinstalar &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:46]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;já desinstalei e instalei e não abre de jeito nenhum &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:46&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:06]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;não esta abrindo&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:06&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 10:59]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Poderia mandar a print do erro, por gentileza!&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 10:59&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 3&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_59 \n\n Chamado: Descrição\n\n Título : GOOGLE HEART\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 10:46\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - gerson.lima@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : GOOGLE HEART\n2) E-MAIL : gerson.lima@tecnomulti.com\n3) TELEFONE : 71992750348\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \ngoogle heart com erro, necessário reinstalar \n \n\n\n[28-01-2025 11:46]\nAutor tecnomulti\nDescrição já desinstalei e instalei e não abre de jeito nenhum \nData de abertura 28-01-2025 11:46\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 11:06]\nAutor tecnomulti\nDescrição não esta abrindo\nData de abertura 28-01-2025 11:06\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 10:59]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nPoderia mandar a print do erro, por gentileza!\nData de abertura 28-01-2025 10:59\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-59/add_followup.1738075564.1661350680@oswintech.ddns.net','','mailing','add_followup'),
(471,'Ticket',65,4,2,0,5,'2025-01-28 14:49:25','2025-02-10 11:06:52',NULL,'[GLPI #0000065] Novo acompanhamento PASTA DE REDE / FROTA','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000065] Novo acompanhamento PASTA DE REDE / FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_65\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_65&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA DE REDE / FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 11:16 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- gilmar.lourenco@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA DE REDE / FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;gilmar.lourenco@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84 99946-0230&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;ANYDESK: 777746514&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:49]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Mapeamento de rede realizado.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:49&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_65 \n\n Chamado: Descrição\n\n Título : PASTA DE REDE / FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 11:16\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - gilmar.lourenco@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA DE REDE / FROTA\n2) E-MAIL : gilmar.lourenco@tecnomulti.com\n3) TELEFONE : 84 99946-0230\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nANYDESK: 777746514\n \n\n\n[28-01-2025 11:49]\nAutor Luan Medeiros\nDescrição Mapeamento de rede realizado.\nData de abertura 28-01-2025 11:49\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-65/add_followup.1738075765.302891650@oswintech.ddns.net','','mailing','add_followup'),
(472,'Ticket',65,4,2,0,5,'2025-01-28 14:49:25','2025-02-10 11:06:52',NULL,'[GLPI #0000065] Novo acompanhamento PASTA DE REDE / FROTA','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000065] Novo acompanhamento PASTA DE REDE / FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_65\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_65&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA DE REDE / FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 11:16 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- gilmar.lourenco@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA DE REDE / FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;gilmar.lourenco@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84 99946-0230&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;ANYDESK: 777746514&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:49]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Mapeamento de rede realizado.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:49&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_65 \n\n Chamado: Descrição\n\n Título : PASTA DE REDE / FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 11:16\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - gilmar.lourenco@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA DE REDE / FROTA\n2) E-MAIL : gilmar.lourenco@tecnomulti.com\n3) TELEFONE : 84 99946-0230\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nANYDESK: 777746514\n \n\n\n[28-01-2025 11:49]\nAutor Luan Medeiros\nDescrição Mapeamento de rede realizado.\nData de abertura 28-01-2025 11:49\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-65/add_followup.1738075765.1426968553@oswintech.ddns.net','','mailing','add_followup'),
(473,'Ticket',65,4,2,0,5,'2025-01-28 14:49:48','2025-02-10 11:06:52',NULL,'[GLPI #0000065] Encerramento do chamado PASTA DE REDE / FROTA','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000065] Encerramento do chamado PASTA DE REDE / FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_65\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_65&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA DE REDE / FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 11:16 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:28-01-2025 11:49 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- gilmar.lourenco@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA DE REDE / FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;gilmar.lourenco@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84 99946-0230&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;ANYDESK: 777746514&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 28-01-2025 11:49&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:49]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Mapeamento de rede realizado.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:49&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_65 \n\n Chamado: Descrição\n\n Título : PASTA DE REDE / FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 11:16\n Data de fechamento : 28-01-2025 11:49\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - gilmar.lourenco@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA DE REDE / FROTA\n2) E-MAIL : gilmar.lourenco@tecnomulti.com\n3) TELEFONE : 84 99946-0230\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nANYDESK: 777746514\n \n\n Data da solução : 28-01-2025 11:49\n Tipo de solução : \n Solução : \n \n\n\n[28-01-2025 11:49]\nAutor Luan Medeiros\nDescrição Mapeamento de rede realizado.\nData de abertura 28-01-2025 11:49\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-65/closed.1738075788.581586442@oswintech.ddns.net','','mailing','closed'),
(474,'Ticket',65,4,2,0,5,'2025-01-28 14:49:48','2025-02-10 11:06:52',NULL,'[GLPI #0000065] Encerramento do chamado PASTA DE REDE / FROTA','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000065] Encerramento do chamado PASTA DE REDE / FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_65\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_65&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA DE REDE / FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 11:16 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:28-01-2025 11:49 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- gilmar.lourenco@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA DE REDE / FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;gilmar.lourenco@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84 99946-0230&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;ANYDESK: 777746514&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 28-01-2025 11:49&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:49]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Mapeamento de rede realizado.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:49&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_65 \n\n Chamado: Descrição\n\n Título : PASTA DE REDE / FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 11:16\n Data de fechamento : 28-01-2025 11:49\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - gilmar.lourenco@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA DE REDE / FROTA\n2) E-MAIL : gilmar.lourenco@tecnomulti.com\n3) TELEFONE : 84 99946-0230\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nANYDESK: 777746514\n \n\n Data da solução : 28-01-2025 11:49\n Tipo de solução : \n Solução : \n \n\n\n[28-01-2025 11:49]\nAutor Luan Medeiros\nDescrição Mapeamento de rede realizado.\nData de abertura 28-01-2025 11:49\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-65/closed.1738075789.1341894521@oswintech.ddns.net','','mailing','closed'),
(475,'Ticket',66,4,2,0,5,'2025-01-28 14:52:26','2025-02-14 14:40:13',NULL,'[GLPI #0000066] Novo acompanhamento Configurar o SAP ','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000066] Novo acompanhamento Configurar o SAP &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_66\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_66&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Configurar o SAP  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 11:31 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- jose.carmo@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistemas VIVO/FIBRASIL      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Configurar o SAP &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;jose.carmo@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81986954083&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistemas VIVO/FIBRASIL&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Preciso urgentemente que configure minha conta nova do Sap nessa maquina. &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:52]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, manda o acesso remoto(anydesk ou teamviewer) do seu computador por favor.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:52&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_66 \n\n Chamado: Descrição\n\n Título : Configurar o SAP \n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 11:31\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - jose.carmo@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistemas VIVO/FIBRASIL  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Configurar o SAP \n2) E-MAIL : jose.carmo@tecnomulti.com\n3) TELEFONE : 81986954083\n4) CATEGORIA : Sistemas VIVO/FIBRASIL\n5) INFORME MAIS DETALHES : \nPreciso urgentemente que configure minha conta nova do Sap nessa maquina. \n \n\n\n[28-01-2025 11:52]\nAutor Luan Medeiros\nDescrição Bom dia, manda o acesso remoto(anydesk ou teamviewer) do seu computador por favor.\nData de abertura 28-01-2025 11:52\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-66/add_followup.1738075946.1275345023@oswintech.ddns.net','','mailing','add_followup'),
(476,'Ticket',66,4,2,0,5,'2025-01-28 14:52:26','2025-02-14 14:40:13',NULL,'[GLPI #0000066] Novo acompanhamento Configurar o SAP ','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000066] Novo acompanhamento Configurar o SAP &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_66\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_66&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Configurar o SAP  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 11:31 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- jose.carmo@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistemas VIVO/FIBRASIL      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Configurar o SAP &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;jose.carmo@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81986954083&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistemas VIVO/FIBRASIL&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Preciso urgentemente que configure minha conta nova do Sap nessa maquina. &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:52]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, manda o acesso remoto(anydesk ou teamviewer) do seu computador por favor.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:52&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_66 \n\n Chamado: Descrição\n\n Título : Configurar o SAP \n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 11:31\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - jose.carmo@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistemas VIVO/FIBRASIL  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Configurar o SAP \n2) E-MAIL : jose.carmo@tecnomulti.com\n3) TELEFONE : 81986954083\n4) CATEGORIA : Sistemas VIVO/FIBRASIL\n5) INFORME MAIS DETALHES : \nPreciso urgentemente que configure minha conta nova do Sap nessa maquina. \n \n\n\n[28-01-2025 11:52]\nAutor Luan Medeiros\nDescrição Bom dia, manda o acesso remoto(anydesk ou teamviewer) do seu computador por favor.\nData de abertura 28-01-2025 11:52\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-66/add_followup.1738075946.799851248@oswintech.ddns.net','','mailing','add_followup'),
(477,'Ticket',59,4,2,0,5,'2025-01-28 14:53:00','2025-02-14 14:40:13',NULL,'[GLPI #0000059] Novo acompanhamento GOOGLE HEART','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000059] Novo acompanhamento GOOGLE HEART&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_59\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_59&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:GOOGLE HEART &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 10:46 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- gerson.lima@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;GOOGLE HEART&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;gerson.lima@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;71992750348&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;google heart com erro, necessário reinstalar &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:53]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;?&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:53&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:46]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;já desinstalei e instalei e não abre de jeito nenhum &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:46&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:06]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;não esta abrindo&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:06&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 10:59]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Poderia mandar a print do erro, por gentileza!&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 10:59&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 4&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_59 \n\n Chamado: Descrição\n\n Título : GOOGLE HEART\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 10:46\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - gerson.lima@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : GOOGLE HEART\n2) E-MAIL : gerson.lima@tecnomulti.com\n3) TELEFONE : 71992750348\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \ngoogle heart com erro, necessário reinstalar \n \n\n\n[28-01-2025 11:53]\nAutor tecnomulti\nDescrição ?\nData de abertura 28-01-2025 11:53\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 11:46]\nAutor tecnomulti\nDescrição já desinstalei e instalei e não abre de jeito nenhum \nData de abertura 28-01-2025 11:46\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 11:06]\nAutor tecnomulti\nDescrição não esta abrindo\nData de abertura 28-01-2025 11:06\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 10:59]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nPoderia mandar a print do erro, por gentileza!\nData de abertura 28-01-2025 10:59\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 4\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-59/add_followup.1738075980.1387232779@oswintech.ddns.net','','mailing','add_followup'),
(478,'Ticket',59,4,2,0,5,'2025-01-28 14:53:00','2025-02-14 14:40:13',NULL,'[GLPI #0000059] Novo acompanhamento GOOGLE HEART','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000059] Novo acompanhamento GOOGLE HEART&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_59\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_59&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:GOOGLE HEART &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 10:46 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- gerson.lima@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;GOOGLE HEART&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;gerson.lima@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;71992750348&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;google heart com erro, necessário reinstalar &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:53]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;?&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:53&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:46]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;já desinstalei e instalei e não abre de jeito nenhum &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:46&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:06]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;não esta abrindo&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:06&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 10:59]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Poderia mandar a print do erro, por gentileza!&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 10:59&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 4&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_59 \n\n Chamado: Descrição\n\n Título : GOOGLE HEART\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 10:46\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - gerson.lima@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : GOOGLE HEART\n2) E-MAIL : gerson.lima@tecnomulti.com\n3) TELEFONE : 71992750348\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \ngoogle heart com erro, necessário reinstalar \n \n\n\n[28-01-2025 11:53]\nAutor tecnomulti\nDescrição ?\nData de abertura 28-01-2025 11:53\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 11:46]\nAutor tecnomulti\nDescrição já desinstalei e instalei e não abre de jeito nenhum \nData de abertura 28-01-2025 11:46\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 11:06]\nAutor tecnomulti\nDescrição não esta abrindo\nData de abertura 28-01-2025 11:06\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 10:59]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nPoderia mandar a print do erro, por gentileza!\nData de abertura 28-01-2025 10:59\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 4\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-59/add_followup.1738075980.821502031@oswintech.ddns.net','','mailing','add_followup'),
(479,'PluginFormcreatorFormAnswer',31,29,2,0,5,'2025-01-28 15:12:53','2025-02-18 18:53:01',NULL,'[GLPI] Sua requisição foi salva','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI] Sua requisi&#38;ccedil;&#38;atilde;o foi salva&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;p&#62;Olá,&#60;br /&#62;Sua requisição do GLPI foi salva com sucesso com o número 31 e transmitido para a equipe de helpdesk.&#60;br /&#62;Você pode ver suas respostas no seguinte link:&#60;br /&#62;https://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=31&#60;/p&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;','Olá,\nSua requisição do GLPI foi salva com sucesso com o número 31 e transmitido para a equipe de helpdesk.\nVocê pode ver suas respostas no seguinte link:\nhttps://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=31\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-PluginFormcreatorFormAnswer-31/plugin_formcreator_form_created.1738077173.800240453@oswintech.ddns.net','','mailing','plugin_formcreator_form_created'),
(480,'Ticket',67,4,2,1,0,'2025-01-28 15:12:53','2025-01-28 15:12:53','2025-01-28 15:12:57','[GLPI #0000067] Novo chamado CONECTAR IMPRESSORA NO PC',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_67 \n\n Chamado: Descrição\n\n Título : CONECTAR IMPRESSORA NO PC\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 12:12\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CONECTAR IMPRESSORA NO PC\n2) E-MAIL : elton.jorge@tecnomulti.com\n3) TELEFONE : +55 83 8199-1245\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nerro ao tentar impressão\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(481,'Ticket',67,4,2,1,0,'2025-01-28 15:12:53','2025-01-28 15:12:53','2025-01-30 15:37:34','[GLPI #0000067] Novo chamado CONECTAR IMPRESSORA NO PC',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_67 \n\n Chamado: Descrição\n\n Título : CONECTAR IMPRESSORA NO PC\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 12:12\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CONECTAR IMPRESSORA NO PC\n2) E-MAIL : elton.jorge@tecnomulti.com\n3) TELEFONE : +55 83 8199-1245\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nerro ao tentar impressão\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(482,'Ticket',67,4,2,1,0,'2025-01-28 15:12:53','2025-01-28 15:12:53','2025-01-30 15:49:48','[GLPI #0000067] Novo chamado CONECTAR IMPRESSORA NO PC',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_67 \n\n Chamado: Descrição\n\n Título : CONECTAR IMPRESSORA NO PC\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 12:12\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CONECTAR IMPRESSORA NO PC\n2) E-MAIL : elton.jorge@tecnomulti.com\n3) TELEFONE : +55 83 8199-1245\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nerro ao tentar impressão\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(483,'Ticket',67,4,2,1,0,'2025-01-28 15:12:53','2025-01-28 15:12:53','2025-01-29 01:27:48','[GLPI #0000067] Novo chamado CONECTAR IMPRESSORA NO PC',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_67 \n\n Chamado: Descrição\n\n Título : CONECTAR IMPRESSORA NO PC\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 12:12\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CONECTAR IMPRESSORA NO PC\n2) E-MAIL : elton.jorge@tecnomulti.com\n3) TELEFONE : +55 83 8199-1245\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nerro ao tentar impressão\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(484,'Ticket',67,4,2,0,5,'2025-01-28 15:12:53','2025-02-18 18:53:01',NULL,'[GLPI #0000067] Novo chamado CONECTAR IMPRESSORA NO PC','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000067] Novo chamado CONECTAR IMPRESSORA NO PC&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_67\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_67&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:CONECTAR IMPRESSORA NO PC &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 12:12 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CONECTAR IMPRESSORA NO PC&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;elton.jorge@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;+55 83 8199-1245&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;erro ao tentar impressão&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_67 \n\n Chamado: Descrição\n\n Título : CONECTAR IMPRESSORA NO PC\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 12:12\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CONECTAR IMPRESSORA NO PC\n2) E-MAIL : elton.jorge@tecnomulti.com\n3) TELEFONE : +55 83 8199-1245\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nerro ao tentar impressão\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-67/new@oswintech.ddns.net','','mailing','new'),
(485,'Ticket',67,4,2,0,5,'2025-01-28 15:12:53','2025-02-18 18:53:01',NULL,'[GLPI #0000067] Novo chamado CONECTAR IMPRESSORA NO PC','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000067] Novo chamado CONECTAR IMPRESSORA NO PC&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_67\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_67&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:CONECTAR IMPRESSORA NO PC &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 12:12 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CONECTAR IMPRESSORA NO PC&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;elton.jorge@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;+55 83 8199-1245&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;erro ao tentar impressão&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_67 \n\n Chamado: Descrição\n\n Título : CONECTAR IMPRESSORA NO PC\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 12:12\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CONECTAR IMPRESSORA NO PC\n2) E-MAIL : elton.jorge@tecnomulti.com\n3) TELEFONE : +55 83 8199-1245\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nerro ao tentar impressão\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-67/new@oswintech.ddns.net','','mailing','new'),
(486,'Ticket',67,4,2,0,5,'2025-01-28 15:12:53','2025-02-18 18:53:01',NULL,'[GLPI #0000067] Novo chamado CONECTAR IMPRESSORA NO PC','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000067] Novo chamado CONECTAR IMPRESSORA NO PC&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_67\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_67&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:CONECTAR IMPRESSORA NO PC &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 12:12 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CONECTAR IMPRESSORA NO PC&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;elton.jorge@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;+55 83 8199-1245&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;erro ao tentar impressão&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_67 \n\n Chamado: Descrição\n\n Título : CONECTAR IMPRESSORA NO PC\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 12:12\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CONECTAR IMPRESSORA NO PC\n2) E-MAIL : elton.jorge@tecnomulti.com\n3) TELEFONE : +55 83 8199-1245\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nerro ao tentar impressão\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-67/new@oswintech.ddns.net','','mailing','new'),
(487,'Ticket',67,4,2,0,5,'2025-01-28 15:12:53','2025-02-18 18:53:01',NULL,'[GLPI #0000067] Novo chamado CONECTAR IMPRESSORA NO PC','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000067] Novo chamado CONECTAR IMPRESSORA NO PC&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_67\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_67&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:CONECTAR IMPRESSORA NO PC &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 12:12 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CONECTAR IMPRESSORA NO PC&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;elton.jorge@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;+55 83 8199-1245&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;erro ao tentar impressão&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_67 \n\n Chamado: Descrição\n\n Título : CONECTAR IMPRESSORA NO PC\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 12:12\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CONECTAR IMPRESSORA NO PC\n2) E-MAIL : elton.jorge@tecnomulti.com\n3) TELEFONE : +55 83 8199-1245\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nerro ao tentar impressão\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-67/new@oswintech.ddns.net','','mailing','new'),
(488,'Ticket',67,4,2,0,5,'2025-01-28 15:22:05','2025-02-18 18:53:01',NULL,'[GLPI #0000067] Novo acompanhamento CONECTAR IMPRESSORA NO PC','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000067] Novo acompanhamento CONECTAR IMPRESSORA NO PC&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_67\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_67&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:CONECTAR IMPRESSORA NO PC &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 12:12 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- elton.jorge@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CONECTAR IMPRESSORA NO PC&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;elton.jorge@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;+55 83 8199-1245&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;erro ao tentar impressão&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 12:22]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, manda o acesso remoto(anydesk ou  teamviewer) do seu computador.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 12:22&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_67 \n\n Chamado: Descrição\n\n Título : CONECTAR IMPRESSORA NO PC\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 12:12\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - elton.jorge@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CONECTAR IMPRESSORA NO PC\n2) E-MAIL : elton.jorge@tecnomulti.com\n3) TELEFONE : +55 83 8199-1245\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nerro ao tentar impressão\n \n\n\n[28-01-2025 12:22]\nAutor Luan Medeiros\nDescrição Boa tarde, manda o acesso remoto(anydesk ou  teamviewer) do seu computador.\nData de abertura 28-01-2025 12:22\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-67/add_followup.1738077726.1574048594@oswintech.ddns.net','','mailing','add_followup');
INSERT INTO `glpi_queuednotifications` VALUES
(489,'Ticket',67,4,2,0,5,'2025-01-28 15:22:05','2025-02-18 18:53:01',NULL,'[GLPI #0000067] Novo acompanhamento CONECTAR IMPRESSORA NO PC','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000067] Novo acompanhamento CONECTAR IMPRESSORA NO PC&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_67\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_67&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:CONECTAR IMPRESSORA NO PC &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 12:12 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- elton.jorge@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CONECTAR IMPRESSORA NO PC&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;elton.jorge@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;+55 83 8199-1245&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;erro ao tentar impressão&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 12:22]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, manda o acesso remoto(anydesk ou  teamviewer) do seu computador.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 12:22&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_67 \n\n Chamado: Descrição\n\n Título : CONECTAR IMPRESSORA NO PC\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 12:12\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - elton.jorge@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CONECTAR IMPRESSORA NO PC\n2) E-MAIL : elton.jorge@tecnomulti.com\n3) TELEFONE : +55 83 8199-1245\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nerro ao tentar impressão\n \n\n\n[28-01-2025 12:22]\nAutor Luan Medeiros\nDescrição Boa tarde, manda o acesso remoto(anydesk ou  teamviewer) do seu computador.\nData de abertura 28-01-2025 12:22\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-67/add_followup.1738077726.1153684954@oswintech.ddns.net','','mailing','add_followup'),
(490,'Ticket',66,4,2,0,4,'2025-01-28 16:46:27','2025-02-10 11:06:52',NULL,'[GLPI #0000066] Novo acompanhamento Configurar o SAP ','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000066] Novo acompanhamento Configurar o SAP &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_66\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_66&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Configurar o SAP  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 11:31 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- jose.carmo@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistemas VIVO/FIBRASIL      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Configurar o SAP &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;jose.carmo@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81986954083&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistemas VIVO/FIBRASIL&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Preciso urgentemente que configure minha conta nova do Sap nessa maquina. &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 13:46]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;496 959 993 &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 13:46&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:52]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, manda o acesso remoto(anydesk ou teamviewer) do seu computador por favor.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:52&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_66 \n\n Chamado: Descrição\n\n Título : Configurar o SAP \n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 11:31\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - jose.carmo@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistemas VIVO/FIBRASIL  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Configurar o SAP \n2) E-MAIL : jose.carmo@tecnomulti.com\n3) TELEFONE : 81986954083\n4) CATEGORIA : Sistemas VIVO/FIBRASIL\n5) INFORME MAIS DETALHES : \nPreciso urgentemente que configure minha conta nova do Sap nessa maquina. \n \n\n\n[28-01-2025 13:46]\nAutor tecnomulti\nDescrição 496 959 993 \nData de abertura 28-01-2025 13:46\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 11:52]\nAutor Luan Medeiros\nDescrição Bom dia, manda o acesso remoto(anydesk ou teamviewer) do seu computador por favor.\nData de abertura 28-01-2025 11:52\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-66/add_followup.1738082787.1104412402@oswintech.ddns.net','','mailing','add_followup'),
(491,'Ticket',66,4,2,0,4,'2025-01-28 16:46:27','2025-02-10 11:06:52',NULL,'[GLPI #0000066] Novo acompanhamento Configurar o SAP ','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000066] Novo acompanhamento Configurar o SAP &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_66\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_66&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Configurar o SAP  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 11:31 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- jose.carmo@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistemas VIVO/FIBRASIL      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Configurar o SAP &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;jose.carmo@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81986954083&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistemas VIVO/FIBRASIL&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Preciso urgentemente que configure minha conta nova do Sap nessa maquina. &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 13:46]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;496 959 993 &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 13:46&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:52]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, manda o acesso remoto(anydesk ou teamviewer) do seu computador por favor.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:52&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_66 \n\n Chamado: Descrição\n\n Título : Configurar o SAP \n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 11:31\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - jose.carmo@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistemas VIVO/FIBRASIL  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Configurar o SAP \n2) E-MAIL : jose.carmo@tecnomulti.com\n3) TELEFONE : 81986954083\n4) CATEGORIA : Sistemas VIVO/FIBRASIL\n5) INFORME MAIS DETALHES : \nPreciso urgentemente que configure minha conta nova do Sap nessa maquina. \n \n\n\n[28-01-2025 13:46]\nAutor tecnomulti\nDescrição 496 959 993 \nData de abertura 28-01-2025 13:46\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 11:52]\nAutor Luan Medeiros\nDescrição Bom dia, manda o acesso remoto(anydesk ou teamviewer) do seu computador por favor.\nData de abertura 28-01-2025 11:52\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-66/add_followup.1738082787.729463061@oswintech.ddns.net','','mailing','add_followup'),
(492,'Ticket',59,4,2,0,4,'2025-01-28 17:02:03','2025-02-14 14:40:13',NULL,'[GLPI #0000059] Novo acompanhamento GOOGLE HEART','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000059] Novo acompanhamento GOOGLE HEART&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_59\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_59&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:GOOGLE HEART &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 10:46 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- gerson.lima@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;GOOGLE HEART&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;gerson.lima@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;71992750348&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;google heart com erro, necessário reinstalar &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 14:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;sem retorno&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 14:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:53]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;?&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:53&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:46]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;já desinstalei e instalei e não abre de jeito nenhum &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:46&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:06]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;não esta abrindo&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:06&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 10:59]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Poderia mandar a print do erro, por gentileza!&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 10:59&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 5&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_59 \n\n Chamado: Descrição\n\n Título : GOOGLE HEART\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 10:46\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - gerson.lima@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : GOOGLE HEART\n2) E-MAIL : gerson.lima@tecnomulti.com\n3) TELEFONE : 71992750348\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \ngoogle heart com erro, necessário reinstalar \n \n\n\n[28-01-2025 14:02]\nAutor tecnomulti\nDescrição sem retorno\n\n \n\n \nData de abertura 28-01-2025 14:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 11:53]\nAutor tecnomulti\nDescrição ?\nData de abertura 28-01-2025 11:53\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 11:46]\nAutor tecnomulti\nDescrição já desinstalei e instalei e não abre de jeito nenhum \nData de abertura 28-01-2025 11:46\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 11:06]\nAutor tecnomulti\nDescrição não esta abrindo\nData de abertura 28-01-2025 11:06\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 10:59]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nPoderia mandar a print do erro, por gentileza!\nData de abertura 28-01-2025 10:59\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 5\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-59/add_followup.1738083723.445379239@oswintech.ddns.net','','mailing','add_followup'),
(493,'Ticket',59,4,2,0,4,'2025-01-28 17:02:03','2025-02-14 14:40:13',NULL,'[GLPI #0000059] Novo acompanhamento GOOGLE HEART','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000059] Novo acompanhamento GOOGLE HEART&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_59\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_59&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:GOOGLE HEART &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 10:46 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- gerson.lima@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;GOOGLE HEART&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;gerson.lima@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;71992750348&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;google heart com erro, necessário reinstalar &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 14:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;sem retorno&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 14:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:53]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;?&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:53&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:46]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;já desinstalei e instalei e não abre de jeito nenhum &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:46&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:06]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;não esta abrindo&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:06&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 10:59]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Poderia mandar a print do erro, por gentileza!&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 10:59&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 5&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_59 \n\n Chamado: Descrição\n\n Título : GOOGLE HEART\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 10:46\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - gerson.lima@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : GOOGLE HEART\n2) E-MAIL : gerson.lima@tecnomulti.com\n3) TELEFONE : 71992750348\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \ngoogle heart com erro, necessário reinstalar \n \n\n\n[28-01-2025 14:02]\nAutor tecnomulti\nDescrição sem retorno\n\n \n\n \nData de abertura 28-01-2025 14:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 11:53]\nAutor tecnomulti\nDescrição ?\nData de abertura 28-01-2025 11:53\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 11:46]\nAutor tecnomulti\nDescrição já desinstalei e instalei e não abre de jeito nenhum \nData de abertura 28-01-2025 11:46\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 11:06]\nAutor tecnomulti\nDescrição não esta abrindo\nData de abertura 28-01-2025 11:06\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 10:59]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nPoderia mandar a print do erro, por gentileza!\nData de abertura 28-01-2025 10:59\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 5\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-59/add_followup.1738083723.366276622@oswintech.ddns.net','','mailing','add_followup'),
(494,'Ticket',59,4,2,0,4,'2025-01-28 18:15:44','2025-02-14 14:40:13',NULL,'[GLPI #0000059] Novo acompanhamento GOOGLE HEART','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000059] Novo acompanhamento GOOGLE HEART&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_59\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_59&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:GOOGLE HEART &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 10:46 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- gerson.lima@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;GOOGLE HEART&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;gerson.lima@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;71992750348&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;google heart com erro, necessário reinstalar &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 15:15]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, manda o acesso remoto.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 15:15&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 14:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;sem retorno&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 14:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:53]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;?&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:53&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:46]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;já desinstalei e instalei e não abre de jeito nenhum &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:46&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:06]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;não esta abrindo&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:06&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 10:59]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Poderia mandar a print do erro, por gentileza!&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 10:59&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 6&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_59 \n\n Chamado: Descrição\n\n Título : GOOGLE HEART\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 10:46\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - gerson.lima@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : GOOGLE HEART\n2) E-MAIL : gerson.lima@tecnomulti.com\n3) TELEFONE : 71992750348\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \ngoogle heart com erro, necessário reinstalar \n \n\n\n[28-01-2025 15:15]\nAutor Luan Medeiros\nDescrição Boa tarde, manda o acesso remoto.\nData de abertura 28-01-2025 15:15\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 14:02]\nAutor tecnomulti\nDescrição sem retorno\n\n \n\n \nData de abertura 28-01-2025 14:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 11:53]\nAutor tecnomulti\nDescrição ?\nData de abertura 28-01-2025 11:53\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 11:46]\nAutor tecnomulti\nDescrição já desinstalei e instalei e não abre de jeito nenhum \nData de abertura 28-01-2025 11:46\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 11:06]\nAutor tecnomulti\nDescrição não esta abrindo\nData de abertura 28-01-2025 11:06\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 10:59]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nPoderia mandar a print do erro, por gentileza!\nData de abertura 28-01-2025 10:59\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 6\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-59/add_followup.1738088144.1014496093@oswintech.ddns.net','','mailing','add_followup'),
(495,'Ticket',59,4,2,0,4,'2025-01-28 18:15:44','2025-02-14 14:40:13',NULL,'[GLPI #0000059] Novo acompanhamento GOOGLE HEART','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000059] Novo acompanhamento GOOGLE HEART&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_59\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_59&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:GOOGLE HEART &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 10:46 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- gerson.lima@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;GOOGLE HEART&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;gerson.lima@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;71992750348&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;google heart com erro, necessário reinstalar &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 15:15]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, manda o acesso remoto.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 15:15&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 14:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;sem retorno&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 14:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:53]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;?&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:53&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:46]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;já desinstalei e instalei e não abre de jeito nenhum &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:46&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:06]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;não esta abrindo&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:06&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 10:59]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Poderia mandar a print do erro, por gentileza!&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 10:59&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 6&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_59 \n\n Chamado: Descrição\n\n Título : GOOGLE HEART\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 10:46\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - gerson.lima@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : GOOGLE HEART\n2) E-MAIL : gerson.lima@tecnomulti.com\n3) TELEFONE : 71992750348\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \ngoogle heart com erro, necessário reinstalar \n \n\n\n[28-01-2025 15:15]\nAutor Luan Medeiros\nDescrição Boa tarde, manda o acesso remoto.\nData de abertura 28-01-2025 15:15\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 14:02]\nAutor tecnomulti\nDescrição sem retorno\n\n \n\n \nData de abertura 28-01-2025 14:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 11:53]\nAutor tecnomulti\nDescrição ?\nData de abertura 28-01-2025 11:53\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 11:46]\nAutor tecnomulti\nDescrição já desinstalei e instalei e não abre de jeito nenhum \nData de abertura 28-01-2025 11:46\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 11:06]\nAutor tecnomulti\nDescrição não esta abrindo\nData de abertura 28-01-2025 11:06\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 10:59]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nPoderia mandar a print do erro, por gentileza!\nData de abertura 28-01-2025 10:59\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 6\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-59/add_followup.1738088144.1185292092@oswintech.ddns.net','','mailing','add_followup'),
(496,'Ticket',59,4,2,0,4,'2025-01-28 18:17:02','2025-02-14 14:40:13',NULL,'[GLPI #0000059] Novo acompanhamento GOOGLE HEART','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000059] Novo acompanhamento GOOGLE HEART&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_59\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_59&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:GOOGLE HEART &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 10:46 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- gerson.lima@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;GOOGLE HEART&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;gerson.lima@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;71992750348&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;google heart com erro, necessário reinstalar &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 15:17]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;ok&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 15:17&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 15:15]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, manda o acesso remoto.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 15:15&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 14:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;sem retorno&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 14:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:53]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;?&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:53&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:46]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;já desinstalei e instalei e não abre de jeito nenhum &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:46&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:06]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;não esta abrindo&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:06&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 10:59]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Poderia mandar a print do erro, por gentileza!&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 10:59&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 7&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_59 \n\n Chamado: Descrição\n\n Título : GOOGLE HEART\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 10:46\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - gerson.lima@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : GOOGLE HEART\n2) E-MAIL : gerson.lima@tecnomulti.com\n3) TELEFONE : 71992750348\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \ngoogle heart com erro, necessário reinstalar \n \n\n\n[28-01-2025 15:17]\nAutor tecnomulti\nDescrição ok\n\n \nData de abertura 28-01-2025 15:17\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 15:15]\nAutor Luan Medeiros\nDescrição Boa tarde, manda o acesso remoto.\nData de abertura 28-01-2025 15:15\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 14:02]\nAutor tecnomulti\nDescrição sem retorno\n\n \n\n \nData de abertura 28-01-2025 14:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 11:53]\nAutor tecnomulti\nDescrição ?\nData de abertura 28-01-2025 11:53\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 11:46]\nAutor tecnomulti\nDescrição já desinstalei e instalei e não abre de jeito nenhum \nData de abertura 28-01-2025 11:46\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 11:06]\nAutor tecnomulti\nDescrição não esta abrindo\nData de abertura 28-01-2025 11:06\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 10:59]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nPoderia mandar a print do erro, por gentileza!\nData de abertura 28-01-2025 10:59\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 7\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-59/add_followup.1738088222.1999040443@oswintech.ddns.net','','mailing','add_followup'),
(497,'Ticket',59,4,2,0,4,'2025-01-28 18:17:02','2025-02-14 14:40:13',NULL,'[GLPI #0000059] Novo acompanhamento GOOGLE HEART','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000059] Novo acompanhamento GOOGLE HEART&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_59\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_59&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:GOOGLE HEART &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 10:46 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- gerson.lima@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;GOOGLE HEART&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;gerson.lima@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;71992750348&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;google heart com erro, necessário reinstalar &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 15:17]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;ok&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 15:17&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 15:15]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, manda o acesso remoto.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 15:15&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 14:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;sem retorno&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 14:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:53]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;?&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:53&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:46]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;já desinstalei e instalei e não abre de jeito nenhum &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:46&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:06]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;não esta abrindo&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:06&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 10:59]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Poderia mandar a print do erro, por gentileza!&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 10:59&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 7&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_59 \n\n Chamado: Descrição\n\n Título : GOOGLE HEART\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 10:46\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - gerson.lima@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : GOOGLE HEART\n2) E-MAIL : gerson.lima@tecnomulti.com\n3) TELEFONE : 71992750348\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \ngoogle heart com erro, necessário reinstalar \n \n\n\n[28-01-2025 15:17]\nAutor tecnomulti\nDescrição ok\n\n \nData de abertura 28-01-2025 15:17\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 15:15]\nAutor Luan Medeiros\nDescrição Boa tarde, manda o acesso remoto.\nData de abertura 28-01-2025 15:15\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 14:02]\nAutor tecnomulti\nDescrição sem retorno\n\n \n\n \nData de abertura 28-01-2025 14:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 11:53]\nAutor tecnomulti\nDescrição ?\nData de abertura 28-01-2025 11:53\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 11:46]\nAutor tecnomulti\nDescrição já desinstalei e instalei e não abre de jeito nenhum \nData de abertura 28-01-2025 11:46\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 11:06]\nAutor tecnomulti\nDescrição não esta abrindo\nData de abertura 28-01-2025 11:06\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 10:59]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nPoderia mandar a print do erro, por gentileza!\nData de abertura 28-01-2025 10:59\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 7\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-59/add_followup.1738088222.418215919@oswintech.ddns.net','','mailing','add_followup'),
(498,'Ticket',59,4,2,0,4,'2025-01-28 18:18:38','2025-02-14 14:40:13',NULL,'[GLPI #0000059] Novo acompanhamento GOOGLE HEART','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000059] Novo acompanhamento GOOGLE HEART&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_59\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_59&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:GOOGLE HEART &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 10:46 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- gerson.lima@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;GOOGLE HEART&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;gerson.lima@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;71992750348&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;google heart com erro, necessário reinstalar &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 15:18]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62; &#60;/p&#62;\r\n&#60;p&#62; 471 343 653. &#60;/p&#62;\r\n&#60;p&#62;Gentileza realizar teste de ante virus &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 15:18&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 15:17]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;ok&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 15:17&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 15:15]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, manda o acesso remoto.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 15:15&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 14:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;sem retorno&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 14:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:53]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;?&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:53&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:46]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;já desinstalei e instalei e não abre de jeito nenhum &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:46&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:06]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;não esta abrindo&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:06&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 10:59]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Poderia mandar a print do erro, por gentileza!&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 10:59&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 8&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_59 \n\n Chamado: Descrição\n\n Título : GOOGLE HEART\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 10:46\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - gerson.lima@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : GOOGLE HEART\n2) E-MAIL : gerson.lima@tecnomulti.com\n3) TELEFONE : 71992750348\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \ngoogle heart com erro, necessário reinstalar \n \n\n\n[28-01-2025 15:18]\nAutor tecnomulti\nDescrição  \n\n 471 343 653. \n\nGentileza realizar teste de ante virus \nData de abertura 28-01-2025 15:18\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 15:17]\nAutor tecnomulti\nDescrição ok\n\n \nData de abertura 28-01-2025 15:17\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 15:15]\nAutor Luan Medeiros\nDescrição Boa tarde, manda o acesso remoto.\nData de abertura 28-01-2025 15:15\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 14:02]\nAutor tecnomulti\nDescrição sem retorno\n\n \n\n \nData de abertura 28-01-2025 14:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 11:53]\nAutor tecnomulti\nDescrição ?\nData de abertura 28-01-2025 11:53\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 11:46]\nAutor tecnomulti\nDescrição já desinstalei e instalei e não abre de jeito nenhum \nData de abertura 28-01-2025 11:46\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 11:06]\nAutor tecnomulti\nDescrição não esta abrindo\nData de abertura 28-01-2025 11:06\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 10:59]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nPoderia mandar a print do erro, por gentileza!\nData de abertura 28-01-2025 10:59\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 8\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-59/add_followup.1738088319.669091050@oswintech.ddns.net','','mailing','add_followup'),
(499,'Ticket',59,4,2,0,4,'2025-01-28 18:18:38','2025-02-14 14:40:13',NULL,'[GLPI #0000059] Novo acompanhamento GOOGLE HEART','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000059] Novo acompanhamento GOOGLE HEART&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_59\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_59&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:GOOGLE HEART &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 10:46 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- gerson.lima@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;GOOGLE HEART&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;gerson.lima@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;71992750348&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;google heart com erro, necessário reinstalar &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 15:18]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62; &#60;/p&#62;\r\n&#60;p&#62; 471 343 653. &#60;/p&#62;\r\n&#60;p&#62;Gentileza realizar teste de ante virus &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 15:18&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 15:17]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;ok&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 15:17&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 15:15]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, manda o acesso remoto.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 15:15&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 14:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;sem retorno&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 14:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:53]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;?&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:53&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:46]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;já desinstalei e instalei e não abre de jeito nenhum &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:46&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:06]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;não esta abrindo&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:06&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 10:59]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Poderia mandar a print do erro, por gentileza!&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 10:59&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 8&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_59 \n\n Chamado: Descrição\n\n Título : GOOGLE HEART\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 10:46\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - gerson.lima@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : GOOGLE HEART\n2) E-MAIL : gerson.lima@tecnomulti.com\n3) TELEFONE : 71992750348\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \ngoogle heart com erro, necessário reinstalar \n \n\n\n[28-01-2025 15:18]\nAutor tecnomulti\nDescrição  \n\n 471 343 653. \n\nGentileza realizar teste de ante virus \nData de abertura 28-01-2025 15:18\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 15:17]\nAutor tecnomulti\nDescrição ok\n\n \nData de abertura 28-01-2025 15:17\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 15:15]\nAutor Luan Medeiros\nDescrição Boa tarde, manda o acesso remoto.\nData de abertura 28-01-2025 15:15\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 14:02]\nAutor tecnomulti\nDescrição sem retorno\n\n \n\n \nData de abertura 28-01-2025 14:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 11:53]\nAutor tecnomulti\nDescrição ?\nData de abertura 28-01-2025 11:53\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 11:46]\nAutor tecnomulti\nDescrição já desinstalei e instalei e não abre de jeito nenhum \nData de abertura 28-01-2025 11:46\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 11:06]\nAutor tecnomulti\nDescrição não esta abrindo\nData de abertura 28-01-2025 11:06\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 10:59]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nPoderia mandar a print do erro, por gentileza!\nData de abertura 28-01-2025 10:59\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 8\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-59/add_followup.1738088319.894781695@oswintech.ddns.net','','mailing','add_followup'),
(500,'PluginFormcreatorFormAnswer',32,29,2,0,4,'2025-01-28 18:47:27','2025-02-18 18:53:01',NULL,'[GLPI] Sua requisição foi salva','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI] Sua requisi&#38;ccedil;&#38;atilde;o foi salva&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;p&#62;Olá,&#60;br /&#62;Sua requisição do GLPI foi salva com sucesso com o número 32 e transmitido para a equipe de helpdesk.&#60;br /&#62;Você pode ver suas respostas no seguinte link:&#60;br /&#62;https://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=32&#60;/p&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;','Olá,\nSua requisição do GLPI foi salva com sucesso com o número 32 e transmitido para a equipe de helpdesk.\nVocê pode ver suas respostas no seguinte link:\nhttps://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=32\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-PluginFormcreatorFormAnswer-32/plugin_formcreator_form_created.1738090047.1026665259@oswintech.ddns.net','','mailing','plugin_formcreator_form_created'),
(501,'Ticket',68,4,2,1,0,'2025-01-28 18:47:27','2025-01-28 18:47:27','2025-01-28 18:47:39','[GLPI #0000068] Novo chamado Caixa de E-mail Lotada',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_68 \n\n Chamado: Descrição\n\n Título : Caixa de E-mail Lotada\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 15:47\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Caixa de E-mail Lotada\n2) E-MAIL : vinicius.silveira@tecnomulti.com\n3) TELEFONE : 84 99104-6460\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nCaixa Lotada\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(502,'Ticket',68,4,2,1,0,'2025-01-28 18:47:27','2025-01-28 18:47:27','2025-01-30 15:37:34','[GLPI #0000068] Novo chamado Caixa de E-mail Lotada',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_68 \n\n Chamado: Descrição\n\n Título : Caixa de E-mail Lotada\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 15:47\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Caixa de E-mail Lotada\n2) E-MAIL : vinicius.silveira@tecnomulti.com\n3) TELEFONE : 84 99104-6460\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nCaixa Lotada\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(503,'Ticket',68,4,2,1,0,'2025-01-28 18:47:27','2025-01-28 18:47:27','2025-01-30 15:49:48','[GLPI #0000068] Novo chamado Caixa de E-mail Lotada',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_68 \n\n Chamado: Descrição\n\n Título : Caixa de E-mail Lotada\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 15:47\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Caixa de E-mail Lotada\n2) E-MAIL : vinicius.silveira@tecnomulti.com\n3) TELEFONE : 84 99104-6460\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nCaixa Lotada\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(504,'Ticket',68,4,2,1,0,'2025-01-28 18:47:27','2025-01-28 18:47:27','2025-01-29 01:27:48','[GLPI #0000068] Novo chamado Caixa de E-mail Lotada',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_68 \n\n Chamado: Descrição\n\n Título : Caixa de E-mail Lotada\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 15:47\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Caixa de E-mail Lotada\n2) E-MAIL : vinicius.silveira@tecnomulti.com\n3) TELEFONE : 84 99104-6460\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nCaixa Lotada\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(505,'Ticket',68,4,2,0,4,'2025-01-28 18:47:27','2025-02-18 18:53:01',NULL,'[GLPI #0000068] Novo chamado Caixa de E-mail Lotada','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000068] Novo chamado Caixa de E-mail Lotada&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_68\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_68&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Caixa de E-mail Lotada &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 15:47 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Caixa de E-mail Lotada&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;vinicius.silveira@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84 99104-6460&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Caixa Lotada&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_68 \n\n Chamado: Descrição\n\n Título : Caixa de E-mail Lotada\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 15:47\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Caixa de E-mail Lotada\n2) E-MAIL : vinicius.silveira@tecnomulti.com\n3) TELEFONE : 84 99104-6460\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nCaixa Lotada\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-68/new@oswintech.ddns.net','','mailing','new'),
(506,'Ticket',68,4,2,0,4,'2025-01-28 18:47:27','2025-02-18 18:53:01',NULL,'[GLPI #0000068] Novo chamado Caixa de E-mail Lotada','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000068] Novo chamado Caixa de E-mail Lotada&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_68\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_68&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Caixa de E-mail Lotada &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 15:47 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Caixa de E-mail Lotada&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;vinicius.silveira@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84 99104-6460&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Caixa Lotada&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_68 \n\n Chamado: Descrição\n\n Título : Caixa de E-mail Lotada\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 15:47\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Caixa de E-mail Lotada\n2) E-MAIL : vinicius.silveira@tecnomulti.com\n3) TELEFONE : 84 99104-6460\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nCaixa Lotada\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-68/new@oswintech.ddns.net','','mailing','new'),
(507,'Ticket',68,4,2,0,4,'2025-01-28 18:47:27','2025-02-18 18:53:01',NULL,'[GLPI #0000068] Novo chamado Caixa de E-mail Lotada','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000068] Novo chamado Caixa de E-mail Lotada&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_68\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_68&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Caixa de E-mail Lotada &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 15:47 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Caixa de E-mail Lotada&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;vinicius.silveira@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84 99104-6460&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Caixa Lotada&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_68 \n\n Chamado: Descrição\n\n Título : Caixa de E-mail Lotada\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 15:47\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Caixa de E-mail Lotada\n2) E-MAIL : vinicius.silveira@tecnomulti.com\n3) TELEFONE : 84 99104-6460\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nCaixa Lotada\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-68/new@oswintech.ddns.net','','mailing','new'),
(508,'Ticket',68,4,2,0,4,'2025-01-28 18:47:27','2025-02-18 18:53:01',NULL,'[GLPI #0000068] Novo chamado Caixa de E-mail Lotada','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000068] Novo chamado Caixa de E-mail Lotada&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_68\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_68&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Caixa de E-mail Lotada &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 15:47 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Caixa de E-mail Lotada&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;vinicius.silveira@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84 99104-6460&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Caixa Lotada&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_68 \n\n Chamado: Descrição\n\n Título : Caixa de E-mail Lotada\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 15:47\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Caixa de E-mail Lotada\n2) E-MAIL : vinicius.silveira@tecnomulti.com\n3) TELEFONE : 84 99104-6460\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nCaixa Lotada\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-68/new@oswintech.ddns.net','','mailing','new'),
(509,'Ticket',59,4,2,0,4,'2025-01-28 18:53:51','2025-02-18 18:53:01',NULL,'[GLPI #0000059] Novo acompanhamento GOOGLE HEART','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000059] Novo acompanhamento GOOGLE HEART&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_59\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_59&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:GOOGLE HEART &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 10:46 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- gerson.lima@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;GOOGLE HEART&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;gerson.lima@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;71992750348&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;google heart com erro, necessário reinstalar &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 15:53]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;deixei executando uma varredura, seria por algum motivo em especial?&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 15:53&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 15:18]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62; &#60;/p&#62;\r\n&#60;p&#62; 471 343 653. &#60;/p&#62;\r\n&#60;p&#62;Gentileza realizar teste de ante virus &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 15:18&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 15:17]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;ok&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 15:17&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 15:15]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, manda o acesso remoto.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 15:15&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 14:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;sem retorno&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 14:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:53]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;?&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:53&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:46]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;já desinstalei e instalei e não abre de jeito nenhum &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:46&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:06]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;não esta abrindo&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:06&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 10:59]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Poderia mandar a print do erro, por gentileza!&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 10:59&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 9&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_59 \n\n Chamado: Descrição\n\n Título : GOOGLE HEART\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 10:46\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - gerson.lima@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : GOOGLE HEART\n2) E-MAIL : gerson.lima@tecnomulti.com\n3) TELEFONE : 71992750348\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \ngoogle heart com erro, necessário reinstalar \n \n\n\n[28-01-2025 15:53]\nAutor Luan Medeiros\nDescrição deixei executando uma varredura, seria por algum motivo em especial?\nData de abertura 28-01-2025 15:53\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 15:18]\nAutor tecnomulti\nDescrição  \n\n 471 343 653. \n\nGentileza realizar teste de ante virus \nData de abertura 28-01-2025 15:18\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 15:17]\nAutor tecnomulti\nDescrição ok\n\n \nData de abertura 28-01-2025 15:17\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 15:15]\nAutor Luan Medeiros\nDescrição Boa tarde, manda o acesso remoto.\nData de abertura 28-01-2025 15:15\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 14:02]\nAutor tecnomulti\nDescrição sem retorno\n\n \n\n \nData de abertura 28-01-2025 14:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 11:53]\nAutor tecnomulti\nDescrição ?\nData de abertura 28-01-2025 11:53\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 11:46]\nAutor tecnomulti\nDescrição já desinstalei e instalei e não abre de jeito nenhum \nData de abertura 28-01-2025 11:46\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 11:06]\nAutor tecnomulti\nDescrição não esta abrindo\nData de abertura 28-01-2025 11:06\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 10:59]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nPoderia mandar a print do erro, por gentileza!\nData de abertura 28-01-2025 10:59\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 9\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-59/add_followup.1738090431.254007129@oswintech.ddns.net','','mailing','add_followup'),
(510,'Ticket',59,4,2,0,4,'2025-01-28 18:53:51','2025-02-18 18:53:01',NULL,'[GLPI #0000059] Novo acompanhamento GOOGLE HEART','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000059] Novo acompanhamento GOOGLE HEART&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_59\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_59&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:GOOGLE HEART &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 10:46 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- gerson.lima@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;GOOGLE HEART&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;gerson.lima@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;71992750348&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;google heart com erro, necessário reinstalar &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 15:53]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;deixei executando uma varredura, seria por algum motivo em especial?&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 15:53&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 15:18]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62; &#60;/p&#62;\r\n&#60;p&#62; 471 343 653. &#60;/p&#62;\r\n&#60;p&#62;Gentileza realizar teste de ante virus &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 15:18&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 15:17]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;ok&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 15:17&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 15:15]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, manda o acesso remoto.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 15:15&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 14:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;sem retorno&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 14:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:53]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;?&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:53&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:46]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;já desinstalei e instalei e não abre de jeito nenhum &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:46&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:06]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;não esta abrindo&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:06&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 10:59]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Poderia mandar a print do erro, por gentileza!&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 10:59&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 9&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_59 \n\n Chamado: Descrição\n\n Título : GOOGLE HEART\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 10:46\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - gerson.lima@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : GOOGLE HEART\n2) E-MAIL : gerson.lima@tecnomulti.com\n3) TELEFONE : 71992750348\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \ngoogle heart com erro, necessário reinstalar \n \n\n\n[28-01-2025 15:53]\nAutor Luan Medeiros\nDescrição deixei executando uma varredura, seria por algum motivo em especial?\nData de abertura 28-01-2025 15:53\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 15:18]\nAutor tecnomulti\nDescrição  \n\n 471 343 653. \n\nGentileza realizar teste de ante virus \nData de abertura 28-01-2025 15:18\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 15:17]\nAutor tecnomulti\nDescrição ok\n\n \nData de abertura 28-01-2025 15:17\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 15:15]\nAutor Luan Medeiros\nDescrição Boa tarde, manda o acesso remoto.\nData de abertura 28-01-2025 15:15\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 14:02]\nAutor tecnomulti\nDescrição sem retorno\n\n \n\n \nData de abertura 28-01-2025 14:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 11:53]\nAutor tecnomulti\nDescrição ?\nData de abertura 28-01-2025 11:53\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 11:46]\nAutor tecnomulti\nDescrição já desinstalei e instalei e não abre de jeito nenhum \nData de abertura 28-01-2025 11:46\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 11:06]\nAutor tecnomulti\nDescrição não esta abrindo\nData de abertura 28-01-2025 11:06\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 10:59]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nPoderia mandar a print do erro, por gentileza!\nData de abertura 28-01-2025 10:59\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 9\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-59/add_followup.1738090431.1370419610@oswintech.ddns.net','','mailing','add_followup'),
(511,'Ticket',59,4,2,0,4,'2025-01-28 18:56:08','2025-02-18 18:53:01',NULL,'[GLPI #0000059] Novo acompanhamento GOOGLE HEART','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000059] Novo acompanhamento GOOGLE HEART&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_59\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_59&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:GOOGLE HEART &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 10:46 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- gerson.lima@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;GOOGLE HEART&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;gerson.lima@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;71992750348&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;google heart com erro, necessário reinstalar &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 15:56]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Abriu agora, certo?&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 15:56&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 15:53]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;deixei executando uma varredura, seria por algum motivo em especial?&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 15:53&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 15:18]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62; &#60;/p&#62;\r\n&#60;p&#62; 471 343 653. &#60;/p&#62;\r\n&#60;p&#62;Gentileza realizar teste de ante virus &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 15:18&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 15:17]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;ok&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 15:17&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 15:15]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, manda o acesso remoto.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 15:15&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 14:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;sem retorno&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 14:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:53]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;?&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:53&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:46]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;já desinstalei e instalei e não abre de jeito nenhum &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:46&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:06]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;não esta abrindo&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:06&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 10:59]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Poderia mandar a print do erro, por gentileza!&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 10:59&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 10&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_59 \n\n Chamado: Descrição\n\n Título : GOOGLE HEART\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 10:46\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - gerson.lima@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : GOOGLE HEART\n2) E-MAIL : gerson.lima@tecnomulti.com\n3) TELEFONE : 71992750348\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \ngoogle heart com erro, necessário reinstalar \n \n\n\n[28-01-2025 15:56]\nAutor Luan Medeiros\nDescrição Abriu agora, certo?\nData de abertura 28-01-2025 15:56\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 15:53]\nAutor Luan Medeiros\nDescrição deixei executando uma varredura, seria por algum motivo em especial?\nData de abertura 28-01-2025 15:53\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 15:18]\nAutor tecnomulti\nDescrição  \n\n 471 343 653. \n\nGentileza realizar teste de ante virus \nData de abertura 28-01-2025 15:18\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 15:17]\nAutor tecnomulti\nDescrição ok\n\n \nData de abertura 28-01-2025 15:17\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 15:15]\nAutor Luan Medeiros\nDescrição Boa tarde, manda o acesso remoto.\nData de abertura 28-01-2025 15:15\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 14:02]\nAutor tecnomulti\nDescrição sem retorno\n\n \n\n \nData de abertura 28-01-2025 14:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 11:53]\nAutor tecnomulti\nDescrição ?\nData de abertura 28-01-2025 11:53\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 11:46]\nAutor tecnomulti\nDescrição já desinstalei e instalei e não abre de jeito nenhum \nData de abertura 28-01-2025 11:46\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 11:06]\nAutor tecnomulti\nDescrição não esta abrindo\nData de abertura 28-01-2025 11:06\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 10:59]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nPoderia mandar a print do erro, por gentileza!\nData de abertura 28-01-2025 10:59\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 10\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-59/add_followup.1738090568.264551700@oswintech.ddns.net','','mailing','add_followup'),
(512,'Ticket',59,4,2,0,4,'2025-01-28 18:56:08','2025-02-18 18:53:01',NULL,'[GLPI #0000059] Novo acompanhamento GOOGLE HEART','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000059] Novo acompanhamento GOOGLE HEART&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_59\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_59&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:GOOGLE HEART &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 10:46 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- gerson.lima@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;GOOGLE HEART&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;gerson.lima@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;71992750348&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;google heart com erro, necessário reinstalar &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 15:56]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Abriu agora, certo?&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 15:56&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 15:53]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;deixei executando uma varredura, seria por algum motivo em especial?&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 15:53&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 15:18]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62; &#60;/p&#62;\r\n&#60;p&#62; 471 343 653. &#60;/p&#62;\r\n&#60;p&#62;Gentileza realizar teste de ante virus &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 15:18&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 15:17]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;ok&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 15:17&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 15:15]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, manda o acesso remoto.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 15:15&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 14:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;sem retorno&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 14:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:53]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;?&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:53&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:46]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;já desinstalei e instalei e não abre de jeito nenhum &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:46&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:06]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;não esta abrindo&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:06&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 10:59]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Poderia mandar a print do erro, por gentileza!&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 10:59&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 10&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_59 \n\n Chamado: Descrição\n\n Título : GOOGLE HEART\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 10:46\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - gerson.lima@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : GOOGLE HEART\n2) E-MAIL : gerson.lima@tecnomulti.com\n3) TELEFONE : 71992750348\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \ngoogle heart com erro, necessário reinstalar \n \n\n\n[28-01-2025 15:56]\nAutor Luan Medeiros\nDescrição Abriu agora, certo?\nData de abertura 28-01-2025 15:56\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 15:53]\nAutor Luan Medeiros\nDescrição deixei executando uma varredura, seria por algum motivo em especial?\nData de abertura 28-01-2025 15:53\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 15:18]\nAutor tecnomulti\nDescrição  \n\n 471 343 653. \n\nGentileza realizar teste de ante virus \nData de abertura 28-01-2025 15:18\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 15:17]\nAutor tecnomulti\nDescrição ok\n\n \nData de abertura 28-01-2025 15:17\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 15:15]\nAutor Luan Medeiros\nDescrição Boa tarde, manda o acesso remoto.\nData de abertura 28-01-2025 15:15\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 14:02]\nAutor tecnomulti\nDescrição sem retorno\n\n \n\n \nData de abertura 28-01-2025 14:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 11:53]\nAutor tecnomulti\nDescrição ?\nData de abertura 28-01-2025 11:53\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 11:46]\nAutor tecnomulti\nDescrição já desinstalei e instalei e não abre de jeito nenhum \nData de abertura 28-01-2025 11:46\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 11:06]\nAutor tecnomulti\nDescrição não esta abrindo\nData de abertura 28-01-2025 11:06\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 10:59]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nPoderia mandar a print do erro, por gentileza!\nData de abertura 28-01-2025 10:59\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 10\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-59/add_followup.1738090568.1859647088@oswintech.ddns.net','','mailing','add_followup'),
(513,'Ticket',59,4,2,0,4,'2025-01-28 19:27:19','2025-02-18 18:53:01',NULL,'[GLPI #0000059] Encerramento do chamado GOOGLE HEART','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000059] Encerramento do chamado GOOGLE HEART&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_59\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_59&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:GOOGLE HEART &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 10:46 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:28-01-2025 16:27 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- gerson.lima@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;GOOGLE HEART&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;gerson.lima@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;71992750348&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;google heart com erro, necessário reinstalar &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 28-01-2025 16:27&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 15:56]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Abriu agora, certo?&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 15:56&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 15:53]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;deixei executando uma varredura, seria por algum motivo em especial?&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 15:53&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 15:18]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62; &#60;/p&#62;\r\n&#60;p&#62; 471 343 653. &#60;/p&#62;\r\n&#60;p&#62;Gentileza realizar teste de ante virus &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 15:18&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 15:17]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;ok&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 15:17&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 15:15]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, manda o acesso remoto.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 15:15&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 14:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;sem retorno&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 14:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:53]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;?&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:53&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:46]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;já desinstalei e instalei e não abre de jeito nenhum &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:46&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:06]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;não esta abrindo&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:06&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 10:59]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Poderia mandar a print do erro, por gentileza!&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 10:59&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 10&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_59 \n\n Chamado: Descrição\n\n Título : GOOGLE HEART\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 10:46\n Data de fechamento : 28-01-2025 16:27\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - gerson.lima@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : GOOGLE HEART\n2) E-MAIL : gerson.lima@tecnomulti.com\n3) TELEFONE : 71992750348\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \ngoogle heart com erro, necessário reinstalar \n \n\n Data da solução : 28-01-2025 16:27\n Tipo de solução : \n Solução : \n \n\n\n[28-01-2025 15:56]\nAutor Luan Medeiros\nDescrição Abriu agora, certo?\nData de abertura 28-01-2025 15:56\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 15:53]\nAutor Luan Medeiros\nDescrição deixei executando uma varredura, seria por algum motivo em especial?\nData de abertura 28-01-2025 15:53\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 15:18]\nAutor tecnomulti\nDescrição  \n\n 471 343 653. \n\nGentileza realizar teste de ante virus \nData de abertura 28-01-2025 15:18\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 15:17]\nAutor tecnomulti\nDescrição ok\n\n \nData de abertura 28-01-2025 15:17\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 15:15]\nAutor Luan Medeiros\nDescrição Boa tarde, manda o acesso remoto.\nData de abertura 28-01-2025 15:15\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 14:02]\nAutor tecnomulti\nDescrição sem retorno\n\n \n\n \nData de abertura 28-01-2025 14:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 11:53]\nAutor tecnomulti\nDescrição ?\nData de abertura 28-01-2025 11:53\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 11:46]\nAutor tecnomulti\nDescrição já desinstalei e instalei e não abre de jeito nenhum \nData de abertura 28-01-2025 11:46\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 11:06]\nAutor tecnomulti\nDescrição não esta abrindo\nData de abertura 28-01-2025 11:06\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 10:59]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nPoderia mandar a print do erro, por gentileza!\nData de abertura 28-01-2025 10:59\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 10\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-59/closed.1738092439.1020819602@oswintech.ddns.net','','mailing','closed'),
(514,'Ticket',59,4,2,0,4,'2025-01-28 19:27:19','2025-02-18 18:53:01',NULL,'[GLPI #0000059] Encerramento do chamado GOOGLE HEART','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000059] Encerramento do chamado GOOGLE HEART&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_59\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_59&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:GOOGLE HEART &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 10:46 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:28-01-2025 16:27 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- gerson.lima@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;GOOGLE HEART&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;gerson.lima@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;71992750348&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;google heart com erro, necessário reinstalar &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 28-01-2025 16:27&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 15:56]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Abriu agora, certo?&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 15:56&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 15:53]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;deixei executando uma varredura, seria por algum motivo em especial?&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 15:53&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 15:18]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62; &#60;/p&#62;\r\n&#60;p&#62; 471 343 653. &#60;/p&#62;\r\n&#60;p&#62;Gentileza realizar teste de ante virus &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 15:18&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 15:17]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;ok&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 15:17&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 15:15]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, manda o acesso remoto.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 15:15&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 14:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;sem retorno&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 14:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:53]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;?&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:53&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:46]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;já desinstalei e instalei e não abre de jeito nenhum &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:46&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:06]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;não esta abrindo&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:06&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 10:59]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Poderia mandar a print do erro, por gentileza!&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 10:59&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 10&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_59 \n\n Chamado: Descrição\n\n Título : GOOGLE HEART\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 10:46\n Data de fechamento : 28-01-2025 16:27\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - gerson.lima@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : GOOGLE HEART\n2) E-MAIL : gerson.lima@tecnomulti.com\n3) TELEFONE : 71992750348\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \ngoogle heart com erro, necessário reinstalar \n \n\n Data da solução : 28-01-2025 16:27\n Tipo de solução : \n Solução : \n \n\n\n[28-01-2025 15:56]\nAutor Luan Medeiros\nDescrição Abriu agora, certo?\nData de abertura 28-01-2025 15:56\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 15:53]\nAutor Luan Medeiros\nDescrição deixei executando uma varredura, seria por algum motivo em especial?\nData de abertura 28-01-2025 15:53\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 15:18]\nAutor tecnomulti\nDescrição  \n\n 471 343 653. \n\nGentileza realizar teste de ante virus \nData de abertura 28-01-2025 15:18\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 15:17]\nAutor tecnomulti\nDescrição ok\n\n \nData de abertura 28-01-2025 15:17\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 15:15]\nAutor Luan Medeiros\nDescrição Boa tarde, manda o acesso remoto.\nData de abertura 28-01-2025 15:15\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 14:02]\nAutor tecnomulti\nDescrição sem retorno\n\n \n\n \nData de abertura 28-01-2025 14:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 11:53]\nAutor tecnomulti\nDescrição ?\nData de abertura 28-01-2025 11:53\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 11:46]\nAutor tecnomulti\nDescrição já desinstalei e instalei e não abre de jeito nenhum \nData de abertura 28-01-2025 11:46\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 11:06]\nAutor tecnomulti\nDescrição não esta abrindo\nData de abertura 28-01-2025 11:06\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 10:59]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nPoderia mandar a print do erro, por gentileza!\nData de abertura 28-01-2025 10:59\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 10\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-59/closed.1738092439.1390506289@oswintech.ddns.net','','mailing','closed'),
(515,'Ticket',68,4,2,0,3,'2025-01-28 20:17:22','2025-02-10 11:06:52',NULL,'[GLPI #0000068] Novo acompanhamento Caixa de E-mail Lotada','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000068] Novo acompanhamento Caixa de E-mail Lotada&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_68\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_68&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Caixa de E-mail Lotada &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 15:47 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- vinicius.silveira@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Caixa de E-mail Lotada&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;vinicius.silveira@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84 99104-6460&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Caixa Lotada&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 17:17]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Atendimento solucionado.&#60;/p&#62;\r\n&#60;p&#62;Colaborador com o outlook configurado em IMAP. Foi realizado a reconfiguração em POP3&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 17:17&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_68 \n\n Chamado: Descrição\n\n Título : Caixa de E-mail Lotada\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 15:47\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - vinicius.silveira@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Caixa de E-mail Lotada\n2) E-MAIL : vinicius.silveira@tecnomulti.com\n3) TELEFONE : 84 99104-6460\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nCaixa Lotada\n \n\n\n[28-01-2025 17:17]\nAutor Alexsandro Cruz\nDescrição Atendimento solucionado.\n\nColaborador com o outlook configurado em IMAP. Foi realizado a reconfiguração em POP3\nData de abertura 28-01-2025 17:17\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-68/add_followup.1738095442.364724297@oswintech.ddns.net','','mailing','add_followup'),
(516,'Ticket',68,4,2,0,3,'2025-01-28 20:17:22','2025-02-10 11:06:52',NULL,'[GLPI #0000068] Novo acompanhamento Caixa de E-mail Lotada','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000068] Novo acompanhamento Caixa de E-mail Lotada&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_68\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_68&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Caixa de E-mail Lotada &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 15:47 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- vinicius.silveira@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Caixa de E-mail Lotada&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;vinicius.silveira@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84 99104-6460&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Caixa Lotada&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 17:17]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Atendimento solucionado.&#60;/p&#62;\r\n&#60;p&#62;Colaborador com o outlook configurado em IMAP. Foi realizado a reconfiguração em POP3&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 17:17&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_68 \n\n Chamado: Descrição\n\n Título : Caixa de E-mail Lotada\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 15:47\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - vinicius.silveira@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Caixa de E-mail Lotada\n2) E-MAIL : vinicius.silveira@tecnomulti.com\n3) TELEFONE : 84 99104-6460\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nCaixa Lotada\n \n\n\n[28-01-2025 17:17]\nAutor Alexsandro Cruz\nDescrição Atendimento solucionado.\n\nColaborador com o outlook configurado em IMAP. Foi realizado a reconfiguração em POP3\nData de abertura 28-01-2025 17:17\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-68/add_followup.1738095442.1060333068@oswintech.ddns.net','','mailing','add_followup'),
(517,'Ticket',68,4,2,0,3,'2025-01-28 20:17:28','2025-02-10 11:06:52',NULL,'[GLPI #0000068] Encerramento do chamado Caixa de E-mail Lotada','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000068] Encerramento do chamado Caixa de E-mail Lotada&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_68\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_68&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Caixa de E-mail Lotada &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 15:47 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:28-01-2025 17:17 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- vinicius.silveira@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Caixa de E-mail Lotada&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;vinicius.silveira@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84 99104-6460&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Caixa Lotada&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 28-01-2025 17:17&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 17:17]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Atendimento solucionado.&#60;/p&#62;\r\n&#60;p&#62;Colaborador com o outlook configurado em IMAP. Foi realizado a reconfiguração em POP3&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 17:17&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_68 \n\n Chamado: Descrição\n\n Título : Caixa de E-mail Lotada\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 15:47\n Data de fechamento : 28-01-2025 17:17\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - vinicius.silveira@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Caixa de E-mail Lotada\n2) E-MAIL : vinicius.silveira@tecnomulti.com\n3) TELEFONE : 84 99104-6460\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nCaixa Lotada\n \n\n Data da solução : 28-01-2025 17:17\n Tipo de solução : \n Solução : \n \n\n\n[28-01-2025 17:17]\nAutor Alexsandro Cruz\nDescrição Atendimento solucionado.\n\nColaborador com o outlook configurado em IMAP. Foi realizado a reconfiguração em POP3\nData de abertura 28-01-2025 17:17\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-68/closed.1738095448.223501462@oswintech.ddns.net','','mailing','closed'),
(518,'Ticket',68,4,2,0,3,'2025-01-28 20:17:28','2025-02-10 11:06:52',NULL,'[GLPI #0000068] Encerramento do chamado Caixa de E-mail Lotada','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000068] Encerramento do chamado Caixa de E-mail Lotada&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_68\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_68&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Caixa de E-mail Lotada &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 15:47 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:28-01-2025 17:17 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- vinicius.silveira@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Caixa de E-mail Lotada&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;vinicius.silveira@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84 99104-6460&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Caixa Lotada&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 28-01-2025 17:17&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 17:17]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Atendimento solucionado.&#60;/p&#62;\r\n&#60;p&#62;Colaborador com o outlook configurado em IMAP. Foi realizado a reconfiguração em POP3&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 17:17&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_68 \n\n Chamado: Descrição\n\n Título : Caixa de E-mail Lotada\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 15:47\n Data de fechamento : 28-01-2025 17:17\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - vinicius.silveira@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Caixa de E-mail Lotada\n2) E-MAIL : vinicius.silveira@tecnomulti.com\n3) TELEFONE : 84 99104-6460\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nCaixa Lotada\n \n\n Data da solução : 28-01-2025 17:17\n Tipo de solução : \n Solução : \n \n\n\n[28-01-2025 17:17]\nAutor Alexsandro Cruz\nDescrição Atendimento solucionado.\n\nColaborador com o outlook configurado em IMAP. Foi realizado a reconfiguração em POP3\nData de abertura 28-01-2025 17:17\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-68/closed.1738095448.273799328@oswintech.ddns.net','','mailing','closed'),
(519,'Ticket',67,4,2,0,3,'2025-01-28 20:18:35','2025-02-10 11:06:52',NULL,'[GLPI #0000067] Novo acompanhamento CONECTAR IMPRESSORA NO PC','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000067] Novo acompanhamento CONECTAR IMPRESSORA NO PC&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_67\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_67&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:CONECTAR IMPRESSORA NO PC &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 12:12 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- elton.jorge@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CONECTAR IMPRESSORA NO PC&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;elton.jorge@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;+55 83 8199-1245&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;erro ao tentar impressão&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 17:18]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Instalação realizada.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 17:18&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 12:22]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, manda o acesso remoto(anydesk ou  teamviewer) do seu computador.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 12:22&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_67 \n\n Chamado: Descrição\n\n Título : CONECTAR IMPRESSORA NO PC\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 12:12\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - elton.jorge@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CONECTAR IMPRESSORA NO PC\n2) E-MAIL : elton.jorge@tecnomulti.com\n3) TELEFONE : +55 83 8199-1245\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nerro ao tentar impressão\n \n\n\n[28-01-2025 17:18]\nAutor Alexsandro Cruz\nDescrição Instalação realizada.\nData de abertura 28-01-2025 17:18\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 12:22]\nAutor Luan Medeiros\nDescrição Boa tarde, manda o acesso remoto(anydesk ou  teamviewer) do seu computador.\nData de abertura 28-01-2025 12:22\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-67/add_followup.1738095515.757384189@oswintech.ddns.net','','mailing','add_followup'),
(520,'Ticket',67,4,2,0,3,'2025-01-28 20:18:35','2025-02-10 11:06:52',NULL,'[GLPI #0000067] Novo acompanhamento CONECTAR IMPRESSORA NO PC','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000067] Novo acompanhamento CONECTAR IMPRESSORA NO PC&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_67\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_67&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:CONECTAR IMPRESSORA NO PC &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 12:12 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- elton.jorge@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CONECTAR IMPRESSORA NO PC&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;elton.jorge@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;+55 83 8199-1245&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;erro ao tentar impressão&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 17:18]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Instalação realizada.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 17:18&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 12:22]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, manda o acesso remoto(anydesk ou  teamviewer) do seu computador.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 12:22&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_67 \n\n Chamado: Descrição\n\n Título : CONECTAR IMPRESSORA NO PC\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 12:12\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - elton.jorge@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CONECTAR IMPRESSORA NO PC\n2) E-MAIL : elton.jorge@tecnomulti.com\n3) TELEFONE : +55 83 8199-1245\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nerro ao tentar impressão\n \n\n\n[28-01-2025 17:18]\nAutor Alexsandro Cruz\nDescrição Instalação realizada.\nData de abertura 28-01-2025 17:18\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 12:22]\nAutor Luan Medeiros\nDescrição Boa tarde, manda o acesso remoto(anydesk ou  teamviewer) do seu computador.\nData de abertura 28-01-2025 12:22\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-67/add_followup.1738095515.1437146524@oswintech.ddns.net','','mailing','add_followup'),
(521,'Ticket',67,4,2,0,3,'2025-01-28 20:18:45','2025-02-10 11:06:52',NULL,'[GLPI #0000067] Encerramento do chamado CONECTAR IMPRESSORA NO PC','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000067] Encerramento do chamado CONECTAR IMPRESSORA NO PC&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_67\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_67&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:CONECTAR IMPRESSORA NO PC &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 12:12 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:28-01-2025 17:18 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- elton.jorge@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CONECTAR IMPRESSORA NO PC&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;elton.jorge@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;+55 83 8199-1245&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;erro ao tentar impressão&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 28-01-2025 17:18&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 17:18]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Instalação realizada.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 17:18&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 12:22]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, manda o acesso remoto(anydesk ou  teamviewer) do seu computador.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 12:22&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_67 \n\n Chamado: Descrição\n\n Título : CONECTAR IMPRESSORA NO PC\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 12:12\n Data de fechamento : 28-01-2025 17:18\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - elton.jorge@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CONECTAR IMPRESSORA NO PC\n2) E-MAIL : elton.jorge@tecnomulti.com\n3) TELEFONE : +55 83 8199-1245\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nerro ao tentar impressão\n \n\n Data da solução : 28-01-2025 17:18\n Tipo de solução : \n Solução : \n \n\n\n[28-01-2025 17:18]\nAutor Alexsandro Cruz\nDescrição Instalação realizada.\nData de abertura 28-01-2025 17:18\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 12:22]\nAutor Luan Medeiros\nDescrição Boa tarde, manda o acesso remoto(anydesk ou  teamviewer) do seu computador.\nData de abertura 28-01-2025 12:22\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-67/closed.1738095525.1212812934@oswintech.ddns.net','','mailing','closed'),
(522,'Ticket',67,4,2,0,3,'2025-01-28 20:18:45','2025-02-10 11:06:52',NULL,'[GLPI #0000067] Encerramento do chamado CONECTAR IMPRESSORA NO PC','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000067] Encerramento do chamado CONECTAR IMPRESSORA NO PC&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_67\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_67&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:CONECTAR IMPRESSORA NO PC &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 12:12 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:28-01-2025 17:18 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- elton.jorge@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CONECTAR IMPRESSORA NO PC&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;elton.jorge@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;+55 83 8199-1245&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;erro ao tentar impressão&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 28-01-2025 17:18&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 17:18]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Instalação realizada.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 17:18&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 12:22]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, manda o acesso remoto(anydesk ou  teamviewer) do seu computador.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 12:22&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_67 \n\n Chamado: Descrição\n\n Título : CONECTAR IMPRESSORA NO PC\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 12:12\n Data de fechamento : 28-01-2025 17:18\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - elton.jorge@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CONECTAR IMPRESSORA NO PC\n2) E-MAIL : elton.jorge@tecnomulti.com\n3) TELEFONE : +55 83 8199-1245\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nerro ao tentar impressão\n \n\n Data da solução : 28-01-2025 17:18\n Tipo de solução : \n Solução : \n \n\n\n[28-01-2025 17:18]\nAutor Alexsandro Cruz\nDescrição Instalação realizada.\nData de abertura 28-01-2025 17:18\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 12:22]\nAutor Luan Medeiros\nDescrição Boa tarde, manda o acesso remoto(anydesk ou  teamviewer) do seu computador.\nData de abertura 28-01-2025 12:22\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-67/closed.1738095525.456914728@oswintech.ddns.net','','mailing','closed'),
(523,'Ticket',66,4,2,0,3,'2025-01-28 20:20:25','2025-02-10 11:06:52',NULL,'[GLPI #0000066] Novo acompanhamento Configurar o SAP ','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000066] Novo acompanhamento Configurar o SAP &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_66\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_66&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Configurar o SAP  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 11:31 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- jose.carmo@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistemas VIVO/FIBRASIL      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Configurar o SAP &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;jose.carmo@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81986954083&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistemas VIVO/FIBRASIL&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Preciso urgentemente que configure minha conta nova do Sap nessa maquina. &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 17:20]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Usuário sem permissão a ferramenta SAP. Foi informado da necessidade de entrar em contato com o suporte da VIVO para liberar a permissão junto ao usuário. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 17:20&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 13:46]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;496 959 993 &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 13:46&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:52]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, manda o acesso remoto(anydesk ou teamviewer) do seu computador por favor.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:52&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 3&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_66 \n\n Chamado: Descrição\n\n Título : Configurar o SAP \n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 11:31\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - jose.carmo@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistemas VIVO/FIBRASIL  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Configurar o SAP \n2) E-MAIL : jose.carmo@tecnomulti.com\n3) TELEFONE : 81986954083\n4) CATEGORIA : Sistemas VIVO/FIBRASIL\n5) INFORME MAIS DETALHES : \nPreciso urgentemente que configure minha conta nova do Sap nessa maquina. \n \n\n\n[28-01-2025 17:20]\nAutor Alexsandro Cruz\nDescrição Usuário sem permissão a ferramenta SAP. Foi informado da necessidade de entrar em contato com o suporte da VIVO para liberar a permissão junto ao usuário. \nData de abertura 28-01-2025 17:20\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 13:46]\nAutor tecnomulti\nDescrição 496 959 993 \nData de abertura 28-01-2025 13:46\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 11:52]\nAutor Luan Medeiros\nDescrição Bom dia, manda o acesso remoto(anydesk ou teamviewer) do seu computador por favor.\nData de abertura 28-01-2025 11:52\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-66/add_followup.1738095625.925318668@oswintech.ddns.net','','mailing','add_followup'),
(524,'Ticket',66,4,2,0,3,'2025-01-28 20:20:25','2025-02-10 11:06:52',NULL,'[GLPI #0000066] Novo acompanhamento Configurar o SAP ','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000066] Novo acompanhamento Configurar o SAP &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_66\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_66&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Configurar o SAP  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 11:31 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- jose.carmo@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistemas VIVO/FIBRASIL      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Configurar o SAP &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;jose.carmo@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81986954083&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistemas VIVO/FIBRASIL&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Preciso urgentemente que configure minha conta nova do Sap nessa maquina. &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 17:20]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Usuário sem permissão a ferramenta SAP. Foi informado da necessidade de entrar em contato com o suporte da VIVO para liberar a permissão junto ao usuário. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 17:20&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 13:46]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;496 959 993 &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 13:46&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:52]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, manda o acesso remoto(anydesk ou teamviewer) do seu computador por favor.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:52&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 3&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_66 \n\n Chamado: Descrição\n\n Título : Configurar o SAP \n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 11:31\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - jose.carmo@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistemas VIVO/FIBRASIL  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Configurar o SAP \n2) E-MAIL : jose.carmo@tecnomulti.com\n3) TELEFONE : 81986954083\n4) CATEGORIA : Sistemas VIVO/FIBRASIL\n5) INFORME MAIS DETALHES : \nPreciso urgentemente que configure minha conta nova do Sap nessa maquina. \n \n\n\n[28-01-2025 17:20]\nAutor Alexsandro Cruz\nDescrição Usuário sem permissão a ferramenta SAP. Foi informado da necessidade de entrar em contato com o suporte da VIVO para liberar a permissão junto ao usuário. \nData de abertura 28-01-2025 17:20\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 13:46]\nAutor tecnomulti\nDescrição 496 959 993 \nData de abertura 28-01-2025 13:46\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 11:52]\nAutor Luan Medeiros\nDescrição Bom dia, manda o acesso remoto(anydesk ou teamviewer) do seu computador por favor.\nData de abertura 28-01-2025 11:52\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-66/add_followup.1738095625.2058446840@oswintech.ddns.net','','mailing','add_followup'),
(525,'Ticket',66,4,2,0,3,'2025-01-28 20:20:30','2025-02-10 11:06:52',NULL,'[GLPI #0000066] Encerramento do chamado Configurar o SAP ','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000066] Encerramento do chamado Configurar o SAP &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_66\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_66&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Configurar o SAP  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 11:31 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:28-01-2025 17:20 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- jose.carmo@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistemas VIVO/FIBRASIL      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Configurar o SAP &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;jose.carmo@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81986954083&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistemas VIVO/FIBRASIL&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Preciso urgentemente que configure minha conta nova do Sap nessa maquina. &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 28-01-2025 17:20&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 17:20]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Usuário sem permissão a ferramenta SAP. Foi informado da necessidade de entrar em contato com o suporte da VIVO para liberar a permissão junto ao usuário. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 17:20&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 13:46]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;496 959 993 &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 13:46&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:52]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, manda o acesso remoto(anydesk ou teamviewer) do seu computador por favor.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:52&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 3&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_66 \n\n Chamado: Descrição\n\n Título : Configurar o SAP \n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 11:31\n Data de fechamento : 28-01-2025 17:20\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - jose.carmo@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistemas VIVO/FIBRASIL  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Configurar o SAP \n2) E-MAIL : jose.carmo@tecnomulti.com\n3) TELEFONE : 81986954083\n4) CATEGORIA : Sistemas VIVO/FIBRASIL\n5) INFORME MAIS DETALHES : \nPreciso urgentemente que configure minha conta nova do Sap nessa maquina. \n \n\n Data da solução : 28-01-2025 17:20\n Tipo de solução : \n Solução : \n \n\n\n[28-01-2025 17:20]\nAutor Alexsandro Cruz\nDescrição Usuário sem permissão a ferramenta SAP. Foi informado da necessidade de entrar em contato com o suporte da VIVO para liberar a permissão junto ao usuário. \nData de abertura 28-01-2025 17:20\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 13:46]\nAutor tecnomulti\nDescrição 496 959 993 \nData de abertura 28-01-2025 13:46\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 11:52]\nAutor Luan Medeiros\nDescrição Bom dia, manda o acesso remoto(anydesk ou teamviewer) do seu computador por favor.\nData de abertura 28-01-2025 11:52\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-66/closed.1738095630.895279310@oswintech.ddns.net','','mailing','closed'),
(526,'Ticket',66,4,2,0,3,'2025-01-28 20:20:30','2025-02-10 11:06:52',NULL,'[GLPI #0000066] Encerramento do chamado Configurar o SAP ','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000066] Encerramento do chamado Configurar o SAP &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_66\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_66&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Configurar o SAP  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 11:31 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:28-01-2025 17:20 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- jose.carmo@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistemas VIVO/FIBRASIL      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Configurar o SAP &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;jose.carmo@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81986954083&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistemas VIVO/FIBRASIL&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Preciso urgentemente que configure minha conta nova do Sap nessa maquina. &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 28-01-2025 17:20&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 17:20]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Usuário sem permissão a ferramenta SAP. Foi informado da necessidade de entrar em contato com o suporte da VIVO para liberar a permissão junto ao usuário. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 17:20&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 13:46]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;496 959 993 &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 13:46&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:52]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, manda o acesso remoto(anydesk ou teamviewer) do seu computador por favor.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:52&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 3&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_66 \n\n Chamado: Descrição\n\n Título : Configurar o SAP \n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 11:31\n Data de fechamento : 28-01-2025 17:20\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - jose.carmo@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistemas VIVO/FIBRASIL  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Configurar o SAP \n2) E-MAIL : jose.carmo@tecnomulti.com\n3) TELEFONE : 81986954083\n4) CATEGORIA : Sistemas VIVO/FIBRASIL\n5) INFORME MAIS DETALHES : \nPreciso urgentemente que configure minha conta nova do Sap nessa maquina. \n \n\n Data da solução : 28-01-2025 17:20\n Tipo de solução : \n Solução : \n \n\n\n[28-01-2025 17:20]\nAutor Alexsandro Cruz\nDescrição Usuário sem permissão a ferramenta SAP. Foi informado da necessidade de entrar em contato com o suporte da VIVO para liberar a permissão junto ao usuário. \nData de abertura 28-01-2025 17:20\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 13:46]\nAutor tecnomulti\nDescrição 496 959 993 \nData de abertura 28-01-2025 13:46\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 11:52]\nAutor Luan Medeiros\nDescrição Bom dia, manda o acesso remoto(anydesk ou teamviewer) do seu computador por favor.\nData de abertura 28-01-2025 11:52\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-66/closed.1738095630.750344998@oswintech.ddns.net','','mailing','closed'),
(527,'PluginFormcreatorFormAnswer',33,29,2,0,3,'2025-01-29 02:56:40','2025-02-10 11:06:52',NULL,'[GLPI] Sua requisição foi salva','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI] Sua requisi&#38;ccedil;&#38;atilde;o foi salva&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;p&#62;Olá,&#60;br /&#62;Sua requisição do GLPI foi salva com sucesso com o número 33 e transmitido para a equipe de helpdesk.&#60;br /&#62;Você pode ver suas respostas no seguinte link:&#60;br /&#62;https://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=33&#60;/p&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;','Olá,\nSua requisição do GLPI foi salva com sucesso com o número 33 e transmitido para a equipe de helpdesk.\nVocê pode ver suas respostas no seguinte link:\nhttps://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=33\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-PluginFormcreatorFormAnswer-33/plugin_formcreator_form_created.1738119401.2019158717@oswintech.ddns.net','','mailing','plugin_formcreator_form_created'),
(528,'Ticket',69,4,2,1,0,'2025-01-29 02:56:40','2025-01-29 02:56:40','2025-01-29 02:58:26','[GLPI #0000069] Novo chamado teste',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(529,'Ticket',69,4,2,1,0,'2025-01-29 02:56:40','2025-01-29 02:56:40','2025-01-30 15:37:34','[GLPI #0000069] Novo chamado teste',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(530,'Ticket',69,4,2,1,0,'2025-01-29 02:56:40','2025-01-29 02:56:40','2025-01-30 15:49:48','[GLPI #0000069] Novo chamado teste',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(531,'Ticket',69,4,2,1,0,'2025-01-29 02:56:40','2025-01-29 02:56:40','2025-01-29 02:56:45','[GLPI #0000069] Novo chamado teste',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(532,'Ticket',69,4,2,0,3,'2025-01-29 02:56:40','2025-02-10 11:06:53',NULL,'[GLPI #0000069] Novo chamado teste','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Novo chamado teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/new@oswintech.ddns.net','','mailing','new'),
(533,'Ticket',69,4,2,0,3,'2025-01-29 02:56:40','2025-02-10 11:06:53',NULL,'[GLPI #0000069] Novo chamado teste','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Novo chamado teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/new@oswintech.ddns.net','','mailing','new'),
(534,'Ticket',69,4,2,0,3,'2025-01-29 02:56:40','2025-02-10 11:06:53',NULL,'[GLPI #0000069] Novo chamado teste','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Novo chamado teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/new@oswintech.ddns.net','','mailing','new'),
(535,'Ticket',69,4,2,0,3,'2025-01-29 02:56:40','2025-02-10 11:06:53',NULL,'[GLPI #0000069] Novo chamado teste','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Novo chamado teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/new@oswintech.ddns.net','','mailing','new'),
(536,'Ticket',69,4,2,0,3,'2025-01-29 02:57:42','2025-02-10 11:06:53',NULL,'[GLPI #0000069] Novo acompanhamento teste','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Novo acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 23:57]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Olá&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 23:57&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[28-01-2025 23:57]\nAutor Alexsandro Cruz\nDescrição Olá\nData de abertura 28-01-2025 23:57\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/add_followup.1738119462.1062067104@oswintech.ddns.net','','mailing','add_followup'),
(537,'Ticket',69,4,2,0,3,'2025-01-29 02:57:42','2025-02-10 11:06:53',NULL,'[GLPI #0000069] Novo acompanhamento teste','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Novo acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 23:57]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Olá&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 23:57&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[28-01-2025 23:57]\nAutor Alexsandro Cruz\nDescrição Olá\nData de abertura 28-01-2025 23:57\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/add_followup.1738119462.1169652609@oswintech.ddns.net','','mailing','add_followup'),
(538,'Ticket',69,4,2,1,0,'2025-01-29 02:58:00','2025-01-29 02:58:00','2025-01-29 02:58:26','[GLPI #0000069] Atualização de um chamado teste',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[28-01-2025 23:57]\nAutor Alexsandro Cruz\nDescrição Olá\nData de abertura 28-01-2025 23:57\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','update'),
(539,'Ticket',69,4,2,1,0,'2025-01-29 02:58:00','2025-01-29 02:58:00','2025-01-30 15:37:34','[GLPI #0000069] Atualização de um chamado teste',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[28-01-2025 23:57]\nAutor Alexsandro Cruz\nDescrição Olá\nData de abertura 28-01-2025 23:57\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','update'),
(540,'Ticket',69,4,2,1,0,'2025-01-29 02:58:00','2025-01-29 02:58:00','2025-01-29 02:58:04','[GLPI #0000069] Atualização de um chamado teste',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[28-01-2025 23:57]\nAutor Alexsandro Cruz\nDescrição Olá\nData de abertura 28-01-2025 23:57\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','update'),
(541,'Ticket',69,4,2,0,3,'2025-01-29 02:58:00','2025-02-11 12:26:07',NULL,'[GLPI #0000069] Atualização de um chamado teste','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Atualiza&#38;ccedil;&#38;atilde;o de um chamado teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 23:57]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Olá&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 23:57&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[28-01-2025 23:57]\nAutor Alexsandro Cruz\nDescrição Olá\nData de abertura 28-01-2025 23:57\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/update.1738119480.889381738@oswintech.ddns.net','','mailing','update'),
(542,'Ticket',69,4,2,0,3,'2025-01-29 02:58:00','2025-02-11 12:26:07',NULL,'[GLPI #0000069] Atualização de um chamado teste','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Atualiza&#38;ccedil;&#38;atilde;o de um chamado teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 23:57]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Olá&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 23:57&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[28-01-2025 23:57]\nAutor Alexsandro Cruz\nDescrição Olá\nData de abertura 28-01-2025 23:57\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/update.1738119480.1546535182@oswintech.ddns.net','','mailing','update'),
(543,'Ticket',69,4,2,0,3,'2025-01-29 02:58:00','2025-02-11 12:26:07',NULL,'[GLPI #0000069] Atualização de um chamado teste','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Atualiza&#38;ccedil;&#38;atilde;o de um chamado teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 23:57]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Olá&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 23:57&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[28-01-2025 23:57]\nAutor Alexsandro Cruz\nDescrição Olá\nData de abertura 28-01-2025 23:57\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/update.1738119480.1127758865@oswintech.ddns.net','','mailing','update'),
(544,'Ticket',69,4,2,0,3,'2025-01-29 02:58:00','2025-02-11 12:26:07',NULL,'[GLPI #0000069] Atualização de um chamado teste','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Atualiza&#38;ccedil;&#38;atilde;o de um chamado teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 23:57]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Olá&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 23:57&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[28-01-2025 23:57]\nAutor Alexsandro Cruz\nDescrição Olá\nData de abertura 28-01-2025 23:57\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/update.1738119480.1933154309@oswintech.ddns.net','','mailing','update'),
(545,'Ticket',69,4,2,0,3,'2025-01-29 02:58:26','2025-02-11 12:26:07',NULL,'[GLPI #0000069] Novo acompanhamento teste','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Novo acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 23:58]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 23:58&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 23:57]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Olá&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 23:57&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[28-01-2025 23:58]\nAutor Alexsandro Cruz\nDescrição oi\n\n \nData de abertura 28-01-2025 23:58\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 23:57]\nAutor Alexsandro Cruz\nDescrição Olá\nData de abertura 28-01-2025 23:57\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/add_followup.1738119506.1550643059@oswintech.ddns.net','','mailing','add_followup'),
(546,'Ticket',69,4,2,0,3,'2025-01-29 02:58:26','2025-02-11 12:26:07',NULL,'[GLPI #0000069] Novo acompanhamento teste','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Novo acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 23:58]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 23:58&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 23:57]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Olá&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 23:57&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[28-01-2025 23:58]\nAutor Alexsandro Cruz\nDescrição oi\n\n \nData de abertura 28-01-2025 23:58\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 23:57]\nAutor Alexsandro Cruz\nDescrição Olá\nData de abertura 28-01-2025 23:57\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/add_followup.1738119506.161375488@oswintech.ddns.net','','mailing','add_followup'),
(547,'Ticket',69,4,2,0,3,'2025-01-29 02:59:25','2025-02-11 12:26:07',NULL,'[GLPI #0000069] Novo acompanhamento teste','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Novo acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 23:59]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 23:59&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 23:58]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 23:58&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 23:57]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Olá&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 23:57&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 3&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[28-01-2025 23:59]\nAutor Alexsandro Cruz\nDescrição oi\n\n \nData de abertura 28-01-2025 23:59\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 23:58]\nAutor Alexsandro Cruz\nDescrição oi\n\n \nData de abertura 28-01-2025 23:58\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 23:57]\nAutor Alexsandro Cruz\nDescrição Olá\nData de abertura 28-01-2025 23:57\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/add_followup.1738119566.743822175@oswintech.ddns.net','','mailing','add_followup'),
(548,'Ticket',69,4,2,0,3,'2025-01-29 02:59:25','2025-02-11 12:26:07',NULL,'[GLPI #0000069] Novo acompanhamento teste','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Novo acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 23:59]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 23:59&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 23:58]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 23:58&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 23:57]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Olá&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 23:57&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 3&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[28-01-2025 23:59]\nAutor Alexsandro Cruz\nDescrição oi\n\n \nData de abertura 28-01-2025 23:59\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 23:58]\nAutor Alexsandro Cruz\nDescrição oi\n\n \nData de abertura 28-01-2025 23:58\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 23:57]\nAutor Alexsandro Cruz\nDescrição Olá\nData de abertura 28-01-2025 23:57\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/add_followup.1738119566.1224599347@oswintech.ddns.net','','mailing','add_followup'),
(549,'Ticket',69,4,2,0,3,'2025-01-29 03:01:00','2025-02-11 12:26:07',NULL,'[GLPI #0000069] Chamado solucionado teste','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Chamado solucionado teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62;URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69_Ticket%241\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69_Ticket%241&#60;/a&#62; &#60;strong&#62;&#38;#160;&#60;/strong&#62;&#60;/div&#62;\n&#60;div&#62;&#60;strong&#62;&#60;/strong&#62;&#60;/div&#62;\n&#60;div&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 29-01-2025 00:01&#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; :  &#60;/div&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Solucionado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 23:59]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 23:59&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 23:58]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 23:58&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 23:57]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Olá&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 23:57&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 3&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n URL : https://oswintech.ddns.net/index.php?redirect=ticket_69_Ticket%241\n \n Data da solução : 29-01-2025 00:01\n Tipo de solução : \n Solução :  \n \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Solucionado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[28-01-2025 23:59]\nAutor Alexsandro Cruz\nDescrição oi\n\n \nData de abertura 28-01-2025 23:59\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 23:58]\nAutor Alexsandro Cruz\nDescrição oi\n\n \nData de abertura 28-01-2025 23:58\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 23:57]\nAutor Alexsandro Cruz\nDescrição Olá\nData de abertura 28-01-2025 23:57\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/solved.1738119660.1079146358@oswintech.ddns.net','','mailing','solved'),
(550,'Ticket',69,4,2,0,3,'2025-01-29 03:01:00','2025-02-11 12:26:07',NULL,'[GLPI #0000069] Chamado solucionado teste','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Chamado solucionado teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62;URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69_Ticket%241\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69_Ticket%241&#60;/a&#62; &#60;strong&#62;&#38;#160;&#60;/strong&#62;&#60;/div&#62;\n&#60;div&#62;&#60;strong&#62;&#60;/strong&#62;&#60;/div&#62;\n&#60;div&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 29-01-2025 00:01&#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; :  &#60;/div&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Solucionado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 23:59]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 23:59&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 23:58]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 23:58&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 23:57]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Olá&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 23:57&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 3&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n URL : https://oswintech.ddns.net/index.php?redirect=ticket_69_Ticket%241\n \n Data da solução : 29-01-2025 00:01\n Tipo de solução : \n Solução :  \n \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Solucionado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[28-01-2025 23:59]\nAutor Alexsandro Cruz\nDescrição oi\n\n \nData de abertura 28-01-2025 23:59\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 23:58]\nAutor Alexsandro Cruz\nDescrição oi\n\n \nData de abertura 28-01-2025 23:58\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 23:57]\nAutor Alexsandro Cruz\nDescrição Olá\nData de abertura 28-01-2025 23:57\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/solved.1738119660.750527592@oswintech.ddns.net','','mailing','solved'),
(551,'Ticket',69,4,2,0,3,'2025-01-29 03:02:35','2025-02-11 12:26:07',NULL,'[GLPI #0000069] Novo acompanhamento teste','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Novo acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 23:59]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 23:59&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 23:58]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 23:58&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 23:57]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Olá&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 23:57&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 4&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 23:59]\nAutor Alexsandro Cruz\nDescrição oi\n\n \nData de abertura 28-01-2025 23:59\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 23:58]\nAutor Alexsandro Cruz\nDescrição oi\n\n \nData de abertura 28-01-2025 23:58\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 23:57]\nAutor Alexsandro Cruz\nDescrição Olá\nData de abertura 28-01-2025 23:57\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 4\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/add_followup.1738119755.1199162785@oswintech.ddns.net','','mailing','add_followup'),
(552,'Ticket',69,4,2,0,3,'2025-01-29 03:02:35','2025-02-11 12:26:07',NULL,'[GLPI #0000069] Novo acompanhamento teste','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Novo acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 23:59]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 23:59&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 23:58]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 23:58&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 23:57]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Olá&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 23:57&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 4&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 23:59]\nAutor Alexsandro Cruz\nDescrição oi\n\n \nData de abertura 28-01-2025 23:59\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 23:58]\nAutor Alexsandro Cruz\nDescrição oi\n\n \nData de abertura 28-01-2025 23:58\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 23:57]\nAutor Alexsandro Cruz\nDescrição Olá\nData de abertura 28-01-2025 23:57\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 4\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/add_followup.1738119755.645703216@oswintech.ddns.net','','mailing','add_followup'),
(553,'Ticket',69,4,2,0,3,'2025-01-29 03:04:17','2025-02-11 12:26:07',NULL,'[GLPI #0000069] Exclusão de um acompanhamento teste','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Exclus&#38;atilde;o de um acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 23:59]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 23:59&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 23:58]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 23:58&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 3&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 23:59]\nAutor Alexsandro Cruz\nDescrição oi\n\n \nData de abertura 28-01-2025 23:59\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 23:58]\nAutor Alexsandro Cruz\nDescrição oi\n\n \nData de abertura 28-01-2025 23:58\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/delete_followup.1738119857.1392109480@oswintech.ddns.net','','mailing','delete_followup'),
(554,'Ticket',69,4,2,0,3,'2025-01-29 03:04:17','2025-02-11 12:26:07',NULL,'[GLPI #0000069] Exclusão de um acompanhamento teste','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Exclus&#38;atilde;o de um acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 23:59]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 23:59&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 23:58]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 23:58&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 3&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 23:59]\nAutor Alexsandro Cruz\nDescrição oi\n\n \nData de abertura 28-01-2025 23:59\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 23:58]\nAutor Alexsandro Cruz\nDescrição oi\n\n \nData de abertura 28-01-2025 23:58\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/delete_followup.1738119858.558632580@oswintech.ddns.net','','mailing','delete_followup'),
(555,'Ticket',69,4,2,0,3,'2025-01-29 03:04:26','2025-02-11 12:26:07',NULL,'[GLPI #0000069] Exclusão de um acompanhamento teste','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Exclus&#38;atilde;o de um acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 23:59]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 23:59&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 23:59]\nAutor Alexsandro Cruz\nDescrição oi\n\n \nData de abertura 28-01-2025 23:59\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/delete_followup.1738119867.1873478729@oswintech.ddns.net','','mailing','delete_followup'),
(556,'Ticket',69,4,2,0,3,'2025-01-29 03:04:26','2025-02-11 12:26:07',NULL,'[GLPI #0000069] Exclusão de um acompanhamento teste','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Exclus&#38;atilde;o de um acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 23:59]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 23:59&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 23:59]\nAutor Alexsandro Cruz\nDescrição oi\n\n \nData de abertura 28-01-2025 23:59\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/delete_followup.1738119867.1382306372@oswintech.ddns.net','','mailing','delete_followup'),
(557,'Ticket',69,4,2,0,3,'2025-01-29 03:04:34','2025-02-11 12:26:07',NULL,'[GLPI #0000069] Exclusão de um acompanhamento teste','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Exclus&#38;atilde;o de um acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/delete_followup.1738119875.252895097@oswintech.ddns.net','','mailing','delete_followup'),
(558,'Ticket',69,4,2,0,3,'2025-01-29 03:04:34','2025-02-11 12:26:07',NULL,'[GLPI #0000069] Exclusão de um acompanhamento teste','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Exclus&#38;atilde;o de um acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/delete_followup.1738119875.595020220@oswintech.ddns.net','','mailing','delete_followup'),
(559,'Ticket',69,4,2,1,0,'2025-01-29 03:05:33','2025-01-29 03:05:33','2025-01-29 03:05:37','[GLPI #0000069] Novo acompanhamento teste',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:05]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:05\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(560,'Ticket',69,4,2,1,0,'2025-01-29 03:05:33','2025-01-29 03:05:33','2025-01-30 15:37:34','[GLPI #0000069] Novo acompanhamento teste',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:05]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:05\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(561,'Ticket',69,4,2,1,0,'2025-01-29 03:05:33','2025-01-29 03:05:33','2025-01-29 03:05:34','[GLPI #0000069] Novo acompanhamento teste',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:05]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:05\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(562,'Ticket',69,4,2,0,3,'2025-01-29 03:05:33','2025-02-11 12:26:07',NULL,'[GLPI #0000069] Novo acompanhamento teste','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Novo acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:05]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:05&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:05]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:05\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/add_followup.1738119933.1262474346@oswintech.ddns.net','','mailing','add_followup'),
(563,'Ticket',69,4,2,0,3,'2025-01-29 03:05:33','2025-02-11 12:26:07',NULL,'[GLPI #0000069] Novo acompanhamento teste','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Novo acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:05]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:05&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:05]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:05\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/add_followup.1738119933.100032921@oswintech.ddns.net','','mailing','add_followup'),
(564,'Ticket',69,4,2,0,3,'2025-01-29 03:05:33','2025-02-11 12:26:07',NULL,'[GLPI #0000069] Novo acompanhamento teste','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Novo acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:05]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:05&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:05]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:05\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/add_followup.1738119933.102729790@oswintech.ddns.net','','mailing','add_followup'),
(565,'Ticket',69,4,2,0,3,'2025-01-29 03:05:33','2025-02-11 12:26:07',NULL,'[GLPI #0000069] Novo acompanhamento teste','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Novo acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:05]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:05&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:05]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:05\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/add_followup.1738119934.107370230@oswintech.ddns.net','','mailing','add_followup'),
(566,'Ticket',69,4,2,1,0,'2025-01-29 03:06:16','2025-01-29 03:06:16','2025-01-29 03:06:17','[GLPI #0000069] Novo acompanhamento teste',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:06]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:06\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:05]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:05\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(567,'Ticket',69,4,2,1,0,'2025-01-29 03:06:16','2025-01-29 03:06:16','2025-01-30 15:37:34','[GLPI #0000069] Novo acompanhamento teste',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:06]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:06\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:05]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:05\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(568,'Ticket',69,4,2,1,0,'2025-01-29 03:06:16','2025-01-29 03:06:16','2025-01-29 03:06:19','[GLPI #0000069] Novo acompanhamento teste',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:06]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:06\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:05]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:05\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(569,'Ticket',69,4,2,0,3,'2025-01-29 03:06:16','2025-02-11 12:26:07',NULL,'[GLPI #0000069] Novo acompanhamento teste','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Novo acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:06]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:06&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:05]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:05&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 3&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:06]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:06\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:05]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:05\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/add_followup.1738119976.1481142459@oswintech.ddns.net','','mailing','add_followup'),
(570,'Ticket',69,4,2,0,3,'2025-01-29 03:06:16','2025-02-11 12:26:07',NULL,'[GLPI #0000069] Novo acompanhamento teste','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Novo acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:06]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:06&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:05]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:05&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 3&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:06]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:06\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:05]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:05\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/add_followup.1738119976.555178065@oswintech.ddns.net','','mailing','add_followup'),
(571,'Ticket',69,4,2,0,3,'2025-01-29 03:06:16','2025-02-11 12:26:07',NULL,'[GLPI #0000069] Novo acompanhamento teste','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Novo acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:06]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:06&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:05]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:05&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 3&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:06]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:06\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:05]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:05\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/add_followup.1738119976.1572956462@oswintech.ddns.net','','mailing','add_followup'),
(572,'Ticket',69,4,2,0,3,'2025-01-29 03:06:16','2025-02-11 12:26:07',NULL,'[GLPI #0000069] Novo acompanhamento teste','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Novo acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:06]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:06&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:05]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:05&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 3&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:06]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:06\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:05]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:05\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/add_followup.1738119976.367985205@oswintech.ddns.net','','mailing','add_followup'),
(573,'Ticket',69,4,2,0,3,'2025-01-29 03:06:49','2025-02-11 12:26:07',NULL,'[GLPI #0000069] Exclusão de um acompanhamento teste','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Exclus&#38;atilde;o de um acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:05]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:05&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:05]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:05\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/delete_followup.1738120009.350084497@oswintech.ddns.net','','mailing','delete_followup'),
(574,'Ticket',69,4,2,0,3,'2025-01-29 03:06:49','2025-02-11 12:26:07',NULL,'[GLPI #0000069] Exclusão de um acompanhamento teste','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Exclus&#38;atilde;o de um acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:05]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:05&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:05]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:05\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/delete_followup.1738120009.1677826392@oswintech.ddns.net','','mailing','delete_followup'),
(575,'Ticket',69,4,2,0,3,'2025-01-29 03:06:58','2025-02-11 12:26:07',NULL,'[GLPI #0000069] Exclusão de um acompanhamento teste','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Exclus&#38;atilde;o de um acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/delete_followup.1738120018.1799273580@oswintech.ddns.net','','mailing','delete_followup'),
(576,'Ticket',69,4,2,0,3,'2025-01-29 03:06:58','2025-02-11 12:26:07',NULL,'[GLPI #0000069] Exclusão de um acompanhamento teste','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Exclus&#38;atilde;o de um acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/delete_followup.1738120018.692361556@oswintech.ddns.net','','mailing','delete_followup'),
(577,'Ticket',69,4,2,1,0,'2025-01-29 03:07:04','2025-01-29 03:07:04','2025-01-29 03:07:07','[GLPI #0000069] Novo acompanhamento teste',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:07]\nAutor Alexsandro Cruz\nDescrição oii\nData de abertura 29-01-2025 00:07\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(578,'Ticket',69,4,2,1,0,'2025-01-29 03:07:04','2025-01-29 03:07:04','2025-01-30 15:37:35','[GLPI #0000069] Novo acompanhamento teste',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:07]\nAutor Alexsandro Cruz\nDescrição oii\nData de abertura 29-01-2025 00:07\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(579,'Ticket',69,4,2,1,0,'2025-01-29 03:07:04','2025-01-29 03:07:04','2025-01-29 03:07:09','[GLPI #0000069] Novo acompanhamento teste',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:07]\nAutor Alexsandro Cruz\nDescrição oii\nData de abertura 29-01-2025 00:07\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(580,'Ticket',69,4,2,0,3,'2025-01-29 03:07:04','2025-02-11 12:26:07',NULL,'[GLPI #0000069] Novo acompanhamento teste','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Novo acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:07]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oii&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:07&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:07]\nAutor Alexsandro Cruz\nDescrição oii\nData de abertura 29-01-2025 00:07\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/add_followup.1738120024.1509269984@oswintech.ddns.net','','mailing','add_followup'),
(581,'Ticket',69,4,2,0,3,'2025-01-29 03:07:04','2025-02-11 12:26:07',NULL,'[GLPI #0000069] Novo acompanhamento teste','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Novo acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:07]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oii&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:07&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:07]\nAutor Alexsandro Cruz\nDescrição oii\nData de abertura 29-01-2025 00:07\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/add_followup.1738120024.333792965@oswintech.ddns.net','','mailing','add_followup'),
(582,'Ticket',69,4,2,0,3,'2025-01-29 03:07:04','2025-02-11 12:26:07',NULL,'[GLPI #0000069] Novo acompanhamento teste','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Novo acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:07]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oii&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:07&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:07]\nAutor Alexsandro Cruz\nDescrição oii\nData de abertura 29-01-2025 00:07\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/add_followup.1738120024.2099920255@oswintech.ddns.net','','mailing','add_followup'),
(583,'Ticket',69,4,2,0,3,'2025-01-29 03:07:04','2025-02-11 12:26:07',NULL,'[GLPI #0000069] Novo acompanhamento teste','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Novo acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:07]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oii&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:07&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:07]\nAutor Alexsandro Cruz\nDescrição oii\nData de abertura 29-01-2025 00:07\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/add_followup.1738120024.1354487266@oswintech.ddns.net','','mailing','add_followup'),
(584,'Ticket',69,4,2,1,0,'2025-01-29 03:07:24','2025-01-29 03:07:24','2025-01-29 03:07:27','[GLPI #0000069] Novo acompanhamento teste',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:07]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:07\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:07]\nAutor Alexsandro Cruz\nDescrição oii\nData de abertura 29-01-2025 00:07\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(585,'Ticket',69,4,2,1,0,'2025-01-29 03:07:24','2025-01-29 03:07:24','2025-01-30 15:37:35','[GLPI #0000069] Novo acompanhamento teste',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:07]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:07\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:07]\nAutor Alexsandro Cruz\nDescrição oii\nData de abertura 29-01-2025 00:07\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(586,'Ticket',69,4,2,1,0,'2025-01-29 03:07:24','2025-01-29 03:07:24','2025-01-29 03:07:28','[GLPI #0000069] Novo acompanhamento teste',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:07]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:07\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:07]\nAutor Alexsandro Cruz\nDescrição oii\nData de abertura 29-01-2025 00:07\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(587,'Ticket',69,4,2,0,3,'2025-01-29 03:07:24','2025-02-14 14:40:13',NULL,'[GLPI #0000069] Novo acompanhamento teste','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Novo acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:07]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:07&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:07]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oii&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:07&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 3&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:07]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:07\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:07]\nAutor Alexsandro Cruz\nDescrição oii\nData de abertura 29-01-2025 00:07\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/add_followup.1738120044.513808905@oswintech.ddns.net','','mailing','add_followup'),
(588,'Ticket',69,4,2,0,3,'2025-01-29 03:07:24','2025-02-14 14:40:13',NULL,'[GLPI #0000069] Novo acompanhamento teste','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Novo acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:07]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:07&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:07]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oii&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:07&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 3&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:07]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:07\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:07]\nAutor Alexsandro Cruz\nDescrição oii\nData de abertura 29-01-2025 00:07\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/add_followup.1738120044.358025632@oswintech.ddns.net','','mailing','add_followup'),
(589,'Ticket',69,4,2,0,3,'2025-01-29 03:07:24','2025-02-14 14:40:13',NULL,'[GLPI #0000069] Novo acompanhamento teste','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Novo acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:07]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:07&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:07]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oii&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:07&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 3&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:07]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:07\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:07]\nAutor Alexsandro Cruz\nDescrição oii\nData de abertura 29-01-2025 00:07\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/add_followup.1738120045.1199045601@oswintech.ddns.net','','mailing','add_followup'),
(590,'Ticket',69,4,2,0,3,'2025-01-29 03:07:24','2025-02-14 14:40:13',NULL,'[GLPI #0000069] Novo acompanhamento teste','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Novo acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:07]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:07&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:07]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oii&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:07&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 3&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:07]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:07\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:07]\nAutor Alexsandro Cruz\nDescrição oii\nData de abertura 29-01-2025 00:07\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/add_followup.1738120045.812794695@oswintech.ddns.net','','mailing','add_followup'),
(591,'Ticket',69,4,2,0,3,'2025-01-29 03:07:34','2025-02-14 14:40:13',NULL,'[GLPI #0000069] Exclusão de um acompanhamento teste','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Exclus&#38;atilde;o de um acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:07]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oii&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:07&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:07]\nAutor Alexsandro Cruz\nDescrição oii\nData de abertura 29-01-2025 00:07\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/delete_followup.1738120054.1752914336@oswintech.ddns.net','','mailing','delete_followup'),
(592,'Ticket',69,4,2,0,3,'2025-01-29 03:07:34','2025-02-14 14:40:13',NULL,'[GLPI #0000069] Exclusão de um acompanhamento teste','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Exclus&#38;atilde;o de um acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:07]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oii&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:07&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:07]\nAutor Alexsandro Cruz\nDescrição oii\nData de abertura 29-01-2025 00:07\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/delete_followup.1738120054.1019631951@oswintech.ddns.net','','mailing','delete_followup'),
(593,'Ticket',69,4,2,0,3,'2025-01-29 03:08:25','2025-02-14 14:40:13',NULL,'[GLPI #0000069] Exclusão de um acompanhamento teste','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Exclus&#38;atilde;o de um acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/delete_followup.1738120106.496125467@oswintech.ddns.net','','mailing','delete_followup'),
(594,'Ticket',69,4,2,0,3,'2025-01-29 03:08:25','2025-02-14 14:40:13',NULL,'[GLPI #0000069] Exclusão de um acompanhamento teste','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Exclus&#38;atilde;o de um acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/delete_followup.1738120106.1313243841@oswintech.ddns.net','','mailing','delete_followup'),
(595,'Ticket',69,4,2,1,0,'2025-01-29 03:08:33','2025-01-29 03:08:33','2025-01-29 03:08:34','[GLPI #0000069] Novo acompanhamento teste',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:08]\nAutor Alexsandro Cruz\nDescrição oii\nData de abertura 29-01-2025 00:08\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(596,'Ticket',69,4,2,1,0,'2025-01-29 03:08:33','2025-01-29 03:08:33','2025-01-30 15:37:35','[GLPI #0000069] Novo acompanhamento teste',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:08]\nAutor Alexsandro Cruz\nDescrição oii\nData de abertura 29-01-2025 00:08\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(597,'Ticket',69,4,2,1,0,'2025-01-29 03:08:33','2025-01-29 03:08:33','2025-01-29 03:08:35','[GLPI #0000069] Novo acompanhamento teste',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:08]\nAutor Alexsandro Cruz\nDescrição oii\nData de abertura 29-01-2025 00:08\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(598,'Ticket',69,4,2,0,3,'2025-01-29 03:08:33','2025-02-14 14:40:13',NULL,'[GLPI #0000069] Novo acompanhamento teste','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Novo acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:08]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oii&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:08&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:08]\nAutor Alexsandro Cruz\nDescrição oii\nData de abertura 29-01-2025 00:08\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/add_followup.1738120113.1954000302@oswintech.ddns.net','','mailing','add_followup'),
(599,'Ticket',69,4,2,0,3,'2025-01-29 03:08:33','2025-02-14 14:40:13',NULL,'[GLPI #0000069] Novo acompanhamento teste','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Novo acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:08]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oii&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:08&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:08]\nAutor Alexsandro Cruz\nDescrição oii\nData de abertura 29-01-2025 00:08\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/add_followup.1738120113.1597488968@oswintech.ddns.net','','mailing','add_followup'),
(600,'Ticket',69,4,2,0,3,'2025-01-29 03:08:33','2025-02-14 14:40:13',NULL,'[GLPI #0000069] Novo acompanhamento teste','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Novo acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:08]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oii&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:08&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:08]\nAutor Alexsandro Cruz\nDescrição oii\nData de abertura 29-01-2025 00:08\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/add_followup.1738120113.859000884@oswintech.ddns.net','','mailing','add_followup'),
(601,'Ticket',69,4,2,0,3,'2025-01-29 03:08:33','2025-02-14 14:40:13',NULL,'[GLPI #0000069] Novo acompanhamento teste','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Novo acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:08]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oii&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:08&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:08]\nAutor Alexsandro Cruz\nDescrição oii\nData de abertura 29-01-2025 00:08\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/add_followup.1738120113.1433411204@oswintech.ddns.net','','mailing','add_followup'),
(602,'Ticket',69,4,2,1,0,'2025-01-29 03:09:19','2025-01-29 03:09:19','2025-01-29 03:09:20','[GLPI #0000069] Novo acompanhamento teste',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:08]\nAutor Alexsandro Cruz\nDescrição oii\nData de abertura 29-01-2025 00:08\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(603,'Ticket',69,4,2,1,0,'2025-01-29 03:09:19','2025-01-29 03:09:19','2025-01-30 15:37:35','[GLPI #0000069] Novo acompanhamento teste',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:08]\nAutor Alexsandro Cruz\nDescrição oii\nData de abertura 29-01-2025 00:08\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(604,'Ticket',69,4,2,1,0,'2025-01-29 03:09:19','2025-01-29 03:09:19','2025-01-29 03:09:21','[GLPI #0000069] Novo acompanhamento teste',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:08]\nAutor Alexsandro Cruz\nDescrição oii\nData de abertura 29-01-2025 00:08\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(605,'Ticket',69,4,2,0,3,'2025-01-29 03:09:19','2025-02-14 14:40:13',NULL,'[GLPI #0000069] Novo acompanhamento teste','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Novo acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:08]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oii&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:08&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 3&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:08]\nAutor Alexsandro Cruz\nDescrição oii\nData de abertura 29-01-2025 00:08\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/add_followup.1738120159.1511588610@oswintech.ddns.net','','mailing','add_followup'),
(606,'Ticket',69,4,2,0,3,'2025-01-29 03:09:19','2025-02-14 14:40:13',NULL,'[GLPI #0000069] Novo acompanhamento teste','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Novo acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:08]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oii&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:08&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 3&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:08]\nAutor Alexsandro Cruz\nDescrição oii\nData de abertura 29-01-2025 00:08\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/add_followup.1738120159.623517204@oswintech.ddns.net','','mailing','add_followup'),
(607,'Ticket',69,4,2,0,3,'2025-01-29 03:09:19','2025-02-14 14:40:13',NULL,'[GLPI #0000069] Novo acompanhamento teste','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Novo acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:08]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oii&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:08&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 3&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:08]\nAutor Alexsandro Cruz\nDescrição oii\nData de abertura 29-01-2025 00:08\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/add_followup.1738120159.685087909@oswintech.ddns.net','','mailing','add_followup'),
(608,'Ticket',69,4,2,0,3,'2025-01-29 03:09:19','2025-02-14 14:40:13',NULL,'[GLPI #0000069] Novo acompanhamento teste','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Novo acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:08]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oii&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:08&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 3&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:08]\nAutor Alexsandro Cruz\nDescrição oii\nData de abertura 29-01-2025 00:08\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/add_followup.1738120159.1593469635@oswintech.ddns.net','','mailing','add_followup'),
(609,'Ticket',69,4,2,1,0,'2025-01-29 03:09:29','2025-01-29 03:09:29','2025-01-29 03:09:30','[GLPI #0000069] Novo acompanhamento teste',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:08]\nAutor Alexsandro Cruz\nDescrição oii\nData de abertura 29-01-2025 00:08\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 4\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(610,'Ticket',69,4,2,1,0,'2025-01-29 03:09:29','2025-01-29 03:09:29','2025-01-30 15:37:35','[GLPI #0000069] Novo acompanhamento teste',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:08]\nAutor Alexsandro Cruz\nDescrição oii\nData de abertura 29-01-2025 00:08\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 4\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(611,'Ticket',69,4,2,1,0,'2025-01-29 03:09:29','2025-01-29 03:09:29','2025-01-29 03:09:30','[GLPI #0000069] Novo acompanhamento teste',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:08]\nAutor Alexsandro Cruz\nDescrição oii\nData de abertura 29-01-2025 00:08\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 4\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(612,'Ticket',69,4,2,0,3,'2025-01-29 03:09:29','2025-02-14 14:40:13',NULL,'[GLPI #0000069] Novo acompanhamento teste','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Novo acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:08]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oii&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:08&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 4&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:08]\nAutor Alexsandro Cruz\nDescrição oii\nData de abertura 29-01-2025 00:08\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 4\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/add_followup.1738120169.252723844@oswintech.ddns.net','','mailing','add_followup');
INSERT INTO `glpi_queuednotifications` VALUES
(613,'Ticket',69,4,2,0,3,'2025-01-29 03:09:29','2025-02-14 14:40:13',NULL,'[GLPI #0000069] Novo acompanhamento teste','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Novo acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:08]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oii&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:08&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 4&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:08]\nAutor Alexsandro Cruz\nDescrição oii\nData de abertura 29-01-2025 00:08\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 4\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/add_followup.1738120169.2024249672@oswintech.ddns.net','','mailing','add_followup'),
(614,'Ticket',69,4,2,0,3,'2025-01-29 03:09:29','2025-02-14 14:40:13',NULL,'[GLPI #0000069] Novo acompanhamento teste','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Novo acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:08]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oii&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:08&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 4&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:08]\nAutor Alexsandro Cruz\nDescrição oii\nData de abertura 29-01-2025 00:08\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 4\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/add_followup.1738120169.1594829538@oswintech.ddns.net','','mailing','add_followup'),
(615,'Ticket',69,4,2,0,3,'2025-01-29 03:09:29','2025-02-14 14:40:13',NULL,'[GLPI #0000069] Novo acompanhamento teste','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Novo acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:08]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oii&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:08&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 4&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:08]\nAutor Alexsandro Cruz\nDescrição oii\nData de abertura 29-01-2025 00:08\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 4\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/add_followup.1738120169.2074993402@oswintech.ddns.net','','mailing','add_followup'),
(616,'Ticket',69,4,2,1,0,'2025-01-29 03:09:58','2025-01-29 03:09:58','2025-01-29 03:09:59','[GLPI #0000069] Novo acompanhamento teste',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:08]\nAutor Alexsandro Cruz\nDescrição oii\nData de abertura 29-01-2025 00:08\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 5\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(617,'Ticket',69,4,2,1,0,'2025-01-29 03:09:58','2025-01-29 03:09:58','2025-01-30 15:37:35','[GLPI #0000069] Novo acompanhamento teste',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:08]\nAutor Alexsandro Cruz\nDescrição oii\nData de abertura 29-01-2025 00:08\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 5\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(618,'Ticket',69,4,2,1,0,'2025-01-29 03:09:58','2025-01-29 03:09:58','2025-01-29 03:10:00','[GLPI #0000069] Novo acompanhamento teste',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:08]\nAutor Alexsandro Cruz\nDescrição oii\nData de abertura 29-01-2025 00:08\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 5\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(619,'Ticket',69,4,2,0,3,'2025-01-29 03:09:58','2025-02-14 14:40:13',NULL,'[GLPI #0000069] Novo acompanhamento teste','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Novo acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:08]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oii&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:08&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 5&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:08]\nAutor Alexsandro Cruz\nDescrição oii\nData de abertura 29-01-2025 00:08\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 5\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/add_followup.1738120198.121005232@oswintech.ddns.net','','mailing','add_followup'),
(620,'Ticket',69,4,2,0,3,'2025-01-29 03:09:58','2025-02-17 13:29:16',NULL,'[GLPI #0000069] Novo acompanhamento teste','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Novo acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:08]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oii&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:08&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 5&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:08]\nAutor Alexsandro Cruz\nDescrição oii\nData de abertura 29-01-2025 00:08\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 5\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/add_followup.1738120198.1554925330@oswintech.ddns.net','','mailing','add_followup'),
(621,'Ticket',69,4,2,0,3,'2025-01-29 03:09:58','2025-02-17 13:29:17',NULL,'[GLPI #0000069] Novo acompanhamento teste','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Novo acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:08]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oii&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:08&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 5&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:08]\nAutor Alexsandro Cruz\nDescrição oii\nData de abertura 29-01-2025 00:08\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 5\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/add_followup.1738120198.170482840@oswintech.ddns.net','','mailing','add_followup'),
(622,'Ticket',69,4,2,0,3,'2025-01-29 03:09:58','2025-02-17 13:29:17',NULL,'[GLPI #0000069] Novo acompanhamento teste','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Novo acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:08]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oii&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:08&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 5&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:08]\nAutor Alexsandro Cruz\nDescrição oii\nData de abertura 29-01-2025 00:08\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 5\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/add_followup.1738120198.804529121@oswintech.ddns.net','','mailing','add_followup'),
(623,'Ticket',69,4,2,1,0,'2025-01-29 03:10:11','2025-01-29 03:10:11','2025-01-29 03:10:14','[GLPI #0000069] Novo acompanhamento teste',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:10]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:10\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:08]\nAutor Alexsandro Cruz\nDescrição oii\nData de abertura 29-01-2025 00:08\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 6\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(624,'Ticket',69,4,2,1,0,'2025-01-29 03:10:11','2025-01-29 03:10:11','2025-01-30 15:37:35','[GLPI #0000069] Novo acompanhamento teste',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:10]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:10\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:08]\nAutor Alexsandro Cruz\nDescrição oii\nData de abertura 29-01-2025 00:08\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 6\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(625,'Ticket',69,4,2,1,0,'2025-01-29 03:10:11','2025-01-29 03:10:11','2025-01-29 03:10:15','[GLPI #0000069] Novo acompanhamento teste',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:10]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:10\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:08]\nAutor Alexsandro Cruz\nDescrição oii\nData de abertura 29-01-2025 00:08\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 6\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(626,'Ticket',69,4,2,0,3,'2025-01-29 03:10:11','2025-02-17 13:29:17',NULL,'[GLPI #0000069] Novo acompanhamento teste','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Novo acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:10]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:10&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:08]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oii&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:08&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 6&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:10]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:10\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:08]\nAutor Alexsandro Cruz\nDescrição oii\nData de abertura 29-01-2025 00:08\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 6\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/add_followup.1738120212.1156736097@oswintech.ddns.net','','mailing','add_followup'),
(627,'Ticket',69,4,2,0,3,'2025-01-29 03:10:11','2025-02-17 13:29:17',NULL,'[GLPI #0000069] Novo acompanhamento teste','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Novo acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:10]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:10&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:08]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oii&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:08&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 6&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:10]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:10\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:08]\nAutor Alexsandro Cruz\nDescrição oii\nData de abertura 29-01-2025 00:08\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 6\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/add_followup.1738120212.260534599@oswintech.ddns.net','','mailing','add_followup'),
(628,'Ticket',69,4,2,0,3,'2025-01-29 03:10:11','2025-02-17 13:29:17',NULL,'[GLPI #0000069] Novo acompanhamento teste','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Novo acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:10]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:10&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:08]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oii&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:08&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 6&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:10]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:10\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:08]\nAutor Alexsandro Cruz\nDescrição oii\nData de abertura 29-01-2025 00:08\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 6\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/add_followup.1738120212.1955651623@oswintech.ddns.net','','mailing','add_followup'),
(629,'Ticket',69,4,2,0,3,'2025-01-29 03:10:11','2025-02-17 13:29:17',NULL,'[GLPI #0000069] Novo acompanhamento teste','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Novo acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:10]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:10&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:08]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oii&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:08&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 6&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:10]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:10\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:08]\nAutor Alexsandro Cruz\nDescrição oii\nData de abertura 29-01-2025 00:08\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 6\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/add_followup.1738120212.357974802@oswintech.ddns.net','','mailing','add_followup'),
(630,'Ticket',69,4,2,1,0,'2025-01-29 03:10:45','2025-01-29 03:10:45','2025-01-29 03:10:50','[GLPI #0000069] Novo acompanhamento teste',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:10]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:10\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:10]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:10\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:08]\nAutor Alexsandro Cruz\nDescrição oii\nData de abertura 29-01-2025 00:08\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 7\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(631,'Ticket',69,4,2,1,0,'2025-01-29 03:10:45','2025-01-29 03:10:45','2025-01-30 15:37:37','[GLPI #0000069] Novo acompanhamento teste',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:10]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:10\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:10]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:10\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:08]\nAutor Alexsandro Cruz\nDescrição oii\nData de abertura 29-01-2025 00:08\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 7\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(632,'Ticket',69,4,2,1,0,'2025-01-29 03:10:45','2025-01-29 03:10:45','2025-01-29 03:10:45','[GLPI #0000069] Novo acompanhamento teste',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:10]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:10\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:10]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:10\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:08]\nAutor Alexsandro Cruz\nDescrição oii\nData de abertura 29-01-2025 00:08\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 7\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(633,'Ticket',69,4,2,0,3,'2025-01-29 03:10:45','2025-02-17 13:29:17',NULL,'[GLPI #0000069] Novo acompanhamento teste','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Novo acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:10]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:10&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:10]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:10&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:08]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oii&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:08&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 7&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:10]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:10\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:10]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:10\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:08]\nAutor Alexsandro Cruz\nDescrição oii\nData de abertura 29-01-2025 00:08\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 7\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/add_followup.1738120245.1894732643@oswintech.ddns.net','','mailing','add_followup'),
(634,'Ticket',69,4,2,0,3,'2025-01-29 03:10:45','2025-02-17 13:29:17',NULL,'[GLPI #0000069] Novo acompanhamento teste','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Novo acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:10]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:10&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:10]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:10&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:08]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oii&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:08&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 7&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:10]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:10\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:10]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:10\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:08]\nAutor Alexsandro Cruz\nDescrição oii\nData de abertura 29-01-2025 00:08\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 7\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/add_followup.1738120245.201527971@oswintech.ddns.net','','mailing','add_followup'),
(635,'Ticket',69,4,2,0,3,'2025-01-29 03:10:45','2025-02-17 13:29:17',NULL,'[GLPI #0000069] Novo acompanhamento teste','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Novo acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:10]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:10&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:10]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:10&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:08]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oii&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:08&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 7&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:10]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:10\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:10]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:10\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:08]\nAutor Alexsandro Cruz\nDescrição oii\nData de abertura 29-01-2025 00:08\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 7\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/add_followup.1738120245.493753859@oswintech.ddns.net','','mailing','add_followup'),
(636,'Ticket',69,4,2,0,3,'2025-01-29 03:10:45','2025-02-17 13:29:17',NULL,'[GLPI #0000069] Novo acompanhamento teste','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Novo acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:10]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:10&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:10]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:10&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:08]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oii&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:08&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 7&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:10]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:10\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:10]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:10\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:08]\nAutor Alexsandro Cruz\nDescrição oii\nData de abertura 29-01-2025 00:08\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 7\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/add_followup.1738120246.598214657@oswintech.ddns.net','','mailing','add_followup'),
(637,'Ticket',69,4,2,1,0,'2025-01-29 03:11:00','2025-01-29 03:11:00','2025-01-29 03:11:03','[GLPI #0000069] Novo acompanhamento teste',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:11]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:11\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:10]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:10\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:10]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:10\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:08]\nAutor Alexsandro Cruz\nDescrição oii\nData de abertura 29-01-2025 00:08\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 8\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(638,'Ticket',69,4,2,1,0,'2025-01-29 03:11:00','2025-01-29 03:11:00','2025-01-30 15:37:37','[GLPI #0000069] Novo acompanhamento teste',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:11]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:11\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:10]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:10\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:10]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:10\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:08]\nAutor Alexsandro Cruz\nDescrição oii\nData de abertura 29-01-2025 00:08\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 8\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(639,'Ticket',69,4,2,1,0,'2025-01-29 03:11:00','2025-01-29 03:11:00','2025-01-29 03:11:02','[GLPI #0000069] Novo acompanhamento teste',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:11]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:11\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:10]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:10\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:10]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:10\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:08]\nAutor Alexsandro Cruz\nDescrição oii\nData de abertura 29-01-2025 00:08\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 8\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(640,'Ticket',69,4,2,0,3,'2025-01-29 03:11:00','2025-02-17 13:29:17',NULL,'[GLPI #0000069] Novo acompanhamento teste','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Novo acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:11]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:11&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:10]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:10&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:10]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:10&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:08]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oii&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:08&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 8&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:11]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:11\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:10]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:10\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:10]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:10\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:08]\nAutor Alexsandro Cruz\nDescrição oii\nData de abertura 29-01-2025 00:08\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 8\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/add_followup.1738120261.1389533283@oswintech.ddns.net','','mailing','add_followup'),
(641,'Ticket',69,4,2,0,3,'2025-01-29 03:11:00','2025-02-17 13:29:17',NULL,'[GLPI #0000069] Novo acompanhamento teste','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Novo acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:11]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:11&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:10]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:10&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:10]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:10&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:08]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oii&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:08&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 8&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:11]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:11\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:10]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:10\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:10]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:10\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:08]\nAutor Alexsandro Cruz\nDescrição oii\nData de abertura 29-01-2025 00:08\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 8\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/add_followup.1738120261.1503773137@oswintech.ddns.net','','mailing','add_followup'),
(642,'Ticket',69,4,2,0,3,'2025-01-29 03:11:00','2025-02-17 13:29:17',NULL,'[GLPI #0000069] Novo acompanhamento teste','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Novo acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:11]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:11&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:10]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:10&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:10]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:10&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:08]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oii&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:08&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 8&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:11]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:11\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:10]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:10\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:10]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:10\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:08]\nAutor Alexsandro Cruz\nDescrição oii\nData de abertura 29-01-2025 00:08\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 8\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/add_followup.1738120261.1644517059@oswintech.ddns.net','','mailing','add_followup'),
(643,'Ticket',69,4,2,0,3,'2025-01-29 03:11:00','2025-02-17 13:29:17',NULL,'[GLPI #0000069] Novo acompanhamento teste','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Novo acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:11]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:11&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:10]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:10&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:10]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:10&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:08]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oii&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:08&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 8&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:11]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:11\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:10]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:10\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:10]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:10\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:08]\nAutor Alexsandro Cruz\nDescrição oii\nData de abertura 29-01-2025 00:08\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 8\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/add_followup.1738120261.1780217435@oswintech.ddns.net','','mailing','add_followup'),
(644,'Ticket',69,4,2,0,3,'2025-01-29 03:11:54','2025-02-17 13:29:17',NULL,'[GLPI #0000069] Exclusão de um acompanhamento teste','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Exclus&#38;atilde;o de um acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:10]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:10&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:10]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:10&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:08]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oii&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:08&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 7&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:10]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:10\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:10]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:10\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:08]\nAutor Alexsandro Cruz\nDescrição oii\nData de abertura 29-01-2025 00:08\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 7\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/delete_followup.1738120314.1265129141@oswintech.ddns.net','','mailing','delete_followup'),
(645,'Ticket',69,4,2,0,3,'2025-01-29 03:11:54','2025-02-17 13:29:17',NULL,'[GLPI #0000069] Exclusão de um acompanhamento teste','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Exclus&#38;atilde;o de um acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:10]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:10&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:10]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:10&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:08]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oii&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:08&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 7&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:10]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:10\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:10]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:10\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:08]\nAutor Alexsandro Cruz\nDescrição oii\nData de abertura 29-01-2025 00:08\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 7\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/delete_followup.1738120315.1172742497@oswintech.ddns.net','','mailing','delete_followup'),
(646,'Ticket',69,4,2,0,3,'2025-01-29 03:12:02','2025-02-17 13:29:17',NULL,'[GLPI #0000069] Exclusão de um acompanhamento teste','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Exclus&#38;atilde;o de um acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:10]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:10&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:08]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oii&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:08&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 6&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:10]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:10\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:08]\nAutor Alexsandro Cruz\nDescrição oii\nData de abertura 29-01-2025 00:08\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 6\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/delete_followup.1738120323.1153696993@oswintech.ddns.net','','mailing','delete_followup'),
(647,'Ticket',69,4,2,0,3,'2025-01-29 03:12:02','2025-02-17 13:29:17',NULL,'[GLPI #0000069] Exclusão de um acompanhamento teste','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Exclus&#38;atilde;o de um acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:10]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:10&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:08]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oii&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:08&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 6&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:10]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:10\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:08]\nAutor Alexsandro Cruz\nDescrição oii\nData de abertura 29-01-2025 00:08\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 6\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/delete_followup.1738120323.585522358@oswintech.ddns.net','','mailing','delete_followup'),
(648,'Ticket',69,4,2,0,3,'2025-01-29 03:12:11','2025-02-17 13:29:17',NULL,'[GLPI #0000069] Exclusão de um acompanhamento teste','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Exclus&#38;atilde;o de um acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:08]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oii&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:08&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 5&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:08]\nAutor Alexsandro Cruz\nDescrição oii\nData de abertura 29-01-2025 00:08\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 5\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/delete_followup.1738120332.569769589@oswintech.ddns.net','','mailing','delete_followup'),
(649,'Ticket',69,4,2,0,3,'2025-01-29 03:12:11','2025-02-18 18:15:34',NULL,'[GLPI #0000069] Exclusão de um acompanhamento teste','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Exclus&#38;atilde;o de um acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:08]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oii&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:08&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 5&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:08]\nAutor Alexsandro Cruz\nDescrição oii\nData de abertura 29-01-2025 00:08\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 5\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/delete_followup.1738120332.1710803282@oswintech.ddns.net','','mailing','delete_followup'),
(650,'Ticket',69,4,2,0,3,'2025-01-29 03:12:16','2025-02-18 18:15:34',NULL,'[GLPI #0000069] Exclusão de um acompanhamento teste','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Exclus&#38;atilde;o de um acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:08]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oii&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:08&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 4&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:08]\nAutor Alexsandro Cruz\nDescrição oii\nData de abertura 29-01-2025 00:08\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 4\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/delete_followup.1738120336.2112527544@oswintech.ddns.net','','mailing','delete_followup'),
(651,'Ticket',69,4,2,0,3,'2025-01-29 03:12:16','2025-02-18 18:15:34',NULL,'[GLPI #0000069] Exclusão de um acompanhamento teste','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Exclus&#38;atilde;o de um acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:08]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oii&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:08&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 4&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:08]\nAutor Alexsandro Cruz\nDescrição oii\nData de abertura 29-01-2025 00:08\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 4\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/delete_followup.1738120336.2146509712@oswintech.ddns.net','','mailing','delete_followup'),
(652,'Ticket',69,4,2,0,3,'2025-01-29 03:12:21','2025-02-18 18:15:34',NULL,'[GLPI #0000069] Exclusão de um acompanhamento teste','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Exclus&#38;atilde;o de um acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:08]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oii&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:08&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 3&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:08]\nAutor Alexsandro Cruz\nDescrição oii\nData de abertura 29-01-2025 00:08\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/delete_followup.1738120341.942852554@oswintech.ddns.net','','mailing','delete_followup'),
(653,'Ticket',69,4,2,0,3,'2025-01-29 03:12:21','2025-02-18 18:15:34',NULL,'[GLPI #0000069] Exclusão de um acompanhamento teste','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Exclus&#38;atilde;o de um acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:09]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:09&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:08]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oii&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:08&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 3&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:09]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:09\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:08]\nAutor Alexsandro Cruz\nDescrição oii\nData de abertura 29-01-2025 00:08\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/delete_followup.1738120341.1813060678@oswintech.ddns.net','','mailing','delete_followup'),
(654,'Ticket',69,4,2,0,3,'2025-01-29 03:12:27','2025-02-18 18:15:34',NULL,'[GLPI #0000069] Exclusão de um acompanhamento teste','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Exclus&#38;atilde;o de um acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:08]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oii&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:08&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:08]\nAutor Alexsandro Cruz\nDescrição oii\nData de abertura 29-01-2025 00:08\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/delete_followup.1738120347.703520442@oswintech.ddns.net','','mailing','delete_followup'),
(655,'Ticket',69,4,2,0,3,'2025-01-29 03:12:27','2025-02-18 18:15:34',NULL,'[GLPI #0000069] Exclusão de um acompanhamento teste','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Exclus&#38;atilde;o de um acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:08]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oii&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:08&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:08]\nAutor Alexsandro Cruz\nDescrição oii\nData de abertura 29-01-2025 00:08\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/delete_followup.1738120347.1047556895@oswintech.ddns.net','','mailing','delete_followup'),
(656,'Ticket',69,4,2,0,3,'2025-01-29 03:12:43','2025-02-18 18:15:34',NULL,'[GLPI #0000069] Exclusão de um acompanhamento teste','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Exclus&#38;atilde;o de um acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/delete_followup.1738120363.683514549@oswintech.ddns.net','','mailing','delete_followup'),
(657,'Ticket',69,4,2,0,3,'2025-01-29 03:12:43','2025-02-18 18:15:34',NULL,'[GLPI #0000069] Exclusão de um acompanhamento teste','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Exclus&#38;atilde;o de um acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/delete_followup.1738120363.512036173@oswintech.ddns.net','','mailing','delete_followup'),
(658,'Ticket',69,4,2,1,0,'2025-01-29 03:12:48','2025-01-29 03:12:48','2025-01-29 03:12:51','[GLPI #0000069] Novo acompanhamento teste',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:12]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:12\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(659,'Ticket',69,4,2,1,0,'2025-01-29 03:12:48','2025-01-29 03:12:48','2025-01-30 15:37:37','[GLPI #0000069] Novo acompanhamento teste',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:12]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:12\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(660,'Ticket',69,4,2,1,0,'2025-01-29 03:12:48','2025-01-29 03:12:48','2025-01-29 03:12:53','[GLPI #0000069] Novo acompanhamento teste',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:12]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:12\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(661,'Ticket',69,4,2,0,3,'2025-01-29 03:12:48','2025-02-18 18:15:34',NULL,'[GLPI #0000069] Novo acompanhamento teste','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Novo acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:12]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:12&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:12]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:12\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/add_followup.1738120368.1525044965@oswintech.ddns.net','','mailing','add_followup'),
(662,'Ticket',69,4,2,0,3,'2025-01-29 03:12:48','2025-02-18 18:15:34',NULL,'[GLPI #0000069] Novo acompanhamento teste','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Novo acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:12]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:12&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:12]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:12\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/add_followup.1738120368.1588369064@oswintech.ddns.net','','mailing','add_followup'),
(663,'Ticket',69,4,2,0,3,'2025-01-29 03:12:48','2025-02-18 18:15:34',NULL,'[GLPI #0000069] Novo acompanhamento teste','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Novo acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:12]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:12&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:12]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:12\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/add_followup.1738120368.391288085@oswintech.ddns.net','','mailing','add_followup'),
(664,'Ticket',69,4,2,0,3,'2025-01-29 03:12:48','2025-02-18 18:15:34',NULL,'[GLPI #0000069] Novo acompanhamento teste','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Novo acompanhamento teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:12]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:12&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:12]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:12\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/add_followup.1738120368.199386087@oswintech.ddns.net','','mailing','add_followup'),
(665,'Ticket',69,4,2,0,3,'2025-01-29 03:17:54','2025-02-18 18:53:01',NULL,'[GLPI #0000069] Exclusão de um chamado teste','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Exclus&#38;atilde;o de um chamado teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:12]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:12&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:12]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:12\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/delete.1738120674.1556802733@oswintech.ddns.net','','mailing','delete'),
(666,'Ticket',69,4,2,0,3,'2025-01-29 03:18:06','2025-02-18 18:53:01',NULL,'[GLPI #0000069] Exclusão de um chamado teste','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Exclus&#38;atilde;o de um chamado teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- test@test.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:12]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:12&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - test@test.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:12]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:12\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/delete.1738120686.1080094678@oswintech.ddns.net','','mailing','delete'),
(667,'Ticket',69,4,2,1,0,'2025-01-29 03:18:06','2025-01-29 03:18:06','2025-01-29 03:18:07','[GLPI #0000069] Atualização de um chamado teste',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:12]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:12\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','update'),
(668,'Ticket',69,4,2,1,0,'2025-01-29 03:18:06','2025-01-29 03:18:06','2025-01-30 15:37:37','[GLPI #0000069] Atualização de um chamado teste',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:12]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:12\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','update'),
(669,'Ticket',69,4,2,1,0,'2025-01-29 03:18:06','2025-01-29 03:18:06','2025-01-29 03:18:12','[GLPI #0000069] Atualização de um chamado teste',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:12]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:12\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','update'),
(670,'Ticket',69,4,2,0,3,'2025-01-29 03:18:06','2025-02-18 18:53:01',NULL,'[GLPI #0000069] Atualização de um chamado teste','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Atualiza&#38;ccedil;&#38;atilde;o de um chamado teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:12]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:12&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:12]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:12\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/update.1738120686.1282031408@oswintech.ddns.net','','mailing','update'),
(671,'Ticket',69,4,2,0,2,'2025-01-29 03:18:06','2025-02-05 12:53:09',NULL,'[GLPI #0000069] Atualização de um chamado teste','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Atualiza&#38;ccedil;&#38;atilde;o de um chamado teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:12]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:12&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:12]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:12\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/update.1738120686.17925844@oswintech.ddns.net','','mailing','update'),
(672,'Ticket',69,4,2,0,2,'2025-01-29 03:18:06','2025-02-05 12:53:09',NULL,'[GLPI #0000069] Atualização de um chamado teste','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Atualiza&#38;ccedil;&#38;atilde;o de um chamado teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:12]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:12&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:12]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:12\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/update.1738120686.2040062057@oswintech.ddns.net','','mailing','update'),
(673,'Ticket',69,4,2,0,2,'2025-01-29 03:18:06','2025-02-05 12:53:09',NULL,'[GLPI #0000069] Atualização de um chamado teste','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Atualiza&#38;ccedil;&#38;atilde;o de um chamado teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:12]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:12&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 00:02]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;oi&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 00:02&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n[29-01-2025 00:12]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:12\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 00:02]\nAutor Alexsandro Cruz\nDescrição oi\nData de abertura 29-01-2025 00:02\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/update.1738120686.1853011713@oswintech.ddns.net','','mailing','update'),
(674,'Ticket',69,4,2,1,0,'2025-01-29 03:18:06','2025-01-29 03:18:06','2025-01-30 15:37:37','[GLPI #0000069] Atualização de um chamado teste',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  --\n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','update'),
(675,'Ticket',69,4,2,1,0,'2025-01-29 03:18:06','2025-01-29 03:18:06','2025-01-29 03:18:12','[GLPI #0000069] Atualização de um chamado teste',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  --\n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','update'),
(676,'Ticket',69,4,2,1,0,'2025-01-29 03:18:06','2025-01-29 03:18:06','2025-01-29 03:18:16','[GLPI #0000069] Atualização de um chamado teste',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  --\n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','update'),
(677,'Ticket',69,4,2,0,2,'2025-01-29 03:18:06','2025-02-05 12:53:09',NULL,'[GLPI #0000069] Atualização de um chamado teste','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Atualiza&#38;ccedil;&#38;atilde;o de um chamado teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;:    -- &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  --\n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/update.1738120687.1520837587@oswintech.ddns.net','','mailing','update'),
(678,'Ticket',69,4,2,0,2,'2025-01-29 03:18:06','2025-02-05 12:53:09',NULL,'[GLPI #0000069] Atualização de um chamado teste','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Atualiza&#38;ccedil;&#38;atilde;o de um chamado teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;:    -- &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  --\n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/update.1738120687.597750747@oswintech.ddns.net','','mailing','update'),
(679,'Ticket',69,4,2,0,2,'2025-01-29 03:18:06','2025-02-05 12:53:09',NULL,'[GLPI #0000069] Atualização de um chamado teste','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Atualiza&#38;ccedil;&#38;atilde;o de um chamado teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;:    -- &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  --\n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/update.1738120687.927118297@oswintech.ddns.net','','mailing','update'),
(680,'Ticket',69,4,2,0,2,'2025-01-29 03:18:06','2025-02-05 12:53:09',NULL,'[GLPI #0000069] Atualização de um chamado teste','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000069] Atualiza&#38;ccedil;&#38;atilde;o de um chamado teste&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_69\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_69&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:teste &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;:    -- &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 23:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;teste&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;test@test.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84982212329&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;asd&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_69 \n\n Chamado: Descrição\n\n Título : teste\n Requerentes :  --\n Data de abertura : 28-01-2025 23:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : teste\n2) E-MAIL : test@test.com\n3) TELEFONE : 84982212329\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nasd\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-69/update.1738120687.1389712166@oswintech.ddns.net','','mailing','update'),
(681,'PluginFormcreatorFormAnswer',34,29,2,0,2,'2025-01-29 11:52:14','2025-02-11 12:26:07',NULL,'[GLPI] Sua requisição foi salva','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI] Sua requisi&#38;ccedil;&#38;atilde;o foi salva&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;p&#62;Olá,&#60;br /&#62;Sua requisição do GLPI foi salva com sucesso com o número 34 e transmitido para a equipe de helpdesk.&#60;br /&#62;Você pode ver suas respostas no seguinte link:&#60;br /&#62;https://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=34&#60;/p&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;','Olá,\nSua requisição do GLPI foi salva com sucesso com o número 34 e transmitido para a equipe de helpdesk.\nVocê pode ver suas respostas no seguinte link:\nhttps://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=34\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-PluginFormcreatorFormAnswer-34/plugin_formcreator_form_created.1738151534.1352095027@oswintech.ddns.net','','mailing','plugin_formcreator_form_created'),
(682,'Ticket',70,4,2,1,0,'2025-01-29 11:52:14','2025-01-29 11:52:14','2025-01-30 00:52:13','[GLPI #0000070] Novo chamado Email - Alexandre Onassis',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_70 \n\n Chamado: Descrição\n\n Título : Email - Alexandre Onassis\n Requerentes :  tecnomulti  \n Data de abertura : 29-01-2025 08:52\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Email - Alexandre Onassis\n2) E-MAIL : geimisson.marques@tecnomulti.com\n3) TELEFONE : 81 983240445\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nConfiguração primeiro acesso ao email do coordenador Alexandre Onassis \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(683,'Ticket',70,4,2,1,0,'2025-01-29 11:52:14','2025-01-29 11:52:14','2025-01-30 15:37:37','[GLPI #0000070] Novo chamado Email - Alexandre Onassis',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_70 \n\n Chamado: Descrição\n\n Título : Email - Alexandre Onassis\n Requerentes :  tecnomulti  \n Data de abertura : 29-01-2025 08:52\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Email - Alexandre Onassis\n2) E-MAIL : geimisson.marques@tecnomulti.com\n3) TELEFONE : 81 983240445\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nConfiguração primeiro acesso ao email do coordenador Alexandre Onassis \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(684,'Ticket',70,4,2,1,0,'2025-01-29 11:52:14','2025-01-29 11:52:14','2025-01-30 15:49:48','[GLPI #0000070] Novo chamado Email - Alexandre Onassis',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_70 \n\n Chamado: Descrição\n\n Título : Email - Alexandre Onassis\n Requerentes :  tecnomulti  \n Data de abertura : 29-01-2025 08:52\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Email - Alexandre Onassis\n2) E-MAIL : geimisson.marques@tecnomulti.com\n3) TELEFONE : 81 983240445\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nConfiguração primeiro acesso ao email do coordenador Alexandre Onassis \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(685,'Ticket',70,4,2,1,0,'2025-01-29 11:52:14','2025-01-29 11:52:14','2025-01-30 20:33:08','[GLPI #0000070] Novo chamado Email - Alexandre Onassis',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_70 \n\n Chamado: Descrição\n\n Título : Email - Alexandre Onassis\n Requerentes :  tecnomulti  \n Data de abertura : 29-01-2025 08:52\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Email - Alexandre Onassis\n2) E-MAIL : geimisson.marques@tecnomulti.com\n3) TELEFONE : 81 983240445\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nConfiguração primeiro acesso ao email do coordenador Alexandre Onassis \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(686,'Ticket',70,4,2,0,2,'2025-01-29 11:52:14','2025-02-11 12:26:07',NULL,'[GLPI #0000070] Novo chamado Email - Alexandre Onassis','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000070] Novo chamado Email - Alexandre Onassis&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_70\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_70&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Email - Alexandre Onassis &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:29-01-2025 08:52 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Email - Alexandre Onassis&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;geimisson.marques@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 983240445&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Configuração primeiro acesso ao email do coordenador Alexandre Onassis &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_70 \n\n Chamado: Descrição\n\n Título : Email - Alexandre Onassis\n Requerentes :  tecnomulti  \n Data de abertura : 29-01-2025 08:52\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Email - Alexandre Onassis\n2) E-MAIL : geimisson.marques@tecnomulti.com\n3) TELEFONE : 81 983240445\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nConfiguração primeiro acesso ao email do coordenador Alexandre Onassis \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-70/new@oswintech.ddns.net','','mailing','new'),
(687,'Ticket',70,4,2,0,2,'2025-01-29 11:52:14','2025-02-11 12:26:07',NULL,'[GLPI #0000070] Novo chamado Email - Alexandre Onassis','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000070] Novo chamado Email - Alexandre Onassis&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_70\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_70&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Email - Alexandre Onassis &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:29-01-2025 08:52 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Email - Alexandre Onassis&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;geimisson.marques@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 983240445&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Configuração primeiro acesso ao email do coordenador Alexandre Onassis &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_70 \n\n Chamado: Descrição\n\n Título : Email - Alexandre Onassis\n Requerentes :  tecnomulti  \n Data de abertura : 29-01-2025 08:52\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Email - Alexandre Onassis\n2) E-MAIL : geimisson.marques@tecnomulti.com\n3) TELEFONE : 81 983240445\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nConfiguração primeiro acesso ao email do coordenador Alexandre Onassis \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-70/new@oswintech.ddns.net','','mailing','new'),
(688,'Ticket',70,4,2,0,2,'2025-01-29 11:52:14','2025-02-11 12:26:07',NULL,'[GLPI #0000070] Novo chamado Email - Alexandre Onassis','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000070] Novo chamado Email - Alexandre Onassis&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_70\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_70&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Email - Alexandre Onassis &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:29-01-2025 08:52 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Email - Alexandre Onassis&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;geimisson.marques@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 983240445&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Configuração primeiro acesso ao email do coordenador Alexandre Onassis &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_70 \n\n Chamado: Descrição\n\n Título : Email - Alexandre Onassis\n Requerentes :  tecnomulti  \n Data de abertura : 29-01-2025 08:52\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Email - Alexandre Onassis\n2) E-MAIL : geimisson.marques@tecnomulti.com\n3) TELEFONE : 81 983240445\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nConfiguração primeiro acesso ao email do coordenador Alexandre Onassis \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-70/new@oswintech.ddns.net','','mailing','new'),
(689,'Ticket',70,4,2,0,2,'2025-01-29 11:52:14','2025-02-11 12:26:07',NULL,'[GLPI #0000070] Novo chamado Email - Alexandre Onassis','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000070] Novo chamado Email - Alexandre Onassis&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_70\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_70&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Email - Alexandre Onassis &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:29-01-2025 08:52 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Email - Alexandre Onassis&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;geimisson.marques@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 983240445&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Configuração primeiro acesso ao email do coordenador Alexandre Onassis &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_70 \n\n Chamado: Descrição\n\n Título : Email - Alexandre Onassis\n Requerentes :  tecnomulti  \n Data de abertura : 29-01-2025 08:52\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Email - Alexandre Onassis\n2) E-MAIL : geimisson.marques@tecnomulti.com\n3) TELEFONE : 81 983240445\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nConfiguração primeiro acesso ao email do coordenador Alexandre Onassis \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-70/new@oswintech.ddns.net','','mailing','new'),
(690,'Ticket',70,4,2,1,0,'2025-01-29 11:53:33','2025-01-29 11:53:33','2025-01-30 00:52:13','[GLPI #0000070] Novo acompanhamento Email - Alexandre Onassis',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_70 \n\n Chamado: Descrição\n\n Título : Email - Alexandre Onassis\n Requerentes :  tecnomulti  \n Data de abertura : 29-01-2025 08:52\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - geimisson.marques@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Email - Alexandre Onassis\n2) E-MAIL : geimisson.marques@tecnomulti.com\n3) TELEFONE : 81 983240445\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nConfiguração primeiro acesso ao email do coordenador Alexandre Onassis \n \n\n\n[29-01-2025 08:53]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nFavor, me passe o ID do anydesk.\nData de abertura 29-01-2025 08:53\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(691,'Ticket',70,4,2,1,0,'2025-01-29 11:53:33','2025-01-29 11:53:33','2025-01-30 15:37:37','[GLPI #0000070] Novo acompanhamento Email - Alexandre Onassis',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_70 \n\n Chamado: Descrição\n\n Título : Email - Alexandre Onassis\n Requerentes :  tecnomulti  \n Data de abertura : 29-01-2025 08:52\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - geimisson.marques@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Email - Alexandre Onassis\n2) E-MAIL : geimisson.marques@tecnomulti.com\n3) TELEFONE : 81 983240445\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nConfiguração primeiro acesso ao email do coordenador Alexandre Onassis \n \n\n\n[29-01-2025 08:53]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nFavor, me passe o ID do anydesk.\nData de abertura 29-01-2025 08:53\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(692,'Ticket',70,4,2,1,0,'2025-01-29 11:53:33','2025-01-29 11:53:33','2025-01-30 15:49:48','[GLPI #0000070] Novo acompanhamento Email - Alexandre Onassis',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_70 \n\n Chamado: Descrição\n\n Título : Email - Alexandre Onassis\n Requerentes :  tecnomulti  \n Data de abertura : 29-01-2025 08:52\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - geimisson.marques@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Email - Alexandre Onassis\n2) E-MAIL : geimisson.marques@tecnomulti.com\n3) TELEFONE : 81 983240445\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nConfiguração primeiro acesso ao email do coordenador Alexandre Onassis \n \n\n\n[29-01-2025 08:53]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nFavor, me passe o ID do anydesk.\nData de abertura 29-01-2025 08:53\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(693,'Ticket',70,4,2,1,0,'2025-01-29 11:53:33','2025-01-29 11:53:33','2025-01-30 20:33:08','[GLPI #0000070] Novo acompanhamento Email - Alexandre Onassis',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_70 \n\n Chamado: Descrição\n\n Título : Email - Alexandre Onassis\n Requerentes :  tecnomulti  \n Data de abertura : 29-01-2025 08:52\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - geimisson.marques@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Email - Alexandre Onassis\n2) E-MAIL : geimisson.marques@tecnomulti.com\n3) TELEFONE : 81 983240445\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nConfiguração primeiro acesso ao email do coordenador Alexandre Onassis \n \n\n\n[29-01-2025 08:53]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nFavor, me passe o ID do anydesk.\nData de abertura 29-01-2025 08:53\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(694,'Ticket',70,4,2,0,2,'2025-01-29 11:53:33','2025-02-11 12:26:07',NULL,'[GLPI #0000070] Novo acompanhamento Email - Alexandre Onassis','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000070] Novo acompanhamento Email - Alexandre Onassis&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_70\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_70&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Email - Alexandre Onassis &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:29-01-2025 08:52 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- geimisson.marques@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Email - Alexandre Onassis&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;geimisson.marques@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 983240445&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Configuração primeiro acesso ao email do coordenador Alexandre Onassis &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 08:53]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, &#60;/p&#62;\r\n&#60;p&#62;Favor, me passe o ID do anydesk.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 08:53&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_70 \n\n Chamado: Descrição\n\n Título : Email - Alexandre Onassis\n Requerentes :  tecnomulti  \n Data de abertura : 29-01-2025 08:52\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - geimisson.marques@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Email - Alexandre Onassis\n2) E-MAIL : geimisson.marques@tecnomulti.com\n3) TELEFONE : 81 983240445\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nConfiguração primeiro acesso ao email do coordenador Alexandre Onassis \n \n\n\n[29-01-2025 08:53]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nFavor, me passe o ID do anydesk.\nData de abertura 29-01-2025 08:53\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-70/add_followup.1738151614.1332853783@oswintech.ddns.net','','mailing','add_followup'),
(695,'Ticket',70,4,2,0,2,'2025-01-29 11:53:33','2025-02-11 12:26:07',NULL,'[GLPI #0000070] Novo acompanhamento Email - Alexandre Onassis','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000070] Novo acompanhamento Email - Alexandre Onassis&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_70\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_70&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Email - Alexandre Onassis &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:29-01-2025 08:52 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- geimisson.marques@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Email - Alexandre Onassis&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;geimisson.marques@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 983240445&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Configuração primeiro acesso ao email do coordenador Alexandre Onassis &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 08:53]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, &#60;/p&#62;\r\n&#60;p&#62;Favor, me passe o ID do anydesk.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 08:53&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_70 \n\n Chamado: Descrição\n\n Título : Email - Alexandre Onassis\n Requerentes :  tecnomulti  \n Data de abertura : 29-01-2025 08:52\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - geimisson.marques@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Email - Alexandre Onassis\n2) E-MAIL : geimisson.marques@tecnomulti.com\n3) TELEFONE : 81 983240445\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nConfiguração primeiro acesso ao email do coordenador Alexandre Onassis \n \n\n\n[29-01-2025 08:53]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nFavor, me passe o ID do anydesk.\nData de abertura 29-01-2025 08:53\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-70/add_followup.1738151614.1401475342@oswintech.ddns.net','','mailing','add_followup'),
(696,'Ticket',70,4,2,0,2,'2025-01-29 11:53:33','2025-02-11 12:26:07',NULL,'[GLPI #0000070] Novo acompanhamento Email - Alexandre Onassis','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000070] Novo acompanhamento Email - Alexandre Onassis&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_70\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_70&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Email - Alexandre Onassis &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:29-01-2025 08:52 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- geimisson.marques@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Email - Alexandre Onassis&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;geimisson.marques@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 983240445&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Configuração primeiro acesso ao email do coordenador Alexandre Onassis &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 08:53]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, &#60;/p&#62;\r\n&#60;p&#62;Favor, me passe o ID do anydesk.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 08:53&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_70 \n\n Chamado: Descrição\n\n Título : Email - Alexandre Onassis\n Requerentes :  tecnomulti  \n Data de abertura : 29-01-2025 08:52\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - geimisson.marques@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Email - Alexandre Onassis\n2) E-MAIL : geimisson.marques@tecnomulti.com\n3) TELEFONE : 81 983240445\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nConfiguração primeiro acesso ao email do coordenador Alexandre Onassis \n \n\n\n[29-01-2025 08:53]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nFavor, me passe o ID do anydesk.\nData de abertura 29-01-2025 08:53\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-70/add_followup.1738151614.53695818@oswintech.ddns.net','','mailing','add_followup'),
(697,'Ticket',70,4,2,0,2,'2025-01-29 11:53:33','2025-02-12 12:11:34',NULL,'[GLPI #0000070] Novo acompanhamento Email - Alexandre Onassis','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000070] Novo acompanhamento Email - Alexandre Onassis&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_70\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_70&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Email - Alexandre Onassis &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:29-01-2025 08:52 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- geimisson.marques@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Email - Alexandre Onassis&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;geimisson.marques@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 983240445&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Configuração primeiro acesso ao email do coordenador Alexandre Onassis &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 08:53]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, &#60;/p&#62;\r\n&#60;p&#62;Favor, me passe o ID do anydesk.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 08:53&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_70 \n\n Chamado: Descrição\n\n Título : Email - Alexandre Onassis\n Requerentes :  tecnomulti  \n Data de abertura : 29-01-2025 08:52\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - geimisson.marques@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Email - Alexandre Onassis\n2) E-MAIL : geimisson.marques@tecnomulti.com\n3) TELEFONE : 81 983240445\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nConfiguração primeiro acesso ao email do coordenador Alexandre Onassis \n \n\n\n[29-01-2025 08:53]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nFavor, me passe o ID do anydesk.\nData de abertura 29-01-2025 08:53\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-70/add_followup.1738151614.454667463@oswintech.ddns.net','','mailing','add_followup'),
(698,'Ticket',70,4,2,1,0,'2025-01-29 11:53:46','2025-01-29 11:53:46','2025-01-30 00:52:13','[GLPI #0000070] Atualização de um chamado Email - Alexandre Onassis',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_70 \n\n Chamado: Descrição\n\n Título : Email - Alexandre Onassis\n Requerentes :  tecnomulti  \n Data de abertura : 29-01-2025 08:52\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - geimisson.marques@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Email - Alexandre Onassis\n2) E-MAIL : geimisson.marques@tecnomulti.com\n3) TELEFONE : 81 983240445\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nConfiguração primeiro acesso ao email do coordenador Alexandre Onassis \n \n\n\n[29-01-2025 08:53]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nFavor, me passe o ID do anydesk.\nData de abertura 29-01-2025 08:53\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','update'),
(699,'Ticket',70,4,2,0,2,'2025-01-29 11:53:46','2025-02-12 12:11:34',NULL,'[GLPI #0000070] Atualização de um chamado Email - Alexandre Onassis','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000070] Atualiza&#38;ccedil;&#38;atilde;o de um chamado Email - Alexandre Onassis&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_70\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_70&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Email - Alexandre Onassis &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:29-01-2025 08:52 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- geimisson.marques@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Email - Alexandre Onassis&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;geimisson.marques@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 983240445&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Configuração primeiro acesso ao email do coordenador Alexandre Onassis &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 08:53]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, &#60;/p&#62;\r\n&#60;p&#62;Favor, me passe o ID do anydesk.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 08:53&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_70 \n\n Chamado: Descrição\n\n Título : Email - Alexandre Onassis\n Requerentes :  tecnomulti  \n Data de abertura : 29-01-2025 08:52\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - geimisson.marques@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Email - Alexandre Onassis\n2) E-MAIL : geimisson.marques@tecnomulti.com\n3) TELEFONE : 81 983240445\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nConfiguração primeiro acesso ao email do coordenador Alexandre Onassis \n \n\n\n[29-01-2025 08:53]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nFavor, me passe o ID do anydesk.\nData de abertura 29-01-2025 08:53\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-70/update.1738151626.1853922992@oswintech.ddns.net','','mailing','update'),
(700,'Ticket',70,4,2,0,2,'2025-01-29 11:53:46','2025-02-12 12:11:34',NULL,'[GLPI #0000070] Atualização de um chamado Email - Alexandre Onassis','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000070] Atualiza&#38;ccedil;&#38;atilde;o de um chamado Email - Alexandre Onassis&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_70\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_70&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Email - Alexandre Onassis &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:29-01-2025 08:52 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- geimisson.marques@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Email - Alexandre Onassis&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;geimisson.marques@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 983240445&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Configuração primeiro acesso ao email do coordenador Alexandre Onassis &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 08:53]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, &#60;/p&#62;\r\n&#60;p&#62;Favor, me passe o ID do anydesk.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 08:53&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_70 \n\n Chamado: Descrição\n\n Título : Email - Alexandre Onassis\n Requerentes :  tecnomulti  \n Data de abertura : 29-01-2025 08:52\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - geimisson.marques@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Email - Alexandre Onassis\n2) E-MAIL : geimisson.marques@tecnomulti.com\n3) TELEFONE : 81 983240445\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nConfiguração primeiro acesso ao email do coordenador Alexandre Onassis \n \n\n\n[29-01-2025 08:53]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nFavor, me passe o ID do anydesk.\nData de abertura 29-01-2025 08:53\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-70/update.1738151627.2001981942@oswintech.ddns.net','','mailing','update'),
(701,'Ticket',70,4,2,1,0,'2025-01-29 11:55:13','2025-01-29 11:55:13','2025-01-30 00:52:13','[GLPI #0000070] Novo acompanhamento Email - Alexandre Onassis',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_70 \n\n Chamado: Descrição\n\n Título : Email - Alexandre Onassis\n Requerentes :  tecnomulti  \n Data de abertura : 29-01-2025 08:52\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - geimisson.marques@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Email - Alexandre Onassis\n2) E-MAIL : geimisson.marques@tecnomulti.com\n3) TELEFONE : 81 983240445\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nConfiguração primeiro acesso ao email do coordenador Alexandre Onassis \n \n\n\n[29-01-2025 08:55]\nAutor tecnomulti\nDescrição 1 282 574 283\nData de abertura 29-01-2025 08:55\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 08:53]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nFavor, me passe o ID do anydesk.\nData de abertura 29-01-2025 08:53\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(702,'Ticket',70,4,2,1,0,'2025-01-29 11:55:13','2025-01-29 11:55:13','2025-01-30 15:37:38','[GLPI #0000070] Novo acompanhamento Email - Alexandre Onassis',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_70 \n\n Chamado: Descrição\n\n Título : Email - Alexandre Onassis\n Requerentes :  tecnomulti  \n Data de abertura : 29-01-2025 08:52\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - geimisson.marques@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Email - Alexandre Onassis\n2) E-MAIL : geimisson.marques@tecnomulti.com\n3) TELEFONE : 81 983240445\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nConfiguração primeiro acesso ao email do coordenador Alexandre Onassis \n \n\n\n[29-01-2025 08:55]\nAutor tecnomulti\nDescrição 1 282 574 283\nData de abertura 29-01-2025 08:55\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 08:53]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nFavor, me passe o ID do anydesk.\nData de abertura 29-01-2025 08:53\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(703,'Ticket',70,4,2,1,0,'2025-01-29 11:55:13','2025-01-29 11:55:13','2025-01-30 15:49:48','[GLPI #0000070] Novo acompanhamento Email - Alexandre Onassis',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_70 \n\n Chamado: Descrição\n\n Título : Email - Alexandre Onassis\n Requerentes :  tecnomulti  \n Data de abertura : 29-01-2025 08:52\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - geimisson.marques@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Email - Alexandre Onassis\n2) E-MAIL : geimisson.marques@tecnomulti.com\n3) TELEFONE : 81 983240445\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nConfiguração primeiro acesso ao email do coordenador Alexandre Onassis \n \n\n\n[29-01-2025 08:55]\nAutor tecnomulti\nDescrição 1 282 574 283\nData de abertura 29-01-2025 08:55\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 08:53]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nFavor, me passe o ID do anydesk.\nData de abertura 29-01-2025 08:53\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(704,'Ticket',70,4,2,1,0,'2025-01-29 11:55:13','2025-01-29 11:55:13','2025-01-30 20:33:08','[GLPI #0000070] Novo acompanhamento Email - Alexandre Onassis',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_70 \n\n Chamado: Descrição\n\n Título : Email - Alexandre Onassis\n Requerentes :  tecnomulti  \n Data de abertura : 29-01-2025 08:52\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - geimisson.marques@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Email - Alexandre Onassis\n2) E-MAIL : geimisson.marques@tecnomulti.com\n3) TELEFONE : 81 983240445\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nConfiguração primeiro acesso ao email do coordenador Alexandre Onassis \n \n\n\n[29-01-2025 08:55]\nAutor tecnomulti\nDescrição 1 282 574 283\nData de abertura 29-01-2025 08:55\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 08:53]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nFavor, me passe o ID do anydesk.\nData de abertura 29-01-2025 08:53\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(705,'Ticket',70,4,2,0,2,'2025-01-29 11:55:13','2025-02-12 12:11:34',NULL,'[GLPI #0000070] Novo acompanhamento Email - Alexandre Onassis','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000070] Novo acompanhamento Email - Alexandre Onassis&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_70\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_70&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Email - Alexandre Onassis &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:29-01-2025 08:52 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- geimisson.marques@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Email - Alexandre Onassis&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;geimisson.marques@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 983240445&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Configuração primeiro acesso ao email do coordenador Alexandre Onassis &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 08:55]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;1 282 574 283&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 08:55&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 08:53]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, &#60;/p&#62;\r\n&#60;p&#62;Favor, me passe o ID do anydesk.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 08:53&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_70 \n\n Chamado: Descrição\n\n Título : Email - Alexandre Onassis\n Requerentes :  tecnomulti  \n Data de abertura : 29-01-2025 08:52\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - geimisson.marques@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Email - Alexandre Onassis\n2) E-MAIL : geimisson.marques@tecnomulti.com\n3) TELEFONE : 81 983240445\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nConfiguração primeiro acesso ao email do coordenador Alexandre Onassis \n \n\n\n[29-01-2025 08:55]\nAutor tecnomulti\nDescrição 1 282 574 283\nData de abertura 29-01-2025 08:55\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 08:53]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nFavor, me passe o ID do anydesk.\nData de abertura 29-01-2025 08:53\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-70/add_followup.1738151713.1768712055@oswintech.ddns.net','','mailing','add_followup'),
(706,'Ticket',70,4,2,0,2,'2025-01-29 11:55:13','2025-02-12 12:11:34',NULL,'[GLPI #0000070] Novo acompanhamento Email - Alexandre Onassis','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000070] Novo acompanhamento Email - Alexandre Onassis&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_70\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_70&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Email - Alexandre Onassis &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:29-01-2025 08:52 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- geimisson.marques@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Email - Alexandre Onassis&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;geimisson.marques@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 983240445&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Configuração primeiro acesso ao email do coordenador Alexandre Onassis &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 08:55]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;1 282 574 283&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 08:55&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 08:53]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, &#60;/p&#62;\r\n&#60;p&#62;Favor, me passe o ID do anydesk.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 08:53&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_70 \n\n Chamado: Descrição\n\n Título : Email - Alexandre Onassis\n Requerentes :  tecnomulti  \n Data de abertura : 29-01-2025 08:52\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - geimisson.marques@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Email - Alexandre Onassis\n2) E-MAIL : geimisson.marques@tecnomulti.com\n3) TELEFONE : 81 983240445\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nConfiguração primeiro acesso ao email do coordenador Alexandre Onassis \n \n\n\n[29-01-2025 08:55]\nAutor tecnomulti\nDescrição 1 282 574 283\nData de abertura 29-01-2025 08:55\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 08:53]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nFavor, me passe o ID do anydesk.\nData de abertura 29-01-2025 08:53\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-70/add_followup.1738151713.1443209762@oswintech.ddns.net','','mailing','add_followup'),
(707,'Ticket',70,4,2,0,2,'2025-01-29 11:55:13','2025-02-12 12:11:34',NULL,'[GLPI #0000070] Novo acompanhamento Email - Alexandre Onassis','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000070] Novo acompanhamento Email - Alexandre Onassis&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_70\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_70&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Email - Alexandre Onassis &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:29-01-2025 08:52 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- geimisson.marques@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Email - Alexandre Onassis&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;geimisson.marques@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 983240445&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Configuração primeiro acesso ao email do coordenador Alexandre Onassis &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 08:55]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;1 282 574 283&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 08:55&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 08:53]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, &#60;/p&#62;\r\n&#60;p&#62;Favor, me passe o ID do anydesk.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 08:53&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_70 \n\n Chamado: Descrição\n\n Título : Email - Alexandre Onassis\n Requerentes :  tecnomulti  \n Data de abertura : 29-01-2025 08:52\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - geimisson.marques@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Email - Alexandre Onassis\n2) E-MAIL : geimisson.marques@tecnomulti.com\n3) TELEFONE : 81 983240445\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nConfiguração primeiro acesso ao email do coordenador Alexandre Onassis \n \n\n\n[29-01-2025 08:55]\nAutor tecnomulti\nDescrição 1 282 574 283\nData de abertura 29-01-2025 08:55\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 08:53]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nFavor, me passe o ID do anydesk.\nData de abertura 29-01-2025 08:53\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-70/add_followup.1738151713.1677175244@oswintech.ddns.net','','mailing','add_followup'),
(708,'Ticket',70,4,2,0,2,'2025-01-29 11:55:13','2025-02-12 12:11:34',NULL,'[GLPI #0000070] Novo acompanhamento Email - Alexandre Onassis','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000070] Novo acompanhamento Email - Alexandre Onassis&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_70\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_70&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Email - Alexandre Onassis &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:29-01-2025 08:52 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- geimisson.marques@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Email - Alexandre Onassis&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;geimisson.marques@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 983240445&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Configuração primeiro acesso ao email do coordenador Alexandre Onassis &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 08:55]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;1 282 574 283&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 08:55&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 08:53]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, &#60;/p&#62;\r\n&#60;p&#62;Favor, me passe o ID do anydesk.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 08:53&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_70 \n\n Chamado: Descrição\n\n Título : Email - Alexandre Onassis\n Requerentes :  tecnomulti  \n Data de abertura : 29-01-2025 08:52\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - geimisson.marques@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Email - Alexandre Onassis\n2) E-MAIL : geimisson.marques@tecnomulti.com\n3) TELEFONE : 81 983240445\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nConfiguração primeiro acesso ao email do coordenador Alexandre Onassis \n \n\n\n[29-01-2025 08:55]\nAutor tecnomulti\nDescrição 1 282 574 283\nData de abertura 29-01-2025 08:55\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 08:53]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nFavor, me passe o ID do anydesk.\nData de abertura 29-01-2025 08:53\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-70/add_followup.1738151713.1291733227@oswintech.ddns.net','','mailing','add_followup'),
(709,'PluginFormcreatorFormAnswer',35,29,2,0,2,'2025-01-29 11:59:27','2025-02-12 12:11:34',NULL,'[GLPI] Sua requisição foi salva','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI] Sua requisi&#38;ccedil;&#38;atilde;o foi salva&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;p&#62;Olá,&#60;br /&#62;Sua requisição do GLPI foi salva com sucesso com o número 35 e transmitido para a equipe de helpdesk.&#60;br /&#62;Você pode ver suas respostas no seguinte link:&#60;br /&#62;https://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=35&#60;/p&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;','Olá,\nSua requisição do GLPI foi salva com sucesso com o número 35 e transmitido para a equipe de helpdesk.\nVocê pode ver suas respostas no seguinte link:\nhttps://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=35\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-PluginFormcreatorFormAnswer-35/plugin_formcreator_form_created.1738151967.957111433@oswintech.ddns.net','','mailing','plugin_formcreator_form_created'),
(710,'Ticket',71,4,2,1,0,'2025-01-29 11:59:27','2025-01-29 11:59:27','2025-01-30 00:52:13','[GLPI #0000071] Novo chamado configurar VPN',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_71 \n\n Chamado: Descrição\n\n Título : configurar VPN\n Requerentes :  tecnomulti  \n Data de abertura : 29-01-2025 08:59\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : configurar VPN\n2) E-MAIL : Sebastiao.clesio@tecnomulti.com\n3) TELEFONE : 84991007542\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nbom dia.\n\nconforme ja alinhado e autorizado por Paula. cadastrar a VPN no PC.   \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(711,'Ticket',71,4,2,1,0,'2025-01-29 11:59:27','2025-01-29 11:59:27','2025-01-30 15:37:38','[GLPI #0000071] Novo chamado configurar VPN',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_71 \n\n Chamado: Descrição\n\n Título : configurar VPN\n Requerentes :  tecnomulti  \n Data de abertura : 29-01-2025 08:59\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : configurar VPN\n2) E-MAIL : Sebastiao.clesio@tecnomulti.com\n3) TELEFONE : 84991007542\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nbom dia.\n\nconforme ja alinhado e autorizado por Paula. cadastrar a VPN no PC.   \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(712,'Ticket',71,4,2,1,0,'2025-01-29 11:59:27','2025-01-29 11:59:27','2025-01-30 15:49:48','[GLPI #0000071] Novo chamado configurar VPN',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_71 \n\n Chamado: Descrição\n\n Título : configurar VPN\n Requerentes :  tecnomulti  \n Data de abertura : 29-01-2025 08:59\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : configurar VPN\n2) E-MAIL : Sebastiao.clesio@tecnomulti.com\n3) TELEFONE : 84991007542\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nbom dia.\n\nconforme ja alinhado e autorizado por Paula. cadastrar a VPN no PC.   \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(713,'Ticket',71,4,2,1,0,'2025-01-29 11:59:27','2025-01-29 11:59:27','2025-01-30 20:33:08','[GLPI #0000071] Novo chamado configurar VPN',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_71 \n\n Chamado: Descrição\n\n Título : configurar VPN\n Requerentes :  tecnomulti  \n Data de abertura : 29-01-2025 08:59\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : configurar VPN\n2) E-MAIL : Sebastiao.clesio@tecnomulti.com\n3) TELEFONE : 84991007542\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nbom dia.\n\nconforme ja alinhado e autorizado por Paula. cadastrar a VPN no PC.   \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(714,'Ticket',71,4,2,0,2,'2025-01-29 11:59:27','2025-02-12 12:11:34',NULL,'[GLPI #0000071] Novo chamado configurar VPN','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000071] Novo chamado configurar VPN&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_71\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_71&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:configurar VPN &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:29-01-2025 08:59 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;configurar VPN&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;Sebastiao.clesio@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84991007542&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;bom dia.&#60;/p&#62;\n&#60;p&#62;conforme ja alinhado e autorizado por Paula. cadastrar a VPN no PC.   &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_71 \n\n Chamado: Descrição\n\n Título : configurar VPN\n Requerentes :  tecnomulti  \n Data de abertura : 29-01-2025 08:59\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : configurar VPN\n2) E-MAIL : Sebastiao.clesio@tecnomulti.com\n3) TELEFONE : 84991007542\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nbom dia.\n\nconforme ja alinhado e autorizado por Paula. cadastrar a VPN no PC.   \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-71/new@oswintech.ddns.net','','mailing','new'),
(715,'Ticket',71,4,2,0,2,'2025-01-29 11:59:27','2025-02-12 12:11:34',NULL,'[GLPI #0000071] Novo chamado configurar VPN','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000071] Novo chamado configurar VPN&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_71\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_71&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:configurar VPN &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:29-01-2025 08:59 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;configurar VPN&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;Sebastiao.clesio@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84991007542&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;bom dia.&#60;/p&#62;\n&#60;p&#62;conforme ja alinhado e autorizado por Paula. cadastrar a VPN no PC.   &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_71 \n\n Chamado: Descrição\n\n Título : configurar VPN\n Requerentes :  tecnomulti  \n Data de abertura : 29-01-2025 08:59\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : configurar VPN\n2) E-MAIL : Sebastiao.clesio@tecnomulti.com\n3) TELEFONE : 84991007542\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nbom dia.\n\nconforme ja alinhado e autorizado por Paula. cadastrar a VPN no PC.   \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-71/new@oswintech.ddns.net','','mailing','new'),
(716,'Ticket',71,4,2,0,2,'2025-01-29 11:59:27','2025-02-12 12:11:34',NULL,'[GLPI #0000071] Novo chamado configurar VPN','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000071] Novo chamado configurar VPN&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_71\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_71&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:configurar VPN &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:29-01-2025 08:59 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;configurar VPN&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;Sebastiao.clesio@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84991007542&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;bom dia.&#60;/p&#62;\n&#60;p&#62;conforme ja alinhado e autorizado por Paula. cadastrar a VPN no PC.   &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_71 \n\n Chamado: Descrição\n\n Título : configurar VPN\n Requerentes :  tecnomulti  \n Data de abertura : 29-01-2025 08:59\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : configurar VPN\n2) E-MAIL : Sebastiao.clesio@tecnomulti.com\n3) TELEFONE : 84991007542\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nbom dia.\n\nconforme ja alinhado e autorizado por Paula. cadastrar a VPN no PC.   \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-71/new@oswintech.ddns.net','','mailing','new'),
(717,'Ticket',71,4,2,0,2,'2025-01-29 11:59:27','2025-02-12 12:11:34',NULL,'[GLPI #0000071] Novo chamado configurar VPN','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000071] Novo chamado configurar VPN&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_71\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_71&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:configurar VPN &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:29-01-2025 08:59 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;configurar VPN&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;Sebastiao.clesio@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84991007542&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;bom dia.&#60;/p&#62;\n&#60;p&#62;conforme ja alinhado e autorizado por Paula. cadastrar a VPN no PC.   &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_71 \n\n Chamado: Descrição\n\n Título : configurar VPN\n Requerentes :  tecnomulti  \n Data de abertura : 29-01-2025 08:59\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : configurar VPN\n2) E-MAIL : Sebastiao.clesio@tecnomulti.com\n3) TELEFONE : 84991007542\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nbom dia.\n\nconforme ja alinhado e autorizado por Paula. cadastrar a VPN no PC.   \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-71/new@oswintech.ddns.net','','mailing','new'),
(718,'Ticket',70,4,2,1,0,'2025-01-29 12:01:09','2025-01-29 12:01:09','2025-01-30 00:52:14','[GLPI #0000070] Novo acompanhamento Email - Alexandre Onassis',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_70 \n\n Chamado: Descrição\n\n Título : Email - Alexandre Onassis\n Requerentes :  tecnomulti  \n Data de abertura : 29-01-2025 08:52\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - geimisson.marques@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Email - Alexandre Onassis\n2) E-MAIL : geimisson.marques@tecnomulti.com\n3) TELEFONE : 81 983240445\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nConfiguração primeiro acesso ao email do coordenador Alexandre Onassis \n \n\n\n[29-01-2025 09:01]\nAutor Alexsandro Cruz\nDescrição Configuração realizada e testado. \nData de abertura 29-01-2025 09:01\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 08:55]\nAutor tecnomulti\nDescrição 1 282 574 283\nData de abertura 29-01-2025 08:55\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 08:53]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nFavor, me passe o ID do anydesk.\nData de abertura 29-01-2025 08:53\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(719,'Ticket',70,4,2,1,0,'2025-01-29 12:01:09','2025-01-29 12:01:09','2025-01-30 15:37:38','[GLPI #0000070] Novo acompanhamento Email - Alexandre Onassis',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_70 \n\n Chamado: Descrição\n\n Título : Email - Alexandre Onassis\n Requerentes :  tecnomulti  \n Data de abertura : 29-01-2025 08:52\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - geimisson.marques@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Email - Alexandre Onassis\n2) E-MAIL : geimisson.marques@tecnomulti.com\n3) TELEFONE : 81 983240445\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nConfiguração primeiro acesso ao email do coordenador Alexandre Onassis \n \n\n\n[29-01-2025 09:01]\nAutor Alexsandro Cruz\nDescrição Configuração realizada e testado. \nData de abertura 29-01-2025 09:01\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 08:55]\nAutor tecnomulti\nDescrição 1 282 574 283\nData de abertura 29-01-2025 08:55\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 08:53]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nFavor, me passe o ID do anydesk.\nData de abertura 29-01-2025 08:53\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(720,'Ticket',70,4,2,1,0,'2025-01-29 12:01:09','2025-01-29 12:01:09','2025-01-30 15:49:49','[GLPI #0000070] Novo acompanhamento Email - Alexandre Onassis',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_70 \n\n Chamado: Descrição\n\n Título : Email - Alexandre Onassis\n Requerentes :  tecnomulti  \n Data de abertura : 29-01-2025 08:52\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - geimisson.marques@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Email - Alexandre Onassis\n2) E-MAIL : geimisson.marques@tecnomulti.com\n3) TELEFONE : 81 983240445\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nConfiguração primeiro acesso ao email do coordenador Alexandre Onassis \n \n\n\n[29-01-2025 09:01]\nAutor Alexsandro Cruz\nDescrição Configuração realizada e testado. \nData de abertura 29-01-2025 09:01\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 08:55]\nAutor tecnomulti\nDescrição 1 282 574 283\nData de abertura 29-01-2025 08:55\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 08:53]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nFavor, me passe o ID do anydesk.\nData de abertura 29-01-2025 08:53\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(721,'Ticket',70,4,2,1,0,'2025-01-29 12:01:09','2025-01-29 12:01:09','2025-01-30 20:33:10','[GLPI #0000070] Novo acompanhamento Email - Alexandre Onassis',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_70 \n\n Chamado: Descrição\n\n Título : Email - Alexandre Onassis\n Requerentes :  tecnomulti  \n Data de abertura : 29-01-2025 08:52\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - geimisson.marques@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Email - Alexandre Onassis\n2) E-MAIL : geimisson.marques@tecnomulti.com\n3) TELEFONE : 81 983240445\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nConfiguração primeiro acesso ao email do coordenador Alexandre Onassis \n \n\n\n[29-01-2025 09:01]\nAutor Alexsandro Cruz\nDescrição Configuração realizada e testado. \nData de abertura 29-01-2025 09:01\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 08:55]\nAutor tecnomulti\nDescrição 1 282 574 283\nData de abertura 29-01-2025 08:55\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 08:53]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nFavor, me passe o ID do anydesk.\nData de abertura 29-01-2025 08:53\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(722,'Ticket',70,4,2,0,2,'2025-01-29 12:01:09','2025-02-12 12:11:34',NULL,'[GLPI #0000070] Novo acompanhamento Email - Alexandre Onassis','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000070] Novo acompanhamento Email - Alexandre Onassis&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_70\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_70&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Email - Alexandre Onassis &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:29-01-2025 08:52 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- geimisson.marques@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Email - Alexandre Onassis&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;geimisson.marques@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 983240445&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Configuração primeiro acesso ao email do coordenador Alexandre Onassis &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 09:01]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Configuração realizada e testado. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 09:01&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 08:55]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;1 282 574 283&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 08:55&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 08:53]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, &#60;/p&#62;\r\n&#60;p&#62;Favor, me passe o ID do anydesk.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 08:53&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 3&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_70 \n\n Chamado: Descrição\n\n Título : Email - Alexandre Onassis\n Requerentes :  tecnomulti  \n Data de abertura : 29-01-2025 08:52\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - geimisson.marques@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Email - Alexandre Onassis\n2) E-MAIL : geimisson.marques@tecnomulti.com\n3) TELEFONE : 81 983240445\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nConfiguração primeiro acesso ao email do coordenador Alexandre Onassis \n \n\n\n[29-01-2025 09:01]\nAutor Alexsandro Cruz\nDescrição Configuração realizada e testado. \nData de abertura 29-01-2025 09:01\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 08:55]\nAutor tecnomulti\nDescrição 1 282 574 283\nData de abertura 29-01-2025 08:55\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 08:53]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nFavor, me passe o ID do anydesk.\nData de abertura 29-01-2025 08:53\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-70/add_followup.1738152070.1272688014@oswintech.ddns.net','','mailing','add_followup'),
(723,'Ticket',70,4,2,0,2,'2025-01-29 12:01:09','2025-02-12 12:11:34',NULL,'[GLPI #0000070] Novo acompanhamento Email - Alexandre Onassis','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000070] Novo acompanhamento Email - Alexandre Onassis&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_70\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_70&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Email - Alexandre Onassis &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:29-01-2025 08:52 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- geimisson.marques@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Email - Alexandre Onassis&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;geimisson.marques@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 983240445&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Configuração primeiro acesso ao email do coordenador Alexandre Onassis &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 09:01]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Configuração realizada e testado. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 09:01&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 08:55]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;1 282 574 283&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 08:55&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 08:53]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, &#60;/p&#62;\r\n&#60;p&#62;Favor, me passe o ID do anydesk.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 08:53&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 3&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_70 \n\n Chamado: Descrição\n\n Título : Email - Alexandre Onassis\n Requerentes :  tecnomulti  \n Data de abertura : 29-01-2025 08:52\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - geimisson.marques@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Email - Alexandre Onassis\n2) E-MAIL : geimisson.marques@tecnomulti.com\n3) TELEFONE : 81 983240445\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nConfiguração primeiro acesso ao email do coordenador Alexandre Onassis \n \n\n\n[29-01-2025 09:01]\nAutor Alexsandro Cruz\nDescrição Configuração realizada e testado. \nData de abertura 29-01-2025 09:01\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 08:55]\nAutor tecnomulti\nDescrição 1 282 574 283\nData de abertura 29-01-2025 08:55\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 08:53]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nFavor, me passe o ID do anydesk.\nData de abertura 29-01-2025 08:53\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-70/add_followup.1738152070.1581675342@oswintech.ddns.net','','mailing','add_followup'),
(724,'Ticket',70,4,2,0,2,'2025-01-29 12:01:09','2025-02-12 12:11:34',NULL,'[GLPI #0000070] Novo acompanhamento Email - Alexandre Onassis','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000070] Novo acompanhamento Email - Alexandre Onassis&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_70\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_70&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Email - Alexandre Onassis &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:29-01-2025 08:52 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- geimisson.marques@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Email - Alexandre Onassis&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;geimisson.marques@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 983240445&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Configuração primeiro acesso ao email do coordenador Alexandre Onassis &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 09:01]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Configuração realizada e testado. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 09:01&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 08:55]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;1 282 574 283&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 08:55&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 08:53]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, &#60;/p&#62;\r\n&#60;p&#62;Favor, me passe o ID do anydesk.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 08:53&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 3&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_70 \n\n Chamado: Descrição\n\n Título : Email - Alexandre Onassis\n Requerentes :  tecnomulti  \n Data de abertura : 29-01-2025 08:52\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - geimisson.marques@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Email - Alexandre Onassis\n2) E-MAIL : geimisson.marques@tecnomulti.com\n3) TELEFONE : 81 983240445\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nConfiguração primeiro acesso ao email do coordenador Alexandre Onassis \n \n\n\n[29-01-2025 09:01]\nAutor Alexsandro Cruz\nDescrição Configuração realizada e testado. \nData de abertura 29-01-2025 09:01\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 08:55]\nAutor tecnomulti\nDescrição 1 282 574 283\nData de abertura 29-01-2025 08:55\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 08:53]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nFavor, me passe o ID do anydesk.\nData de abertura 29-01-2025 08:53\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-70/add_followup.1738152070.1893094462@oswintech.ddns.net','','mailing','add_followup'),
(725,'Ticket',70,4,2,0,2,'2025-01-29 12:01:09','2025-02-12 12:11:34',NULL,'[GLPI #0000070] Novo acompanhamento Email - Alexandre Onassis','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000070] Novo acompanhamento Email - Alexandre Onassis&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_70\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_70&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Email - Alexandre Onassis &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:29-01-2025 08:52 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- geimisson.marques@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Email - Alexandre Onassis&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;geimisson.marques@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 983240445&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Configuração primeiro acesso ao email do coordenador Alexandre Onassis &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 09:01]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Configuração realizada e testado. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 09:01&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 08:55]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;1 282 574 283&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 08:55&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 08:53]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, &#60;/p&#62;\r\n&#60;p&#62;Favor, me passe o ID do anydesk.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 08:53&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 3&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_70 \n\n Chamado: Descrição\n\n Título : Email - Alexandre Onassis\n Requerentes :  tecnomulti  \n Data de abertura : 29-01-2025 08:52\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - geimisson.marques@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Email - Alexandre Onassis\n2) E-MAIL : geimisson.marques@tecnomulti.com\n3) TELEFONE : 81 983240445\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nConfiguração primeiro acesso ao email do coordenador Alexandre Onassis \n \n\n\n[29-01-2025 09:01]\nAutor Alexsandro Cruz\nDescrição Configuração realizada e testado. \nData de abertura 29-01-2025 09:01\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 08:55]\nAutor tecnomulti\nDescrição 1 282 574 283\nData de abertura 29-01-2025 08:55\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 08:53]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nFavor, me passe o ID do anydesk.\nData de abertura 29-01-2025 08:53\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-70/add_followup.1738152070.863607750@oswintech.ddns.net','','mailing','add_followup'),
(726,'Ticket',70,4,2,0,2,'2025-01-29 12:01:16','2025-02-12 12:11:34',NULL,'[GLPI #0000070] Encerramento do chamado Email - Alexandre Onassis','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000070] Encerramento do chamado Email - Alexandre Onassis&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_70\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_70&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Email - Alexandre Onassis &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:29-01-2025 08:52 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:29-01-2025 09:01 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- geimisson.marques@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Email - Alexandre Onassis&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;geimisson.marques@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 983240445&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Configuração primeiro acesso ao email do coordenador Alexandre Onassis &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 29-01-2025 09:01&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 09:01]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Configuração realizada e testado. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 09:01&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 08:55]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;1 282 574 283&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 08:55&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 08:53]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, &#60;/p&#62;\r\n&#60;p&#62;Favor, me passe o ID do anydesk.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 08:53&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 3&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_70 \n\n Chamado: Descrição\n\n Título : Email - Alexandre Onassis\n Requerentes :  tecnomulti  \n Data de abertura : 29-01-2025 08:52\n Data de fechamento : 29-01-2025 09:01\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - geimisson.marques@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Email - Alexandre Onassis\n2) E-MAIL : geimisson.marques@tecnomulti.com\n3) TELEFONE : 81 983240445\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nConfiguração primeiro acesso ao email do coordenador Alexandre Onassis \n \n\n Data da solução : 29-01-2025 09:01\n Tipo de solução : \n Solução : \n \n\n\n[29-01-2025 09:01]\nAutor Alexsandro Cruz\nDescrição Configuração realizada e testado. \nData de abertura 29-01-2025 09:01\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 08:55]\nAutor tecnomulti\nDescrição 1 282 574 283\nData de abertura 29-01-2025 08:55\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 08:53]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nFavor, me passe o ID do anydesk.\nData de abertura 29-01-2025 08:53\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-70/closed.1738152076.1592466466@oswintech.ddns.net','','mailing','closed'),
(727,'Ticket',70,4,2,0,2,'2025-01-29 12:01:16','2025-02-12 12:11:34',NULL,'[GLPI #0000070] Encerramento do chamado Email - Alexandre Onassis','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000070] Encerramento do chamado Email - Alexandre Onassis&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_70\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_70&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Email - Alexandre Onassis &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:29-01-2025 08:52 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:29-01-2025 09:01 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- geimisson.marques@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Email - Alexandre Onassis&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;geimisson.marques@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 983240445&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Configuração primeiro acesso ao email do coordenador Alexandre Onassis &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 29-01-2025 09:01&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 09:01]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Configuração realizada e testado. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 09:01&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 08:55]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;1 282 574 283&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 08:55&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 08:53]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, &#60;/p&#62;\r\n&#60;p&#62;Favor, me passe o ID do anydesk.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 08:53&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 3&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_70 \n\n Chamado: Descrição\n\n Título : Email - Alexandre Onassis\n Requerentes :  tecnomulti  \n Data de abertura : 29-01-2025 08:52\n Data de fechamento : 29-01-2025 09:01\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - geimisson.marques@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Email - Alexandre Onassis\n2) E-MAIL : geimisson.marques@tecnomulti.com\n3) TELEFONE : 81 983240445\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nConfiguração primeiro acesso ao email do coordenador Alexandre Onassis \n \n\n Data da solução : 29-01-2025 09:01\n Tipo de solução : \n Solução : \n \n\n\n[29-01-2025 09:01]\nAutor Alexsandro Cruz\nDescrição Configuração realizada e testado. \nData de abertura 29-01-2025 09:01\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 08:55]\nAutor tecnomulti\nDescrição 1 282 574 283\nData de abertura 29-01-2025 08:55\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[29-01-2025 08:53]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nFavor, me passe o ID do anydesk.\nData de abertura 29-01-2025 08:53\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-70/closed.1738152076.1369326421@oswintech.ddns.net','','mailing','closed'),
(728,'Ticket',71,4,2,1,0,'2025-01-29 12:06:20','2025-01-29 12:06:20','2025-01-30 00:52:14','[GLPI #0000071] Novo acompanhamento configurar VPN',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_71 \n\n Chamado: Descrição\n\n Título : configurar VPN\n Requerentes :  tecnomulti  \n Data de abertura : 29-01-2025 08:59\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - Sebastiao.clesio@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : configurar VPN\n2) E-MAIL : Sebastiao.clesio@tecnomulti.com\n3) TELEFONE : 84991007542\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nbom dia.\n\nconforme ja alinhado e autorizado por Paula. cadastrar a VPN no PC.   \n \n\n\n[29-01-2025 09:06]\nAutor Alexsandro Cruz\nDescrição Realizado o acesso e configurado a VPN\nData de abertura 29-01-2025 09:06\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(729,'Ticket',71,4,2,1,0,'2025-01-29 12:06:20','2025-01-29 12:06:20','2025-01-30 15:37:38','[GLPI #0000071] Novo acompanhamento configurar VPN',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_71 \n\n Chamado: Descrição\n\n Título : configurar VPN\n Requerentes :  tecnomulti  \n Data de abertura : 29-01-2025 08:59\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - Sebastiao.clesio@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : configurar VPN\n2) E-MAIL : Sebastiao.clesio@tecnomulti.com\n3) TELEFONE : 84991007542\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nbom dia.\n\nconforme ja alinhado e autorizado por Paula. cadastrar a VPN no PC.   \n \n\n\n[29-01-2025 09:06]\nAutor Alexsandro Cruz\nDescrição Realizado o acesso e configurado a VPN\nData de abertura 29-01-2025 09:06\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(730,'Ticket',71,4,2,1,0,'2025-01-29 12:06:20','2025-01-29 12:06:20','2025-01-30 15:49:49','[GLPI #0000071] Novo acompanhamento configurar VPN',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_71 \n\n Chamado: Descrição\n\n Título : configurar VPN\n Requerentes :  tecnomulti  \n Data de abertura : 29-01-2025 08:59\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - Sebastiao.clesio@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : configurar VPN\n2) E-MAIL : Sebastiao.clesio@tecnomulti.com\n3) TELEFONE : 84991007542\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nbom dia.\n\nconforme ja alinhado e autorizado por Paula. cadastrar a VPN no PC.   \n \n\n\n[29-01-2025 09:06]\nAutor Alexsandro Cruz\nDescrição Realizado o acesso e configurado a VPN\nData de abertura 29-01-2025 09:06\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(731,'Ticket',71,4,2,1,0,'2025-01-29 12:06:20','2025-01-29 12:06:20','2025-01-30 20:33:10','[GLPI #0000071] Novo acompanhamento configurar VPN',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_71 \n\n Chamado: Descrição\n\n Título : configurar VPN\n Requerentes :  tecnomulti  \n Data de abertura : 29-01-2025 08:59\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - Sebastiao.clesio@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : configurar VPN\n2) E-MAIL : Sebastiao.clesio@tecnomulti.com\n3) TELEFONE : 84991007542\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nbom dia.\n\nconforme ja alinhado e autorizado por Paula. cadastrar a VPN no PC.   \n \n\n\n[29-01-2025 09:06]\nAutor Alexsandro Cruz\nDescrição Realizado o acesso e configurado a VPN\nData de abertura 29-01-2025 09:06\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(732,'Ticket',71,4,2,0,2,'2025-01-29 12:06:20','2025-02-12 12:11:34',NULL,'[GLPI #0000071] Novo acompanhamento configurar VPN','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000071] Novo acompanhamento configurar VPN&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_71\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_71&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:configurar VPN &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:29-01-2025 08:59 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- Sebastiao.clesio@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;configurar VPN&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;Sebastiao.clesio@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84991007542&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;bom dia.&#60;/p&#62;\n&#60;p&#62;conforme ja alinhado e autorizado por Paula. cadastrar a VPN no PC.   &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 09:06]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Realizado o acesso e configurado a VPN&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 09:06&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_71 \n\n Chamado: Descrição\n\n Título : configurar VPN\n Requerentes :  tecnomulti  \n Data de abertura : 29-01-2025 08:59\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - Sebastiao.clesio@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : configurar VPN\n2) E-MAIL : Sebastiao.clesio@tecnomulti.com\n3) TELEFONE : 84991007542\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nbom dia.\n\nconforme ja alinhado e autorizado por Paula. cadastrar a VPN no PC.   \n \n\n\n[29-01-2025 09:06]\nAutor Alexsandro Cruz\nDescrição Realizado o acesso e configurado a VPN\nData de abertura 29-01-2025 09:06\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-71/add_followup.1738152380.1009283166@oswintech.ddns.net','','mailing','add_followup'),
(733,'Ticket',71,4,2,0,2,'2025-01-29 12:06:20','2025-02-12 12:11:34',NULL,'[GLPI #0000071] Novo acompanhamento configurar VPN','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000071] Novo acompanhamento configurar VPN&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_71\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_71&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:configurar VPN &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:29-01-2025 08:59 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- Sebastiao.clesio@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;configurar VPN&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;Sebastiao.clesio@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84991007542&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;bom dia.&#60;/p&#62;\n&#60;p&#62;conforme ja alinhado e autorizado por Paula. cadastrar a VPN no PC.   &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 09:06]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Realizado o acesso e configurado a VPN&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 09:06&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_71 \n\n Chamado: Descrição\n\n Título : configurar VPN\n Requerentes :  tecnomulti  \n Data de abertura : 29-01-2025 08:59\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - Sebastiao.clesio@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : configurar VPN\n2) E-MAIL : Sebastiao.clesio@tecnomulti.com\n3) TELEFONE : 84991007542\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nbom dia.\n\nconforme ja alinhado e autorizado por Paula. cadastrar a VPN no PC.   \n \n\n\n[29-01-2025 09:06]\nAutor Alexsandro Cruz\nDescrição Realizado o acesso e configurado a VPN\nData de abertura 29-01-2025 09:06\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-71/add_followup.1738152380.1689474561@oswintech.ddns.net','','mailing','add_followup'),
(734,'Ticket',71,4,2,0,2,'2025-01-29 12:06:20','2025-02-12 12:11:34',NULL,'[GLPI #0000071] Novo acompanhamento configurar VPN','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000071] Novo acompanhamento configurar VPN&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_71\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_71&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:configurar VPN &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:29-01-2025 08:59 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- Sebastiao.clesio@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;configurar VPN&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;Sebastiao.clesio@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84991007542&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;bom dia.&#60;/p&#62;\n&#60;p&#62;conforme ja alinhado e autorizado por Paula. cadastrar a VPN no PC.   &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 09:06]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Realizado o acesso e configurado a VPN&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 09:06&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_71 \n\n Chamado: Descrição\n\n Título : configurar VPN\n Requerentes :  tecnomulti  \n Data de abertura : 29-01-2025 08:59\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - Sebastiao.clesio@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : configurar VPN\n2) E-MAIL : Sebastiao.clesio@tecnomulti.com\n3) TELEFONE : 84991007542\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nbom dia.\n\nconforme ja alinhado e autorizado por Paula. cadastrar a VPN no PC.   \n \n\n\n[29-01-2025 09:06]\nAutor Alexsandro Cruz\nDescrição Realizado o acesso e configurado a VPN\nData de abertura 29-01-2025 09:06\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-71/add_followup.1738152380.981591485@oswintech.ddns.net','','mailing','add_followup'),
(735,'Ticket',71,4,2,0,2,'2025-01-29 12:06:20','2025-02-12 12:11:34',NULL,'[GLPI #0000071] Novo acompanhamento configurar VPN','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000071] Novo acompanhamento configurar VPN&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_71\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_71&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:configurar VPN &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:29-01-2025 08:59 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- Sebastiao.clesio@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;configurar VPN&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;Sebastiao.clesio@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84991007542&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;bom dia.&#60;/p&#62;\n&#60;p&#62;conforme ja alinhado e autorizado por Paula. cadastrar a VPN no PC.   &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 09:06]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Realizado o acesso e configurado a VPN&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 09:06&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_71 \n\n Chamado: Descrição\n\n Título : configurar VPN\n Requerentes :  tecnomulti  \n Data de abertura : 29-01-2025 08:59\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - Sebastiao.clesio@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : configurar VPN\n2) E-MAIL : Sebastiao.clesio@tecnomulti.com\n3) TELEFONE : 84991007542\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nbom dia.\n\nconforme ja alinhado e autorizado por Paula. cadastrar a VPN no PC.   \n \n\n\n[29-01-2025 09:06]\nAutor Alexsandro Cruz\nDescrição Realizado o acesso e configurado a VPN\nData de abertura 29-01-2025 09:06\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-71/add_followup.1738152380.826452248@oswintech.ddns.net','','mailing','add_followup'),
(736,'Ticket',71,4,2,0,2,'2025-01-29 12:06:26','2025-02-12 12:11:34',NULL,'[GLPI #0000071] Encerramento do chamado configurar VPN','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000071] Encerramento do chamado configurar VPN&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_71\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_71&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:configurar VPN &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:29-01-2025 08:59 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:29-01-2025 09:06 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- Sebastiao.clesio@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;configurar VPN&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;Sebastiao.clesio@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84991007542&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;bom dia.&#60;/p&#62;\n&#60;p&#62;conforme ja alinhado e autorizado por Paula. cadastrar a VPN no PC.   &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 29-01-2025 09:06&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 09:06]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Realizado o acesso e configurado a VPN&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 09:06&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_71 \n\n Chamado: Descrição\n\n Título : configurar VPN\n Requerentes :  tecnomulti  \n Data de abertura : 29-01-2025 08:59\n Data de fechamento : 29-01-2025 09:06\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - Sebastiao.clesio@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : configurar VPN\n2) E-MAIL : Sebastiao.clesio@tecnomulti.com\n3) TELEFONE : 84991007542\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nbom dia.\n\nconforme ja alinhado e autorizado por Paula. cadastrar a VPN no PC.   \n \n\n Data da solução : 29-01-2025 09:06\n Tipo de solução : \n Solução : \n \n\n\n[29-01-2025 09:06]\nAutor Alexsandro Cruz\nDescrição Realizado o acesso e configurado a VPN\nData de abertura 29-01-2025 09:06\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-71/closed.1738152386.1453299994@oswintech.ddns.net','','mailing','closed'),
(737,'Ticket',71,4,2,0,2,'2025-01-29 12:06:26','2025-02-12 12:11:34',NULL,'[GLPI #0000071] Encerramento do chamado configurar VPN','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000071] Encerramento do chamado configurar VPN&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_71\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_71&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:configurar VPN &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:29-01-2025 08:59 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:29-01-2025 09:06 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- Sebastiao.clesio@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;configurar VPN&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;Sebastiao.clesio@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84991007542&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;bom dia.&#60;/p&#62;\n&#60;p&#62;conforme ja alinhado e autorizado por Paula. cadastrar a VPN no PC.   &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 29-01-2025 09:06&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [29-01-2025 09:06]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Realizado o acesso e configurado a VPN&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;29-01-2025 09:06&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_71 \n\n Chamado: Descrição\n\n Título : configurar VPN\n Requerentes :  tecnomulti  \n Data de abertura : 29-01-2025 08:59\n Data de fechamento : 29-01-2025 09:06\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - Sebastiao.clesio@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : configurar VPN\n2) E-MAIL : Sebastiao.clesio@tecnomulti.com\n3) TELEFONE : 84991007542\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nbom dia.\n\nconforme ja alinhado e autorizado por Paula. cadastrar a VPN no PC.   \n \n\n Data da solução : 29-01-2025 09:06\n Tipo de solução : \n Solução : \n \n\n\n[29-01-2025 09:06]\nAutor Alexsandro Cruz\nDescrição Realizado o acesso e configurado a VPN\nData de abertura 29-01-2025 09:06\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-71/closed.1738152386.863485120@oswintech.ddns.net','','mailing','closed'),
(738,'PluginFormcreatorFormAnswer',36,29,2,0,2,'2025-01-30 11:24:45','2025-02-14 14:40:13',NULL,'[GLPI] Sua requisição foi salva','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI] Sua requisi&#38;ccedil;&#38;atilde;o foi salva&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;p&#62;Olá,&#60;br /&#62;Sua requisição do GLPI foi salva com sucesso com o número 36 e transmitido para a equipe de helpdesk.&#60;br /&#62;Você pode ver suas respostas no seguinte link:&#60;br /&#62;https://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=36&#60;/p&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;','Olá,\nSua requisição do GLPI foi salva com sucesso com o número 36 e transmitido para a equipe de helpdesk.\nVocê pode ver suas respostas no seguinte link:\nhttps://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=36\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-PluginFormcreatorFormAnswer-36/plugin_formcreator_form_created.1738236285.451095913@oswintech.ddns.net','','mailing','plugin_formcreator_form_created'),
(739,'Ticket',72,4,2,1,0,'2025-01-30 11:24:45','2025-01-30 11:24:45','2025-01-30 17:55:56','[GLPI #0000072] Novo chamado sistema sap não fica com o acesso',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_72 \n\n Chamado: Descrição\n\n Título : sistema sap não fica com o acesso\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 08:24\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : sistema sap não fica com o acesso\n2) E-MAIL : lorenalarissa88@gmail.com\n3) TELEFONE : 81 9402-7371\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nnão consigo acessar o sistema\n\nanydesk  1 763 954 787\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(740,'Ticket',72,4,2,1,0,'2025-01-30 11:24:45','2025-01-30 11:24:45','2025-01-30 15:37:38','[GLPI #0000072] Novo chamado sistema sap não fica com o acesso',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_72 \n\n Chamado: Descrição\n\n Título : sistema sap não fica com o acesso\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 08:24\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : sistema sap não fica com o acesso\n2) E-MAIL : lorenalarissa88@gmail.com\n3) TELEFONE : 81 9402-7371\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nnão consigo acessar o sistema\n\nanydesk  1 763 954 787\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(741,'Ticket',72,4,2,1,0,'2025-01-30 11:24:45','2025-01-30 11:24:45','2025-01-30 15:49:49','[GLPI #0000072] Novo chamado sistema sap não fica com o acesso',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_72 \n\n Chamado: Descrição\n\n Título : sistema sap não fica com o acesso\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 08:24\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : sistema sap não fica com o acesso\n2) E-MAIL : lorenalarissa88@gmail.com\n3) TELEFONE : 81 9402-7371\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nnão consigo acessar o sistema\n\nanydesk  1 763 954 787\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(742,'Ticket',72,4,2,1,0,'2025-01-30 11:24:45','2025-01-30 11:24:45','2025-01-30 20:33:10','[GLPI #0000072] Novo chamado sistema sap não fica com o acesso',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_72 \n\n Chamado: Descrição\n\n Título : sistema sap não fica com o acesso\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 08:24\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : sistema sap não fica com o acesso\n2) E-MAIL : lorenalarissa88@gmail.com\n3) TELEFONE : 81 9402-7371\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nnão consigo acessar o sistema\n\nanydesk  1 763 954 787\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(743,'Ticket',72,4,2,0,2,'2025-01-30 11:24:45','2025-02-14 14:40:13',NULL,'[GLPI #0000072] Novo chamado sistema sap não fica com o acesso','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000072] Novo chamado sistema sap n&#38;atilde;o fica com o acesso&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_72\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_72&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:sistema sap n&#38;atilde;o fica com o acesso &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:30-01-2025 08:24 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;sistema sap não fica com o acesso&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;lorenalarissa88@gmail.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62; 81 9402-7371&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;não consigo acessar o sistema&#60;/p&#62;\n&#60;p&#62;anydesk  1 763 954 787&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_72 \n\n Chamado: Descrição\n\n Título : sistema sap não fica com o acesso\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 08:24\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : sistema sap não fica com o acesso\n2) E-MAIL : lorenalarissa88@gmail.com\n3) TELEFONE : 81 9402-7371\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nnão consigo acessar o sistema\n\nanydesk  1 763 954 787\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-72/new@oswintech.ddns.net','','mailing','new'),
(744,'Ticket',72,4,2,0,2,'2025-01-30 11:24:45','2025-02-14 14:40:13',NULL,'[GLPI #0000072] Novo chamado sistema sap não fica com o acesso','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000072] Novo chamado sistema sap n&#38;atilde;o fica com o acesso&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_72\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_72&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:sistema sap n&#38;atilde;o fica com o acesso &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:30-01-2025 08:24 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;sistema sap não fica com o acesso&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;lorenalarissa88@gmail.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62; 81 9402-7371&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;não consigo acessar o sistema&#60;/p&#62;\n&#60;p&#62;anydesk  1 763 954 787&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_72 \n\n Chamado: Descrição\n\n Título : sistema sap não fica com o acesso\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 08:24\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : sistema sap não fica com o acesso\n2) E-MAIL : lorenalarissa88@gmail.com\n3) TELEFONE : 81 9402-7371\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nnão consigo acessar o sistema\n\nanydesk  1 763 954 787\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-72/new@oswintech.ddns.net','','mailing','new'),
(745,'Ticket',72,4,2,0,2,'2025-01-30 11:24:45','2025-02-14 14:40:13',NULL,'[GLPI #0000072] Novo chamado sistema sap não fica com o acesso','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000072] Novo chamado sistema sap n&#38;atilde;o fica com o acesso&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_72\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_72&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:sistema sap n&#38;atilde;o fica com o acesso &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:30-01-2025 08:24 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;sistema sap não fica com o acesso&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;lorenalarissa88@gmail.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62; 81 9402-7371&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;não consigo acessar o sistema&#60;/p&#62;\n&#60;p&#62;anydesk  1 763 954 787&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_72 \n\n Chamado: Descrição\n\n Título : sistema sap não fica com o acesso\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 08:24\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : sistema sap não fica com o acesso\n2) E-MAIL : lorenalarissa88@gmail.com\n3) TELEFONE : 81 9402-7371\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nnão consigo acessar o sistema\n\nanydesk  1 763 954 787\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-72/new@oswintech.ddns.net','','mailing','new'),
(746,'Ticket',72,4,2,0,2,'2025-01-30 11:24:45','2025-02-14 14:40:13',NULL,'[GLPI #0000072] Novo chamado sistema sap não fica com o acesso','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000072] Novo chamado sistema sap n&#38;atilde;o fica com o acesso&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_72\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_72&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:sistema sap n&#38;atilde;o fica com o acesso &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:30-01-2025 08:24 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;sistema sap não fica com o acesso&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;lorenalarissa88@gmail.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62; 81 9402-7371&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;não consigo acessar o sistema&#60;/p&#62;\n&#60;p&#62;anydesk  1 763 954 787&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_72 \n\n Chamado: Descrição\n\n Título : sistema sap não fica com o acesso\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 08:24\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : sistema sap não fica com o acesso\n2) E-MAIL : lorenalarissa88@gmail.com\n3) TELEFONE : 81 9402-7371\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nnão consigo acessar o sistema\n\nanydesk  1 763 954 787\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-72/new@oswintech.ddns.net','','mailing','new'),
(747,'Ticket',72,4,2,1,0,'2025-01-30 11:45:58','2025-01-30 11:45:58','2025-01-30 17:55:56','[GLPI #0000072] Novo acompanhamento sistema sap não fica com o acesso',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_72 \n\n Chamado: Descrição\n\n Título : sistema sap não fica com o acesso\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 08:24\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - lorenalarissa88@gmail.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : sistema sap não fica com o acesso\n2) E-MAIL : lorenalarissa88@gmail.com\n3) TELEFONE : 81 9402-7371\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nnão consigo acessar o sistema\n\nanydesk  1 763 954 787\n \n\n\n[30-01-2025 08:45]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nIrei realizar o acesso. \nData de abertura 30-01-2025 08:45\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(748,'Ticket',72,4,2,1,0,'2025-01-30 11:45:58','2025-01-30 11:45:58','2025-01-30 15:37:38','[GLPI #0000072] Novo acompanhamento sistema sap não fica com o acesso',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_72 \n\n Chamado: Descrição\n\n Título : sistema sap não fica com o acesso\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 08:24\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - lorenalarissa88@gmail.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : sistema sap não fica com o acesso\n2) E-MAIL : lorenalarissa88@gmail.com\n3) TELEFONE : 81 9402-7371\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nnão consigo acessar o sistema\n\nanydesk  1 763 954 787\n \n\n\n[30-01-2025 08:45]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nIrei realizar o acesso. \nData de abertura 30-01-2025 08:45\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(749,'Ticket',72,4,2,1,0,'2025-01-30 11:45:58','2025-01-30 11:45:58','2025-01-30 15:49:49','[GLPI #0000072] Novo acompanhamento sistema sap não fica com o acesso',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_72 \n\n Chamado: Descrição\n\n Título : sistema sap não fica com o acesso\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 08:24\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - lorenalarissa88@gmail.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : sistema sap não fica com o acesso\n2) E-MAIL : lorenalarissa88@gmail.com\n3) TELEFONE : 81 9402-7371\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nnão consigo acessar o sistema\n\nanydesk  1 763 954 787\n \n\n\n[30-01-2025 08:45]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nIrei realizar o acesso. \nData de abertura 30-01-2025 08:45\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(750,'Ticket',72,4,2,1,0,'2025-01-30 11:45:58','2025-01-30 11:45:58','2025-01-30 20:33:10','[GLPI #0000072] Novo acompanhamento sistema sap não fica com o acesso',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_72 \n\n Chamado: Descrição\n\n Título : sistema sap não fica com o acesso\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 08:24\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - lorenalarissa88@gmail.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : sistema sap não fica com o acesso\n2) E-MAIL : lorenalarissa88@gmail.com\n3) TELEFONE : 81 9402-7371\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nnão consigo acessar o sistema\n\nanydesk  1 763 954 787\n \n\n\n[30-01-2025 08:45]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nIrei realizar o acesso. \nData de abertura 30-01-2025 08:45\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(751,'Ticket',72,4,2,0,2,'2025-01-30 11:45:58','2025-02-14 14:40:13',NULL,'[GLPI #0000072] Novo acompanhamento sistema sap não fica com o acesso','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000072] Novo acompanhamento sistema sap n&#38;atilde;o fica com o acesso&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_72\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_72&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:sistema sap n&#38;atilde;o fica com o acesso &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:30-01-2025 08:24 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- lorenalarissa88@gmail.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;sistema sap não fica com o acesso&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;lorenalarissa88@gmail.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62; 81 9402-7371&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;não consigo acessar o sistema&#60;/p&#62;\n&#60;p&#62;anydesk  1 763 954 787&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 08:45]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Irei realizar o acesso. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 08:45&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_72 \n\n Chamado: Descrição\n\n Título : sistema sap não fica com o acesso\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 08:24\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - lorenalarissa88@gmail.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : sistema sap não fica com o acesso\n2) E-MAIL : lorenalarissa88@gmail.com\n3) TELEFONE : 81 9402-7371\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nnão consigo acessar o sistema\n\nanydesk  1 763 954 787\n \n\n\n[30-01-2025 08:45]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nIrei realizar o acesso. \nData de abertura 30-01-2025 08:45\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-72/add_followup.1738237559.1816905631@oswintech.ddns.net','','mailing','add_followup'),
(752,'Ticket',72,4,2,0,2,'2025-01-30 11:45:58','2025-02-14 14:40:13',NULL,'[GLPI #0000072] Novo acompanhamento sistema sap não fica com o acesso','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000072] Novo acompanhamento sistema sap n&#38;atilde;o fica com o acesso&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_72\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_72&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:sistema sap n&#38;atilde;o fica com o acesso &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:30-01-2025 08:24 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- lorenalarissa88@gmail.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;sistema sap não fica com o acesso&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;lorenalarissa88@gmail.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62; 81 9402-7371&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;não consigo acessar o sistema&#60;/p&#62;\n&#60;p&#62;anydesk  1 763 954 787&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 08:45]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Irei realizar o acesso. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 08:45&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_72 \n\n Chamado: Descrição\n\n Título : sistema sap não fica com o acesso\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 08:24\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - lorenalarissa88@gmail.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : sistema sap não fica com o acesso\n2) E-MAIL : lorenalarissa88@gmail.com\n3) TELEFONE : 81 9402-7371\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nnão consigo acessar o sistema\n\nanydesk  1 763 954 787\n \n\n\n[30-01-2025 08:45]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nIrei realizar o acesso. \nData de abertura 30-01-2025 08:45\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-72/add_followup.1738237559.562056202@oswintech.ddns.net','','mailing','add_followup'),
(753,'Ticket',72,4,2,0,2,'2025-01-30 11:45:58','2025-02-14 14:40:13',NULL,'[GLPI #0000072] Novo acompanhamento sistema sap não fica com o acesso','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000072] Novo acompanhamento sistema sap n&#38;atilde;o fica com o acesso&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_72\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_72&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:sistema sap n&#38;atilde;o fica com o acesso &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:30-01-2025 08:24 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- lorenalarissa88@gmail.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;sistema sap não fica com o acesso&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;lorenalarissa88@gmail.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62; 81 9402-7371&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;não consigo acessar o sistema&#60;/p&#62;\n&#60;p&#62;anydesk  1 763 954 787&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 08:45]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Irei realizar o acesso. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 08:45&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_72 \n\n Chamado: Descrição\n\n Título : sistema sap não fica com o acesso\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 08:24\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - lorenalarissa88@gmail.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : sistema sap não fica com o acesso\n2) E-MAIL : lorenalarissa88@gmail.com\n3) TELEFONE : 81 9402-7371\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nnão consigo acessar o sistema\n\nanydesk  1 763 954 787\n \n\n\n[30-01-2025 08:45]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nIrei realizar o acesso. \nData de abertura 30-01-2025 08:45\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-72/add_followup.1738237559.1703716819@oswintech.ddns.net','','mailing','add_followup'),
(754,'Ticket',72,4,2,0,2,'2025-01-30 11:45:58','2025-02-14 14:40:13',NULL,'[GLPI #0000072] Novo acompanhamento sistema sap não fica com o acesso','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000072] Novo acompanhamento sistema sap n&#38;atilde;o fica com o acesso&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_72\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_72&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:sistema sap n&#38;atilde;o fica com o acesso &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:30-01-2025 08:24 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- lorenalarissa88@gmail.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;sistema sap não fica com o acesso&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;lorenalarissa88@gmail.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62; 81 9402-7371&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;não consigo acessar o sistema&#60;/p&#62;\n&#60;p&#62;anydesk  1 763 954 787&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 08:45]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Irei realizar o acesso. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 08:45&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_72 \n\n Chamado: Descrição\n\n Título : sistema sap não fica com o acesso\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 08:24\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - lorenalarissa88@gmail.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : sistema sap não fica com o acesso\n2) E-MAIL : lorenalarissa88@gmail.com\n3) TELEFONE : 81 9402-7371\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nnão consigo acessar o sistema\n\nanydesk  1 763 954 787\n \n\n\n[30-01-2025 08:45]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nIrei realizar o acesso. \nData de abertura 30-01-2025 08:45\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-72/add_followup.1738237559.1954292713@oswintech.ddns.net','','mailing','add_followup'),
(755,'Ticket',72,4,2,1,0,'2025-01-30 11:46:08','2025-01-30 11:46:08','2025-01-30 17:55:56','[GLPI #0000072] Atualização de um chamado sistema sap não fica com o acesso',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_72 \n\n Chamado: Descrição\n\n Título : sistema sap não fica com o acesso\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 08:24\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - lorenalarissa88@gmail.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : sistema sap não fica com o acesso\n2) E-MAIL : lorenalarissa88@gmail.com\n3) TELEFONE : 81 9402-7371\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nnão consigo acessar o sistema\n\nanydesk  1 763 954 787\n \n\n\n[30-01-2025 08:45]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nIrei realizar o acesso. \nData de abertura 30-01-2025 08:45\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','update'),
(756,'Ticket',72,4,2,0,2,'2025-01-30 11:46:08','2025-02-14 14:40:13',NULL,'[GLPI #0000072] Atualização de um chamado sistema sap não fica com o acesso','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000072] Atualiza&#38;ccedil;&#38;atilde;o de um chamado sistema sap n&#38;atilde;o fica com o acesso&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_72\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_72&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:sistema sap n&#38;atilde;o fica com o acesso &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:30-01-2025 08:24 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- lorenalarissa88@gmail.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;sistema sap não fica com o acesso&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;lorenalarissa88@gmail.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62; 81 9402-7371&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;não consigo acessar o sistema&#60;/p&#62;\n&#60;p&#62;anydesk  1 763 954 787&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 08:45]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Irei realizar o acesso. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 08:45&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_72 \n\n Chamado: Descrição\n\n Título : sistema sap não fica com o acesso\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 08:24\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - lorenalarissa88@gmail.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : sistema sap não fica com o acesso\n2) E-MAIL : lorenalarissa88@gmail.com\n3) TELEFONE : 81 9402-7371\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nnão consigo acessar o sistema\n\nanydesk  1 763 954 787\n \n\n\n[30-01-2025 08:45]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nIrei realizar o acesso. \nData de abertura 30-01-2025 08:45\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-72/update.1738237569.1813365219@oswintech.ddns.net','','mailing','update'),
(757,'Ticket',72,4,2,0,2,'2025-01-30 11:46:08','2025-02-14 14:40:13',NULL,'[GLPI #0000072] Atualização de um chamado sistema sap não fica com o acesso','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000072] Atualiza&#38;ccedil;&#38;atilde;o de um chamado sistema sap n&#38;atilde;o fica com o acesso&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_72\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_72&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:sistema sap n&#38;atilde;o fica com o acesso &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:30-01-2025 08:24 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- lorenalarissa88@gmail.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;sistema sap não fica com o acesso&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;lorenalarissa88@gmail.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62; 81 9402-7371&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;não consigo acessar o sistema&#60;/p&#62;\n&#60;p&#62;anydesk  1 763 954 787&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 08:45]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Irei realizar o acesso. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 08:45&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_72 \n\n Chamado: Descrição\n\n Título : sistema sap não fica com o acesso\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 08:24\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - lorenalarissa88@gmail.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : sistema sap não fica com o acesso\n2) E-MAIL : lorenalarissa88@gmail.com\n3) TELEFONE : 81 9402-7371\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nnão consigo acessar o sistema\n\nanydesk  1 763 954 787\n \n\n\n[30-01-2025 08:45]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nIrei realizar o acesso. \nData de abertura 30-01-2025 08:45\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-72/update.1738237569.1867805911@oswintech.ddns.net','','mailing','update'),
(758,'Ticket',72,4,2,1,0,'2025-01-30 11:51:01','2025-01-30 11:51:01','2025-01-30 17:55:57','[GLPI #0000072] Novo acompanhamento sistema sap não fica com o acesso',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_72 \n\n Chamado: Descrição\n\n Título : sistema sap não fica com o acesso\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 08:24\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - lorenalarissa88@gmail.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : sistema sap não fica com o acesso\n2) E-MAIL : lorenalarissa88@gmail.com\n3) TELEFONE : 81 9402-7371\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nnão consigo acessar o sistema\n\nanydesk  1 763 954 787\n \n\n\n[30-01-2025 08:51]\nAutor Alexsandro Cruz\nDescrição Realizado a configuração do SAP e testado junto ao usuário. \nData de abertura 30-01-2025 08:51\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 08:45]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nIrei realizar o acesso. \nData de abertura 30-01-2025 08:45\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(759,'Ticket',72,4,2,1,0,'2025-01-30 11:51:01','2025-01-30 11:51:01','2025-01-30 15:37:38','[GLPI #0000072] Novo acompanhamento sistema sap não fica com o acesso',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_72 \n\n Chamado: Descrição\n\n Título : sistema sap não fica com o acesso\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 08:24\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - lorenalarissa88@gmail.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : sistema sap não fica com o acesso\n2) E-MAIL : lorenalarissa88@gmail.com\n3) TELEFONE : 81 9402-7371\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nnão consigo acessar o sistema\n\nanydesk  1 763 954 787\n \n\n\n[30-01-2025 08:51]\nAutor Alexsandro Cruz\nDescrição Realizado a configuração do SAP e testado junto ao usuário. \nData de abertura 30-01-2025 08:51\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 08:45]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nIrei realizar o acesso. \nData de abertura 30-01-2025 08:45\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(760,'Ticket',72,4,2,1,0,'2025-01-30 11:51:01','2025-01-30 11:51:01','2025-01-30 15:49:49','[GLPI #0000072] Novo acompanhamento sistema sap não fica com o acesso',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_72 \n\n Chamado: Descrição\n\n Título : sistema sap não fica com o acesso\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 08:24\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - lorenalarissa88@gmail.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : sistema sap não fica com o acesso\n2) E-MAIL : lorenalarissa88@gmail.com\n3) TELEFONE : 81 9402-7371\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nnão consigo acessar o sistema\n\nanydesk  1 763 954 787\n \n\n\n[30-01-2025 08:51]\nAutor Alexsandro Cruz\nDescrição Realizado a configuração do SAP e testado junto ao usuário. \nData de abertura 30-01-2025 08:51\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 08:45]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nIrei realizar o acesso. \nData de abertura 30-01-2025 08:45\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(761,'Ticket',72,4,2,1,0,'2025-01-30 11:51:01','2025-01-30 11:51:01','2025-01-30 20:33:10','[GLPI #0000072] Novo acompanhamento sistema sap não fica com o acesso',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_72 \n\n Chamado: Descrição\n\n Título : sistema sap não fica com o acesso\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 08:24\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - lorenalarissa88@gmail.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : sistema sap não fica com o acesso\n2) E-MAIL : lorenalarissa88@gmail.com\n3) TELEFONE : 81 9402-7371\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nnão consigo acessar o sistema\n\nanydesk  1 763 954 787\n \n\n\n[30-01-2025 08:51]\nAutor Alexsandro Cruz\nDescrição Realizado a configuração do SAP e testado junto ao usuário. \nData de abertura 30-01-2025 08:51\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 08:45]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nIrei realizar o acesso. \nData de abertura 30-01-2025 08:45\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(762,'Ticket',72,4,2,0,2,'2025-01-30 11:51:01','2025-02-14 14:40:13',NULL,'[GLPI #0000072] Novo acompanhamento sistema sap não fica com o acesso','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000072] Novo acompanhamento sistema sap n&#38;atilde;o fica com o acesso&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_72\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_72&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:sistema sap n&#38;atilde;o fica com o acesso &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:30-01-2025 08:24 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- lorenalarissa88@gmail.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;sistema sap não fica com o acesso&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;lorenalarissa88@gmail.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62; 81 9402-7371&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;não consigo acessar o sistema&#60;/p&#62;\n&#60;p&#62;anydesk  1 763 954 787&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 08:51]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Realizado a configuração do SAP e testado junto ao usuário. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 08:51&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 08:45]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Irei realizar o acesso. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 08:45&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_72 \n\n Chamado: Descrição\n\n Título : sistema sap não fica com o acesso\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 08:24\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - lorenalarissa88@gmail.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : sistema sap não fica com o acesso\n2) E-MAIL : lorenalarissa88@gmail.com\n3) TELEFONE : 81 9402-7371\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nnão consigo acessar o sistema\n\nanydesk  1 763 954 787\n \n\n\n[30-01-2025 08:51]\nAutor Alexsandro Cruz\nDescrição Realizado a configuração do SAP e testado junto ao usuário. \nData de abertura 30-01-2025 08:51\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 08:45]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nIrei realizar o acesso. \nData de abertura 30-01-2025 08:45\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-72/add_followup.1738237861.469641854@oswintech.ddns.net','','mailing','add_followup'),
(763,'Ticket',72,4,2,0,2,'2025-01-30 11:51:01','2025-02-17 13:29:16',NULL,'[GLPI #0000072] Novo acompanhamento sistema sap não fica com o acesso','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000072] Novo acompanhamento sistema sap n&#38;atilde;o fica com o acesso&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_72\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_72&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:sistema sap n&#38;atilde;o fica com o acesso &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:30-01-2025 08:24 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- lorenalarissa88@gmail.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;sistema sap não fica com o acesso&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;lorenalarissa88@gmail.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62; 81 9402-7371&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;não consigo acessar o sistema&#60;/p&#62;\n&#60;p&#62;anydesk  1 763 954 787&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 08:51]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Realizado a configuração do SAP e testado junto ao usuário. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 08:51&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 08:45]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Irei realizar o acesso. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 08:45&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_72 \n\n Chamado: Descrição\n\n Título : sistema sap não fica com o acesso\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 08:24\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - lorenalarissa88@gmail.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : sistema sap não fica com o acesso\n2) E-MAIL : lorenalarissa88@gmail.com\n3) TELEFONE : 81 9402-7371\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nnão consigo acessar o sistema\n\nanydesk  1 763 954 787\n \n\n\n[30-01-2025 08:51]\nAutor Alexsandro Cruz\nDescrição Realizado a configuração do SAP e testado junto ao usuário. \nData de abertura 30-01-2025 08:51\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 08:45]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nIrei realizar o acesso. \nData de abertura 30-01-2025 08:45\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-72/add_followup.1738237861.2062975393@oswintech.ddns.net','','mailing','add_followup');
INSERT INTO `glpi_queuednotifications` VALUES
(764,'Ticket',72,4,2,0,2,'2025-01-30 11:51:01','2025-02-17 13:29:16',NULL,'[GLPI #0000072] Novo acompanhamento sistema sap não fica com o acesso','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000072] Novo acompanhamento sistema sap n&#38;atilde;o fica com o acesso&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_72\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_72&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:sistema sap n&#38;atilde;o fica com o acesso &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:30-01-2025 08:24 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- lorenalarissa88@gmail.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;sistema sap não fica com o acesso&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;lorenalarissa88@gmail.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62; 81 9402-7371&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;não consigo acessar o sistema&#60;/p&#62;\n&#60;p&#62;anydesk  1 763 954 787&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 08:51]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Realizado a configuração do SAP e testado junto ao usuário. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 08:51&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 08:45]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Irei realizar o acesso. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 08:45&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_72 \n\n Chamado: Descrição\n\n Título : sistema sap não fica com o acesso\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 08:24\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - lorenalarissa88@gmail.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : sistema sap não fica com o acesso\n2) E-MAIL : lorenalarissa88@gmail.com\n3) TELEFONE : 81 9402-7371\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nnão consigo acessar o sistema\n\nanydesk  1 763 954 787\n \n\n\n[30-01-2025 08:51]\nAutor Alexsandro Cruz\nDescrição Realizado a configuração do SAP e testado junto ao usuário. \nData de abertura 30-01-2025 08:51\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 08:45]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nIrei realizar o acesso. \nData de abertura 30-01-2025 08:45\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-72/add_followup.1738237861.1697703941@oswintech.ddns.net','','mailing','add_followup'),
(765,'Ticket',72,4,2,0,2,'2025-01-30 11:51:01','2025-02-17 13:29:16',NULL,'[GLPI #0000072] Novo acompanhamento sistema sap não fica com o acesso','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000072] Novo acompanhamento sistema sap n&#38;atilde;o fica com o acesso&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_72\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_72&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:sistema sap n&#38;atilde;o fica com o acesso &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:30-01-2025 08:24 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- lorenalarissa88@gmail.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;sistema sap não fica com o acesso&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;lorenalarissa88@gmail.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62; 81 9402-7371&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;não consigo acessar o sistema&#60;/p&#62;\n&#60;p&#62;anydesk  1 763 954 787&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 08:51]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Realizado a configuração do SAP e testado junto ao usuário. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 08:51&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 08:45]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Irei realizar o acesso. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 08:45&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_72 \n\n Chamado: Descrição\n\n Título : sistema sap não fica com o acesso\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 08:24\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - lorenalarissa88@gmail.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : sistema sap não fica com o acesso\n2) E-MAIL : lorenalarissa88@gmail.com\n3) TELEFONE : 81 9402-7371\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nnão consigo acessar o sistema\n\nanydesk  1 763 954 787\n \n\n\n[30-01-2025 08:51]\nAutor Alexsandro Cruz\nDescrição Realizado a configuração do SAP e testado junto ao usuário. \nData de abertura 30-01-2025 08:51\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 08:45]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nIrei realizar o acesso. \nData de abertura 30-01-2025 08:45\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-72/add_followup.1738237862.1898719595@oswintech.ddns.net','','mailing','add_followup'),
(766,'Ticket',72,4,2,0,2,'2025-01-30 11:51:10','2025-02-17 13:29:16',NULL,'[GLPI #0000072] Encerramento do chamado sistema sap não fica com o acesso','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000072] Encerramento do chamado sistema sap n&#38;atilde;o fica com o acesso&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_72\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_72&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:sistema sap n&#38;atilde;o fica com o acesso &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:30-01-2025 08:24 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:30-01-2025 08:51 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- lorenalarissa88@gmail.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;sistema sap não fica com o acesso&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;lorenalarissa88@gmail.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62; 81 9402-7371&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;não consigo acessar o sistema&#60;/p&#62;\n&#60;p&#62;anydesk  1 763 954 787&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 30-01-2025 08:51&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 08:51]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Realizado a configuração do SAP e testado junto ao usuário. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 08:51&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 08:45]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Irei realizar o acesso. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 08:45&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_72 \n\n Chamado: Descrição\n\n Título : sistema sap não fica com o acesso\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 08:24\n Data de fechamento : 30-01-2025 08:51\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - lorenalarissa88@gmail.com\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : sistema sap não fica com o acesso\n2) E-MAIL : lorenalarissa88@gmail.com\n3) TELEFONE : 81 9402-7371\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nnão consigo acessar o sistema\n\nanydesk  1 763 954 787\n \n\n Data da solução : 30-01-2025 08:51\n Tipo de solução : \n Solução : \n \n\n\n[30-01-2025 08:51]\nAutor Alexsandro Cruz\nDescrição Realizado a configuração do SAP e testado junto ao usuário. \nData de abertura 30-01-2025 08:51\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 08:45]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nIrei realizar o acesso. \nData de abertura 30-01-2025 08:45\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-72/closed.1738237870.112008104@oswintech.ddns.net','','mailing','closed'),
(767,'Ticket',72,4,2,0,2,'2025-01-30 11:51:10','2025-02-17 13:29:16',NULL,'[GLPI #0000072] Encerramento do chamado sistema sap não fica com o acesso','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000072] Encerramento do chamado sistema sap n&#38;atilde;o fica com o acesso&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_72\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_72&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:sistema sap n&#38;atilde;o fica com o acesso &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:30-01-2025 08:24 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:30-01-2025 08:51 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- lorenalarissa88@gmail.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;sistema sap não fica com o acesso&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;lorenalarissa88@gmail.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62; 81 9402-7371&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;não consigo acessar o sistema&#60;/p&#62;\n&#60;p&#62;anydesk  1 763 954 787&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 30-01-2025 08:51&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 08:51]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Realizado a configuração do SAP e testado junto ao usuário. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 08:51&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 08:45]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Irei realizar o acesso. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 08:45&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_72 \n\n Chamado: Descrição\n\n Título : sistema sap não fica com o acesso\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 08:24\n Data de fechamento : 30-01-2025 08:51\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - lorenalarissa88@gmail.com\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : sistema sap não fica com o acesso\n2) E-MAIL : lorenalarissa88@gmail.com\n3) TELEFONE : 81 9402-7371\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nnão consigo acessar o sistema\n\nanydesk  1 763 954 787\n \n\n Data da solução : 30-01-2025 08:51\n Tipo de solução : \n Solução : \n \n\n\n[30-01-2025 08:51]\nAutor Alexsandro Cruz\nDescrição Realizado a configuração do SAP e testado junto ao usuário. \nData de abertura 30-01-2025 08:51\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 08:45]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nIrei realizar o acesso. \nData de abertura 30-01-2025 08:45\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-72/closed.1738237870.531645970@oswintech.ddns.net','','mailing','closed'),
(768,'PluginFormcreatorFormAnswer',37,29,2,0,2,'2025-01-30 13:44:22','2025-02-18 18:15:34',NULL,'[GLPI] Sua requisição foi salva','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI] Sua requisi&#38;ccedil;&#38;atilde;o foi salva&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;p&#62;Olá,&#60;br /&#62;Sua requisição do GLPI foi salva com sucesso com o número 37 e transmitido para a equipe de helpdesk.&#60;br /&#62;Você pode ver suas respostas no seguinte link:&#60;br /&#62;https://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=37&#60;/p&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;','Olá,\nSua requisição do GLPI foi salva com sucesso com o número 37 e transmitido para a equipe de helpdesk.\nVocê pode ver suas respostas no seguinte link:\nhttps://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=37\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-PluginFormcreatorFormAnswer-37/plugin_formcreator_form_created.1738244662.159579007@oswintech.ddns.net','','mailing','plugin_formcreator_form_created'),
(769,'Ticket',73,4,2,1,0,'2025-01-30 13:44:22','2025-01-30 13:44:22','2025-01-30 17:55:57','[GLPI #0000073] Novo chamado PROBLEMA AO ACESSAR SAP / CITRIX',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_73 \n\n Chamado: Descrição\n\n Título : PROBLEMA AO ACESSAR SAP / CITRIX\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 10:44\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PROBLEMA AO ACESSAR SAP / CITRIX\n2) E-MAIL : lanna1457@gmail.com\n3) TELEFONE : 83999075161\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nNÃO CONSIGO ACESSAR O SAP NEM O CITRIX - PORÉM UMA COLEGA CONSEGUIU ACESSAR PELO MESMO LINK E MESMA SENHA [ec3ac8cc-b2d8e96f-679b81f077f908.68527211] [https://oswintech.ddns.net/front/document.send.php?docid=16&#38;itemtype=Ticket&#38;items_id=73]\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(770,'Ticket',73,4,2,1,0,'2025-01-30 13:44:22','2025-01-30 13:44:22','2025-01-30 15:37:38','[GLPI #0000073] Novo chamado PROBLEMA AO ACESSAR SAP / CITRIX',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_73 \n\n Chamado: Descrição\n\n Título : PROBLEMA AO ACESSAR SAP / CITRIX\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 10:44\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PROBLEMA AO ACESSAR SAP / CITRIX\n2) E-MAIL : lanna1457@gmail.com\n3) TELEFONE : 83999075161\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nNÃO CONSIGO ACESSAR O SAP NEM O CITRIX - PORÉM UMA COLEGA CONSEGUIU ACESSAR PELO MESMO LINK E MESMA SENHA [ec3ac8cc-b2d8e96f-679b81f077f908.68527211] [https://oswintech.ddns.net/front/document.send.php?docid=16&#38;itemtype=Ticket&#38;items_id=73]\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(771,'Ticket',73,4,2,1,0,'2025-01-30 13:44:22','2025-01-30 13:44:22','2025-01-30 15:49:49','[GLPI #0000073] Novo chamado PROBLEMA AO ACESSAR SAP / CITRIX',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_73 \n\n Chamado: Descrição\n\n Título : PROBLEMA AO ACESSAR SAP / CITRIX\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 10:44\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PROBLEMA AO ACESSAR SAP / CITRIX\n2) E-MAIL : lanna1457@gmail.com\n3) TELEFONE : 83999075161\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nNÃO CONSIGO ACESSAR O SAP NEM O CITRIX - PORÉM UMA COLEGA CONSEGUIU ACESSAR PELO MESMO LINK E MESMA SENHA [ec3ac8cc-b2d8e96f-679b81f077f908.68527211] [https://oswintech.ddns.net/front/document.send.php?docid=16&#38;itemtype=Ticket&#38;items_id=73]\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(772,'Ticket',73,4,2,1,0,'2025-01-30 13:44:22','2025-01-30 13:44:22','2025-01-30 20:33:10','[GLPI #0000073] Novo chamado PROBLEMA AO ACESSAR SAP / CITRIX',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_73 \n\n Chamado: Descrição\n\n Título : PROBLEMA AO ACESSAR SAP / CITRIX\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 10:44\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PROBLEMA AO ACESSAR SAP / CITRIX\n2) E-MAIL : lanna1457@gmail.com\n3) TELEFONE : 83999075161\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nNÃO CONSIGO ACESSAR O SAP NEM O CITRIX - PORÉM UMA COLEGA CONSEGUIU ACESSAR PELO MESMO LINK E MESMA SENHA [ec3ac8cc-b2d8e96f-679b81f077f908.68527211] [https://oswintech.ddns.net/front/document.send.php?docid=16&#38;itemtype=Ticket&#38;items_id=73]\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(773,'Ticket',73,4,2,0,2,'2025-01-30 13:44:22','2025-02-18 18:15:34',NULL,'[GLPI #0000073] Novo chamado PROBLEMA AO ACESSAR SAP / CITRIX','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000073] Novo chamado PROBLEMA AO ACESSAR SAP / CITRIX&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_73\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_73&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PROBLEMA AO ACESSAR SAP / CITRIX &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:30-01-2025 10:44 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PROBLEMA AO ACESSAR SAP / CITRIX&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;lanna1457@gmail.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83999075161&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;NÃO CONSIGO ACESSAR O SAP NEM O CITRIX - PORÉM UMA COLEGA CONSEGUIU ACESSAR PELO MESMO LINK E MESMA SENHA &#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=16&#38;amp;itemtype=Ticket&#38;amp;items_id=73\" target=\"_blank\"&#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-679b81f077f908.68527211\" width=\"974\" src=\"/front/document.send.php?docid=16&#38;amp;itemtype=Ticket&#38;amp;items_id=73\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_73 \n\n Chamado: Descrição\n\n Título : PROBLEMA AO ACESSAR SAP / CITRIX\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 10:44\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PROBLEMA AO ACESSAR SAP / CITRIX\n2) E-MAIL : lanna1457@gmail.com\n3) TELEFONE : 83999075161\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nNÃO CONSIGO ACESSAR O SAP NEM O CITRIX - PORÉM UMA COLEGA CONSEGUIU ACESSAR PELO MESMO LINK E MESMA SENHA [ec3ac8cc-b2d8e96f-679b81f077f908.68527211] [https://oswintech.ddns.net/front/document.send.php?docid=16&#38;itemtype=Ticket&#38;items_id=73]\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-73/new@oswintech.ddns.net','','mailing','new'),
(774,'Ticket',73,4,2,0,2,'2025-01-30 13:44:22','2025-02-18 18:15:34',NULL,'[GLPI #0000073] Novo chamado PROBLEMA AO ACESSAR SAP / CITRIX','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000073] Novo chamado PROBLEMA AO ACESSAR SAP / CITRIX&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_73\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_73&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PROBLEMA AO ACESSAR SAP / CITRIX &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:30-01-2025 10:44 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PROBLEMA AO ACESSAR SAP / CITRIX&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;lanna1457@gmail.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83999075161&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;NÃO CONSIGO ACESSAR O SAP NEM O CITRIX - PORÉM UMA COLEGA CONSEGUIU ACESSAR PELO MESMO LINK E MESMA SENHA &#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=16&#38;amp;itemtype=Ticket&#38;amp;items_id=73\" target=\"_blank\"&#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-679b81f077f908.68527211\" width=\"974\" src=\"/front/document.send.php?docid=16&#38;amp;itemtype=Ticket&#38;amp;items_id=73\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_73 \n\n Chamado: Descrição\n\n Título : PROBLEMA AO ACESSAR SAP / CITRIX\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 10:44\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PROBLEMA AO ACESSAR SAP / CITRIX\n2) E-MAIL : lanna1457@gmail.com\n3) TELEFONE : 83999075161\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nNÃO CONSIGO ACESSAR O SAP NEM O CITRIX - PORÉM UMA COLEGA CONSEGUIU ACESSAR PELO MESMO LINK E MESMA SENHA [ec3ac8cc-b2d8e96f-679b81f077f908.68527211] [https://oswintech.ddns.net/front/document.send.php?docid=16&#38;itemtype=Ticket&#38;items_id=73]\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-73/new@oswintech.ddns.net','','mailing','new'),
(775,'Ticket',73,4,2,0,2,'2025-01-30 13:44:22','2025-02-18 18:15:34',NULL,'[GLPI #0000073] Novo chamado PROBLEMA AO ACESSAR SAP / CITRIX','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000073] Novo chamado PROBLEMA AO ACESSAR SAP / CITRIX&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_73\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_73&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PROBLEMA AO ACESSAR SAP / CITRIX &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:30-01-2025 10:44 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PROBLEMA AO ACESSAR SAP / CITRIX&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;lanna1457@gmail.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83999075161&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;NÃO CONSIGO ACESSAR O SAP NEM O CITRIX - PORÉM UMA COLEGA CONSEGUIU ACESSAR PELO MESMO LINK E MESMA SENHA &#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=16&#38;amp;itemtype=Ticket&#38;amp;items_id=73\" target=\"_blank\"&#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-679b81f077f908.68527211\" width=\"974\" src=\"/front/document.send.php?docid=16&#38;amp;itemtype=Ticket&#38;amp;items_id=73\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_73 \n\n Chamado: Descrição\n\n Título : PROBLEMA AO ACESSAR SAP / CITRIX\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 10:44\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PROBLEMA AO ACESSAR SAP / CITRIX\n2) E-MAIL : lanna1457@gmail.com\n3) TELEFONE : 83999075161\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nNÃO CONSIGO ACESSAR O SAP NEM O CITRIX - PORÉM UMA COLEGA CONSEGUIU ACESSAR PELO MESMO LINK E MESMA SENHA [ec3ac8cc-b2d8e96f-679b81f077f908.68527211] [https://oswintech.ddns.net/front/document.send.php?docid=16&#38;itemtype=Ticket&#38;items_id=73]\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-73/new@oswintech.ddns.net','','mailing','new'),
(776,'Ticket',73,4,2,0,2,'2025-01-30 13:44:22','2025-02-18 18:15:34',NULL,'[GLPI #0000073] Novo chamado PROBLEMA AO ACESSAR SAP / CITRIX','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000073] Novo chamado PROBLEMA AO ACESSAR SAP / CITRIX&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_73\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_73&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PROBLEMA AO ACESSAR SAP / CITRIX &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:30-01-2025 10:44 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PROBLEMA AO ACESSAR SAP / CITRIX&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;lanna1457@gmail.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83999075161&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;NÃO CONSIGO ACESSAR O SAP NEM O CITRIX - PORÉM UMA COLEGA CONSEGUIU ACESSAR PELO MESMO LINK E MESMA SENHA &#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=16&#38;amp;itemtype=Ticket&#38;amp;items_id=73\" target=\"_blank\"&#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-679b81f077f908.68527211\" width=\"974\" src=\"/front/document.send.php?docid=16&#38;amp;itemtype=Ticket&#38;amp;items_id=73\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_73 \n\n Chamado: Descrição\n\n Título : PROBLEMA AO ACESSAR SAP / CITRIX\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 10:44\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PROBLEMA AO ACESSAR SAP / CITRIX\n2) E-MAIL : lanna1457@gmail.com\n3) TELEFONE : 83999075161\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nNÃO CONSIGO ACESSAR O SAP NEM O CITRIX - PORÉM UMA COLEGA CONSEGUIU ACESSAR PELO MESMO LINK E MESMA SENHA [ec3ac8cc-b2d8e96f-679b81f077f908.68527211] [https://oswintech.ddns.net/front/document.send.php?docid=16&#38;itemtype=Ticket&#38;items_id=73]\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-73/new@oswintech.ddns.net','','mailing','new'),
(777,'Ticket',73,4,2,1,0,'2025-01-30 15:36:30','2025-01-30 15:36:30','2025-01-30 17:55:57','[GLPI #0000073] Novo acompanhamento PROBLEMA AO ACESSAR SAP / CITRIX',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_73 \n\n Chamado: Descrição\n\n Título : PROBLEMA AO ACESSAR SAP / CITRIX\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 10:44\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - lanna1457@gmail.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PROBLEMA AO ACESSAR SAP / CITRIX\n2) E-MAIL : lanna1457@gmail.com\n3) TELEFONE : 83999075161\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nNÃO CONSIGO ACESSAR O SAP NEM O CITRIX - PORÉM UMA COLEGA CONSEGUIU ACESSAR PELO MESMO LINK E MESMA SENHA [ec3ac8cc-b2d8e96f-679b81f077f908.68527211] [https://oswintech.ddns.net/front/document.send.php?docid=16&#38;itemtype=Ticket&#38;items_id=73]\n \n\n\n[30-01-2025 12:36]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nPreciso do anydesk para acessar e analisar. \nData de abertura 30-01-2025 12:36\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(778,'Ticket',73,4,2,1,0,'2025-01-30 15:36:30','2025-01-30 15:36:30','2025-01-30 15:37:38','[GLPI #0000073] Novo acompanhamento PROBLEMA AO ACESSAR SAP / CITRIX',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_73 \n\n Chamado: Descrição\n\n Título : PROBLEMA AO ACESSAR SAP / CITRIX\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 10:44\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - lanna1457@gmail.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PROBLEMA AO ACESSAR SAP / CITRIX\n2) E-MAIL : lanna1457@gmail.com\n3) TELEFONE : 83999075161\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nNÃO CONSIGO ACESSAR O SAP NEM O CITRIX - PORÉM UMA COLEGA CONSEGUIU ACESSAR PELO MESMO LINK E MESMA SENHA [ec3ac8cc-b2d8e96f-679b81f077f908.68527211] [https://oswintech.ddns.net/front/document.send.php?docid=16&#38;itemtype=Ticket&#38;items_id=73]\n \n\n\n[30-01-2025 12:36]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nPreciso do anydesk para acessar e analisar. \nData de abertura 30-01-2025 12:36\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(779,'Ticket',73,4,2,1,0,'2025-01-30 15:36:30','2025-01-30 15:36:30','2025-01-30 15:49:49','[GLPI #0000073] Novo acompanhamento PROBLEMA AO ACESSAR SAP / CITRIX',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_73 \n\n Chamado: Descrição\n\n Título : PROBLEMA AO ACESSAR SAP / CITRIX\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 10:44\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - lanna1457@gmail.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PROBLEMA AO ACESSAR SAP / CITRIX\n2) E-MAIL : lanna1457@gmail.com\n3) TELEFONE : 83999075161\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nNÃO CONSIGO ACESSAR O SAP NEM O CITRIX - PORÉM UMA COLEGA CONSEGUIU ACESSAR PELO MESMO LINK E MESMA SENHA [ec3ac8cc-b2d8e96f-679b81f077f908.68527211] [https://oswintech.ddns.net/front/document.send.php?docid=16&#38;itemtype=Ticket&#38;items_id=73]\n \n\n\n[30-01-2025 12:36]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nPreciso do anydesk para acessar e analisar. \nData de abertura 30-01-2025 12:36\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(780,'Ticket',73,4,2,1,0,'2025-01-30 15:36:30','2025-01-30 15:36:30','2025-01-30 20:33:10','[GLPI #0000073] Novo acompanhamento PROBLEMA AO ACESSAR SAP / CITRIX',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_73 \n\n Chamado: Descrição\n\n Título : PROBLEMA AO ACESSAR SAP / CITRIX\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 10:44\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - lanna1457@gmail.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PROBLEMA AO ACESSAR SAP / CITRIX\n2) E-MAIL : lanna1457@gmail.com\n3) TELEFONE : 83999075161\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nNÃO CONSIGO ACESSAR O SAP NEM O CITRIX - PORÉM UMA COLEGA CONSEGUIU ACESSAR PELO MESMO LINK E MESMA SENHA [ec3ac8cc-b2d8e96f-679b81f077f908.68527211] [https://oswintech.ddns.net/front/document.send.php?docid=16&#38;itemtype=Ticket&#38;items_id=73]\n \n\n\n[30-01-2025 12:36]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nPreciso do anydesk para acessar e analisar. \nData de abertura 30-01-2025 12:36\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(781,'Ticket',73,4,2,0,2,'2025-01-30 15:36:30','2025-02-18 18:15:34',NULL,'[GLPI #0000073] Novo acompanhamento PROBLEMA AO ACESSAR SAP / CITRIX','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000073] Novo acompanhamento PROBLEMA AO ACESSAR SAP / CITRIX&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_73\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_73&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PROBLEMA AO ACESSAR SAP / CITRIX &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:30-01-2025 10:44 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- lanna1457@gmail.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PROBLEMA AO ACESSAR SAP / CITRIX&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;lanna1457@gmail.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83999075161&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;NÃO CONSIGO ACESSAR O SAP NEM O CITRIX - PORÉM UMA COLEGA CONSEGUIU ACESSAR PELO MESMO LINK E MESMA SENHA &#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=16&#38;amp;itemtype=Ticket&#38;amp;items_id=73\" target=\"_blank\"&#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-679b81f077f908.68527211\" width=\"974\" src=\"/front/document.send.php?docid=16&#38;amp;itemtype=Ticket&#38;amp;items_id=73\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 12:36]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, &#60;/p&#62;\r\n&#60;p&#62;Preciso do anydesk para acessar e analisar. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 12:36&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_73 \n\n Chamado: Descrição\n\n Título : PROBLEMA AO ACESSAR SAP / CITRIX\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 10:44\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - lanna1457@gmail.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PROBLEMA AO ACESSAR SAP / CITRIX\n2) E-MAIL : lanna1457@gmail.com\n3) TELEFONE : 83999075161\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nNÃO CONSIGO ACESSAR O SAP NEM O CITRIX - PORÉM UMA COLEGA CONSEGUIU ACESSAR PELO MESMO LINK E MESMA SENHA [ec3ac8cc-b2d8e96f-679b81f077f908.68527211] [https://oswintech.ddns.net/front/document.send.php?docid=16&#38;itemtype=Ticket&#38;items_id=73]\n \n\n\n[30-01-2025 12:36]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nPreciso do anydesk para acessar e analisar. \nData de abertura 30-01-2025 12:36\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-73/add_followup.1738251391.1028542134@oswintech.ddns.net','','mailing','add_followup'),
(782,'Ticket',73,4,2,0,2,'2025-01-30 15:36:30','2025-02-18 18:15:34',NULL,'[GLPI #0000073] Novo acompanhamento PROBLEMA AO ACESSAR SAP / CITRIX','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000073] Novo acompanhamento PROBLEMA AO ACESSAR SAP / CITRIX&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_73\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_73&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PROBLEMA AO ACESSAR SAP / CITRIX &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:30-01-2025 10:44 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- lanna1457@gmail.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PROBLEMA AO ACESSAR SAP / CITRIX&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;lanna1457@gmail.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83999075161&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;NÃO CONSIGO ACESSAR O SAP NEM O CITRIX - PORÉM UMA COLEGA CONSEGUIU ACESSAR PELO MESMO LINK E MESMA SENHA &#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=16&#38;amp;itemtype=Ticket&#38;amp;items_id=73\" target=\"_blank\"&#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-679b81f077f908.68527211\" width=\"974\" src=\"/front/document.send.php?docid=16&#38;amp;itemtype=Ticket&#38;amp;items_id=73\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 12:36]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, &#60;/p&#62;\r\n&#60;p&#62;Preciso do anydesk para acessar e analisar. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 12:36&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_73 \n\n Chamado: Descrição\n\n Título : PROBLEMA AO ACESSAR SAP / CITRIX\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 10:44\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - lanna1457@gmail.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PROBLEMA AO ACESSAR SAP / CITRIX\n2) E-MAIL : lanna1457@gmail.com\n3) TELEFONE : 83999075161\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nNÃO CONSIGO ACESSAR O SAP NEM O CITRIX - PORÉM UMA COLEGA CONSEGUIU ACESSAR PELO MESMO LINK E MESMA SENHA [ec3ac8cc-b2d8e96f-679b81f077f908.68527211] [https://oswintech.ddns.net/front/document.send.php?docid=16&#38;itemtype=Ticket&#38;items_id=73]\n \n\n\n[30-01-2025 12:36]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nPreciso do anydesk para acessar e analisar. \nData de abertura 30-01-2025 12:36\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-73/add_followup.1738251391.964699251@oswintech.ddns.net','','mailing','add_followup'),
(783,'Ticket',73,4,2,0,2,'2025-01-30 15:36:30','2025-02-18 18:15:34',NULL,'[GLPI #0000073] Novo acompanhamento PROBLEMA AO ACESSAR SAP / CITRIX','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000073] Novo acompanhamento PROBLEMA AO ACESSAR SAP / CITRIX&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_73\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_73&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PROBLEMA AO ACESSAR SAP / CITRIX &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:30-01-2025 10:44 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- lanna1457@gmail.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PROBLEMA AO ACESSAR SAP / CITRIX&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;lanna1457@gmail.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83999075161&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;NÃO CONSIGO ACESSAR O SAP NEM O CITRIX - PORÉM UMA COLEGA CONSEGUIU ACESSAR PELO MESMO LINK E MESMA SENHA &#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=16&#38;amp;itemtype=Ticket&#38;amp;items_id=73\" target=\"_blank\"&#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-679b81f077f908.68527211\" width=\"974\" src=\"/front/document.send.php?docid=16&#38;amp;itemtype=Ticket&#38;amp;items_id=73\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 12:36]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, &#60;/p&#62;\r\n&#60;p&#62;Preciso do anydesk para acessar e analisar. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 12:36&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_73 \n\n Chamado: Descrição\n\n Título : PROBLEMA AO ACESSAR SAP / CITRIX\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 10:44\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - lanna1457@gmail.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PROBLEMA AO ACESSAR SAP / CITRIX\n2) E-MAIL : lanna1457@gmail.com\n3) TELEFONE : 83999075161\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nNÃO CONSIGO ACESSAR O SAP NEM O CITRIX - PORÉM UMA COLEGA CONSEGUIU ACESSAR PELO MESMO LINK E MESMA SENHA [ec3ac8cc-b2d8e96f-679b81f077f908.68527211] [https://oswintech.ddns.net/front/document.send.php?docid=16&#38;itemtype=Ticket&#38;items_id=73]\n \n\n\n[30-01-2025 12:36]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nPreciso do anydesk para acessar e analisar. \nData de abertura 30-01-2025 12:36\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-73/add_followup.1738251391.1815927289@oswintech.ddns.net','','mailing','add_followup'),
(784,'Ticket',73,4,2,0,2,'2025-01-30 15:36:30','2025-02-18 18:53:01',NULL,'[GLPI #0000073] Novo acompanhamento PROBLEMA AO ACESSAR SAP / CITRIX','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000073] Novo acompanhamento PROBLEMA AO ACESSAR SAP / CITRIX&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_73\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_73&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PROBLEMA AO ACESSAR SAP / CITRIX &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:30-01-2025 10:44 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- lanna1457@gmail.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PROBLEMA AO ACESSAR SAP / CITRIX&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;lanna1457@gmail.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83999075161&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;NÃO CONSIGO ACESSAR O SAP NEM O CITRIX - PORÉM UMA COLEGA CONSEGUIU ACESSAR PELO MESMO LINK E MESMA SENHA &#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=16&#38;amp;itemtype=Ticket&#38;amp;items_id=73\" target=\"_blank\"&#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-679b81f077f908.68527211\" width=\"974\" src=\"/front/document.send.php?docid=16&#38;amp;itemtype=Ticket&#38;amp;items_id=73\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 12:36]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, &#60;/p&#62;\r\n&#60;p&#62;Preciso do anydesk para acessar e analisar. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 12:36&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_73 \n\n Chamado: Descrição\n\n Título : PROBLEMA AO ACESSAR SAP / CITRIX\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 10:44\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - lanna1457@gmail.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PROBLEMA AO ACESSAR SAP / CITRIX\n2) E-MAIL : lanna1457@gmail.com\n3) TELEFONE : 83999075161\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nNÃO CONSIGO ACESSAR O SAP NEM O CITRIX - PORÉM UMA COLEGA CONSEGUIU ACESSAR PELO MESMO LINK E MESMA SENHA [ec3ac8cc-b2d8e96f-679b81f077f908.68527211] [https://oswintech.ddns.net/front/document.send.php?docid=16&#38;itemtype=Ticket&#38;items_id=73]\n \n\n\n[30-01-2025 12:36]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nPreciso do anydesk para acessar e analisar. \nData de abertura 30-01-2025 12:36\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-73/add_followup.1738251391.1761794140@oswintech.ddns.net','','mailing','add_followup'),
(785,'Ticket',73,4,2,1,0,'2025-01-30 15:37:07','2025-01-30 15:37:07','2025-01-30 17:55:57','[GLPI #0000073] Atualização de um chamado PROBLEMA AO ACESSAR SAP / CITRIX',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_73 \n\n Chamado: Descrição\n\n Título : PROBLEMA AO ACESSAR SAP / CITRIX\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 10:44\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - lanna1457@gmail.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PROBLEMA AO ACESSAR SAP / CITRIX\n2) E-MAIL : lanna1457@gmail.com\n3) TELEFONE : 83999075161\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nNÃO CONSIGO ACESSAR O SAP NEM O CITRIX - PORÉM UMA COLEGA CONSEGUIU ACESSAR PELO MESMO LINK E MESMA SENHA [ec3ac8cc-b2d8e96f-679b81f077f908.68527211] [https://oswintech.ddns.net/front/document.send.php?docid=16&#38;itemtype=Ticket&#38;items_id=73]\n \n\n\n[30-01-2025 12:36]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nPreciso do anydesk para acessar e analisar. \nData de abertura 30-01-2025 12:36\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','update'),
(786,'Ticket',73,4,2,0,2,'2025-01-30 15:37:07','2025-02-18 18:53:01',NULL,'[GLPI #0000073] Atualização de um chamado PROBLEMA AO ACESSAR SAP / CITRIX','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000073] Atualiza&#38;ccedil;&#38;atilde;o de um chamado PROBLEMA AO ACESSAR SAP / CITRIX&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_73\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_73&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PROBLEMA AO ACESSAR SAP / CITRIX &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:30-01-2025 10:44 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- lanna1457@gmail.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PROBLEMA AO ACESSAR SAP / CITRIX&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;lanna1457@gmail.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83999075161&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;NÃO CONSIGO ACESSAR O SAP NEM O CITRIX - PORÉM UMA COLEGA CONSEGUIU ACESSAR PELO MESMO LINK E MESMA SENHA &#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=16&#38;amp;itemtype=Ticket&#38;amp;items_id=73\" target=\"_blank\"&#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-679b81f077f908.68527211\" width=\"974\" src=\"/front/document.send.php?docid=16&#38;amp;itemtype=Ticket&#38;amp;items_id=73\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 12:36]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, &#60;/p&#62;\r\n&#60;p&#62;Preciso do anydesk para acessar e analisar. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 12:36&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_73 \n\n Chamado: Descrição\n\n Título : PROBLEMA AO ACESSAR SAP / CITRIX\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 10:44\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - lanna1457@gmail.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PROBLEMA AO ACESSAR SAP / CITRIX\n2) E-MAIL : lanna1457@gmail.com\n3) TELEFONE : 83999075161\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nNÃO CONSIGO ACESSAR O SAP NEM O CITRIX - PORÉM UMA COLEGA CONSEGUIU ACESSAR PELO MESMO LINK E MESMA SENHA [ec3ac8cc-b2d8e96f-679b81f077f908.68527211] [https://oswintech.ddns.net/front/document.send.php?docid=16&#38;itemtype=Ticket&#38;items_id=73]\n \n\n\n[30-01-2025 12:36]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nPreciso do anydesk para acessar e analisar. \nData de abertura 30-01-2025 12:36\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-73/update.1738251427.504368641@oswintech.ddns.net','','mailing','update'),
(787,'Ticket',73,4,2,0,2,'2025-01-30 15:37:07','2025-02-18 18:53:01',NULL,'[GLPI #0000073] Atualização de um chamado PROBLEMA AO ACESSAR SAP / CITRIX','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000073] Atualiza&#38;ccedil;&#38;atilde;o de um chamado PROBLEMA AO ACESSAR SAP / CITRIX&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_73\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_73&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PROBLEMA AO ACESSAR SAP / CITRIX &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:30-01-2025 10:44 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- lanna1457@gmail.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PROBLEMA AO ACESSAR SAP / CITRIX&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;lanna1457@gmail.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83999075161&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;NÃO CONSIGO ACESSAR O SAP NEM O CITRIX - PORÉM UMA COLEGA CONSEGUIU ACESSAR PELO MESMO LINK E MESMA SENHA &#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=16&#38;amp;itemtype=Ticket&#38;amp;items_id=73\" target=\"_blank\"&#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-679b81f077f908.68527211\" width=\"974\" src=\"/front/document.send.php?docid=16&#38;amp;itemtype=Ticket&#38;amp;items_id=73\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 12:36]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, &#60;/p&#62;\r\n&#60;p&#62;Preciso do anydesk para acessar e analisar. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 12:36&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_73 \n\n Chamado: Descrição\n\n Título : PROBLEMA AO ACESSAR SAP / CITRIX\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 10:44\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - lanna1457@gmail.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PROBLEMA AO ACESSAR SAP / CITRIX\n2) E-MAIL : lanna1457@gmail.com\n3) TELEFONE : 83999075161\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nNÃO CONSIGO ACESSAR O SAP NEM O CITRIX - PORÉM UMA COLEGA CONSEGUIU ACESSAR PELO MESMO LINK E MESMA SENHA [ec3ac8cc-b2d8e96f-679b81f077f908.68527211] [https://oswintech.ddns.net/front/document.send.php?docid=16&#38;itemtype=Ticket&#38;items_id=73]\n \n\n\n[30-01-2025 12:36]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nPreciso do anydesk para acessar e analisar. \nData de abertura 30-01-2025 12:36\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-73/update.1738251427.595190252@oswintech.ddns.net','','mailing','update'),
(788,'Ticket',58,4,2,0,2,'2025-01-30 15:41:34','2025-02-18 18:53:01',NULL,'[GLPI #0000058] Novo usuário em atribuídos OSP control não está abrindo e ativar o e-mail ','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000058] Novo usu&#38;aacute;rio em atribu&#38;iacute;dos OSP control n&#38;atilde;o est&#38;aacute; abrindo e ativar o e-mail &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_58\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_58&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:OSP control n&#38;atilde;o est&#38;aacute; abrindo e ativar o e-mail  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 09:39 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- selma.belizario@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Atribu&#38;iacute;do para t&#38;eacute;cnicos&#60;/span&#62;&#38;#160;: Alexsandro Cruz &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistemas VIVO/FIBRASIL      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;OSP control não está abrindo e ativar o e-mail &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;selma.belizario@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83 98808-8867&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistemas VIVO/FIBRASIL&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;toda vez que tento acessar o OSP Control aparece a mensagem: ops, algo deu errado. Por favor, tente novamente. Consigo acessar em outo notebook, mas no meu não acessa. &#60;/p&#62;\n&#60;p&#62;Também preciso que o meu e-mail seja migrado do notebook anterior, para o que estou utilizado agora.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:42]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, poderia passar o acesso remoto por favor(anydesk ou teamviewer).&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:42&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_58 \n\n Chamado: Descrição\n\n Título : OSP control não está abrindo e ativar o e-mail \n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 09:39\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - selma.belizario@tecnomulti.com\n  \n  \n  \n \n\n\n Atribuído para técnicos : Alexsandro Cruz \n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistemas VIVO/FIBRASIL  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : OSP control não está abrindo e ativar o e-mail \n2) E-MAIL : selma.belizario@tecnomulti.com\n3) TELEFONE : 83 98808-8867\n4) CATEGORIA : Sistemas VIVO/FIBRASIL\n5) INFORME MAIS DETALHES : \ntoda vez que tento acessar o OSP Control aparece a mensagem: ops, algo deu errado. Por favor, tente novamente. Consigo acessar em outo notebook, mas no meu não acessa. \n\nTambém preciso que o meu e-mail seja migrado do notebook anterior, para o que estou utilizado agora.\n \n\n\n[28-01-2025 11:42]\nAutor Luan Medeiros\nDescrição Bom dia, poderia passar o acesso remoto por favor(anydesk ou teamviewer).\nData de abertura 28-01-2025 11:42\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-58/assign_user.1738251694.1811858803@oswintech.ddns.net','','mailing','assign_user'),
(789,'Ticket',58,4,2,1,0,'2025-01-30 15:41:34','2025-01-30 15:41:34','2025-01-30 15:41:40','[GLPI #0000058] Atualização de um chamado OSP control não está abrindo e ativar o e-mail ',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_58 \n\n Chamado: Descrição\n\n Título : OSP control não está abrindo e ativar o e-mail \n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 09:39\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - selma.belizario@tecnomulti.com\n  \n  \n  \n \n\n\n Atribuído para técnicos : Alexsandro Cruz \n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistemas VIVO/FIBRASIL  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : OSP control não está abrindo e ativar o e-mail \n2) E-MAIL : selma.belizario@tecnomulti.com\n3) TELEFONE : 83 98808-8867\n4) CATEGORIA : Sistemas VIVO/FIBRASIL\n5) INFORME MAIS DETALHES : \ntoda vez que tento acessar o OSP Control aparece a mensagem: ops, algo deu errado. Por favor, tente novamente. Consigo acessar em outo notebook, mas no meu não acessa. \n\nTambém preciso que o meu e-mail seja migrado do notebook anterior, para o que estou utilizado agora.\n \n\n\n[28-01-2025 11:42]\nAutor Luan Medeiros\nDescrição Bom dia, poderia passar o acesso remoto por favor(anydesk ou teamviewer).\nData de abertura 28-01-2025 11:42\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','update'),
(790,'Ticket',58,4,2,1,0,'2025-01-30 15:41:34','2025-01-30 15:41:34','2025-01-30 17:55:57','[GLPI #0000058] Atualização de um chamado OSP control não está abrindo e ativar o e-mail ',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_58 \n\n Chamado: Descrição\n\n Título : OSP control não está abrindo e ativar o e-mail \n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 09:39\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - selma.belizario@tecnomulti.com\n  \n  \n  \n \n\n\n Atribuído para técnicos : Alexsandro Cruz \n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistemas VIVO/FIBRASIL  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : OSP control não está abrindo e ativar o e-mail \n2) E-MAIL : selma.belizario@tecnomulti.com\n3) TELEFONE : 83 98808-8867\n4) CATEGORIA : Sistemas VIVO/FIBRASIL\n5) INFORME MAIS DETALHES : \ntoda vez que tento acessar o OSP Control aparece a mensagem: ops, algo deu errado. Por favor, tente novamente. Consigo acessar em outo notebook, mas no meu não acessa. \n\nTambém preciso que o meu e-mail seja migrado do notebook anterior, para o que estou utilizado agora.\n \n\n\n[28-01-2025 11:42]\nAutor Luan Medeiros\nDescrição Bom dia, poderia passar o acesso remoto por favor(anydesk ou teamviewer).\nData de abertura 28-01-2025 11:42\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','update'),
(791,'Ticket',58,4,2,0,2,'2025-01-30 15:41:34','2025-02-18 18:53:01',NULL,'[GLPI #0000058] Atualização de um chamado OSP control não está abrindo e ativar o e-mail ','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000058] Atualiza&#38;ccedil;&#38;atilde;o de um chamado OSP control n&#38;atilde;o est&#38;aacute; abrindo e ativar o e-mail &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_58\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_58&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:OSP control n&#38;atilde;o est&#38;aacute; abrindo e ativar o e-mail  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 09:39 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- selma.belizario@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Atribu&#38;iacute;do para t&#38;eacute;cnicos&#60;/span&#62;&#38;#160;: Alexsandro Cruz &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistemas VIVO/FIBRASIL      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;OSP control não está abrindo e ativar o e-mail &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;selma.belizario@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83 98808-8867&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistemas VIVO/FIBRASIL&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;toda vez que tento acessar o OSP Control aparece a mensagem: ops, algo deu errado. Por favor, tente novamente. Consigo acessar em outo notebook, mas no meu não acessa. &#60;/p&#62;\n&#60;p&#62;Também preciso que o meu e-mail seja migrado do notebook anterior, para o que estou utilizado agora.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:42]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, poderia passar o acesso remoto por favor(anydesk ou teamviewer).&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:42&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_58 \n\n Chamado: Descrição\n\n Título : OSP control não está abrindo e ativar o e-mail \n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 09:39\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - selma.belizario@tecnomulti.com\n  \n  \n  \n \n\n\n Atribuído para técnicos : Alexsandro Cruz \n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistemas VIVO/FIBRASIL  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : OSP control não está abrindo e ativar o e-mail \n2) E-MAIL : selma.belizario@tecnomulti.com\n3) TELEFONE : 83 98808-8867\n4) CATEGORIA : Sistemas VIVO/FIBRASIL\n5) INFORME MAIS DETALHES : \ntoda vez que tento acessar o OSP Control aparece a mensagem: ops, algo deu errado. Por favor, tente novamente. Consigo acessar em outo notebook, mas no meu não acessa. \n\nTambém preciso que o meu e-mail seja migrado do notebook anterior, para o que estou utilizado agora.\n \n\n\n[28-01-2025 11:42]\nAutor Luan Medeiros\nDescrição Bom dia, poderia passar o acesso remoto por favor(anydesk ou teamviewer).\nData de abertura 28-01-2025 11:42\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-58/update.1738251694.1635873531@oswintech.ddns.net','','mailing','update'),
(792,'Ticket',58,4,2,0,2,'2025-01-30 15:41:34','2025-02-18 18:53:01',NULL,'[GLPI #0000058] Atualização de um chamado OSP control não está abrindo e ativar o e-mail ','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000058] Atualiza&#38;ccedil;&#38;atilde;o de um chamado OSP control n&#38;atilde;o est&#38;aacute; abrindo e ativar o e-mail &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_58\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_58&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:OSP control n&#38;atilde;o est&#38;aacute; abrindo e ativar o e-mail  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 09:39 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- selma.belizario@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Atribu&#38;iacute;do para t&#38;eacute;cnicos&#60;/span&#62;&#38;#160;: Alexsandro Cruz &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistemas VIVO/FIBRASIL      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;OSP control não está abrindo e ativar o e-mail &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;selma.belizario@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83 98808-8867&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistemas VIVO/FIBRASIL&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;toda vez que tento acessar o OSP Control aparece a mensagem: ops, algo deu errado. Por favor, tente novamente. Consigo acessar em outo notebook, mas no meu não acessa. &#60;/p&#62;\n&#60;p&#62;Também preciso que o meu e-mail seja migrado do notebook anterior, para o que estou utilizado agora.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:42]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, poderia passar o acesso remoto por favor(anydesk ou teamviewer).&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:42&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_58 \n\n Chamado: Descrição\n\n Título : OSP control não está abrindo e ativar o e-mail \n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 09:39\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - selma.belizario@tecnomulti.com\n  \n  \n  \n \n\n\n Atribuído para técnicos : Alexsandro Cruz \n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistemas VIVO/FIBRASIL  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : OSP control não está abrindo e ativar o e-mail \n2) E-MAIL : selma.belizario@tecnomulti.com\n3) TELEFONE : 83 98808-8867\n4) CATEGORIA : Sistemas VIVO/FIBRASIL\n5) INFORME MAIS DETALHES : \ntoda vez que tento acessar o OSP Control aparece a mensagem: ops, algo deu errado. Por favor, tente novamente. Consigo acessar em outo notebook, mas no meu não acessa. \n\nTambém preciso que o meu e-mail seja migrado do notebook anterior, para o que estou utilizado agora.\n \n\n\n[28-01-2025 11:42]\nAutor Luan Medeiros\nDescrição Bom dia, poderia passar o acesso remoto por favor(anydesk ou teamviewer).\nData de abertura 28-01-2025 11:42\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-58/update.1738251694.1341047188@oswintech.ddns.net','','mailing','update'),
(793,'Ticket',58,4,2,0,2,'2025-01-30 15:41:34','2025-02-18 18:53:01',NULL,'[GLPI #0000058] Atualização de um chamado OSP control não está abrindo e ativar o e-mail ','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000058] Atualiza&#38;ccedil;&#38;atilde;o de um chamado OSP control n&#38;atilde;o est&#38;aacute; abrindo e ativar o e-mail &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_58\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_58&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:OSP control n&#38;atilde;o est&#38;aacute; abrindo e ativar o e-mail  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 09:39 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- selma.belizario@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Atribu&#38;iacute;do para t&#38;eacute;cnicos&#60;/span&#62;&#38;#160;: Alexsandro Cruz &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistemas VIVO/FIBRASIL      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;OSP control não está abrindo e ativar o e-mail &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;selma.belizario@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83 98808-8867&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistemas VIVO/FIBRASIL&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;toda vez que tento acessar o OSP Control aparece a mensagem: ops, algo deu errado. Por favor, tente novamente. Consigo acessar em outo notebook, mas no meu não acessa. &#60;/p&#62;\n&#60;p&#62;Também preciso que o meu e-mail seja migrado do notebook anterior, para o que estou utilizado agora.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:42]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, poderia passar o acesso remoto por favor(anydesk ou teamviewer).&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:42&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_58 \n\n Chamado: Descrição\n\n Título : OSP control não está abrindo e ativar o e-mail \n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 09:39\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - selma.belizario@tecnomulti.com\n  \n  \n  \n \n\n\n Atribuído para técnicos : Alexsandro Cruz \n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistemas VIVO/FIBRASIL  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : OSP control não está abrindo e ativar o e-mail \n2) E-MAIL : selma.belizario@tecnomulti.com\n3) TELEFONE : 83 98808-8867\n4) CATEGORIA : Sistemas VIVO/FIBRASIL\n5) INFORME MAIS DETALHES : \ntoda vez que tento acessar o OSP Control aparece a mensagem: ops, algo deu errado. Por favor, tente novamente. Consigo acessar em outo notebook, mas no meu não acessa. \n\nTambém preciso que o meu e-mail seja migrado do notebook anterior, para o que estou utilizado agora.\n \n\n\n[28-01-2025 11:42]\nAutor Luan Medeiros\nDescrição Bom dia, poderia passar o acesso remoto por favor(anydesk ou teamviewer).\nData de abertura 28-01-2025 11:42\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-58/update.1738251694.1621364876@oswintech.ddns.net','','mailing','update'),
(794,'Ticket',58,4,2,1,0,'2025-01-30 16:49:36','2025-01-30 16:49:36','2025-01-30 17:55:57','[GLPI #0000058] Novo acompanhamento OSP control não está abrindo e ativar o e-mail ',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_58 \n\n Chamado: Descrição\n\n Título : OSP control não está abrindo e ativar o e-mail \n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 09:39\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - selma.belizario@tecnomulti.com\n  \n  \n  \n \n\n\n Atribuído para técnicos : Alexsandro Cruz \n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistemas VIVO/FIBRASIL  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : OSP control não está abrindo e ativar o e-mail \n2) E-MAIL : selma.belizario@tecnomulti.com\n3) TELEFONE : 83 98808-8867\n4) CATEGORIA : Sistemas VIVO/FIBRASIL\n5) INFORME MAIS DETALHES : \ntoda vez que tento acessar o OSP Control aparece a mensagem: ops, algo deu errado. Por favor, tente novamente. Consigo acessar em outo notebook, mas no meu não acessa. \n\nTambém preciso que o meu e-mail seja migrado do notebook anterior, para o que estou utilizado agora.\n \n\n\n[30-01-2025 13:49]\nAutor tecnomulti\nDescrição Boa tarde!\n\n434 166 120\nData de abertura 30-01-2025 13:49\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 11:42]\nAutor Luan Medeiros\nDescrição Bom dia, poderia passar o acesso remoto por favor(anydesk ou teamviewer).\nData de abertura 28-01-2025 11:42\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(795,'Ticket',58,4,2,1,0,'2025-01-30 16:49:36','2025-01-30 16:49:36','2025-01-30 16:49:55','[GLPI #0000058] Novo acompanhamento OSP control não está abrindo e ativar o e-mail ',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_58 \n\n Chamado: Descrição\n\n Título : OSP control não está abrindo e ativar o e-mail \n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 09:39\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - selma.belizario@tecnomulti.com\n  \n  \n  \n \n\n\n Atribuído para técnicos : Alexsandro Cruz \n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistemas VIVO/FIBRASIL  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : OSP control não está abrindo e ativar o e-mail \n2) E-MAIL : selma.belizario@tecnomulti.com\n3) TELEFONE : 83 98808-8867\n4) CATEGORIA : Sistemas VIVO/FIBRASIL\n5) INFORME MAIS DETALHES : \ntoda vez que tento acessar o OSP Control aparece a mensagem: ops, algo deu errado. Por favor, tente novamente. Consigo acessar em outo notebook, mas no meu não acessa. \n\nTambém preciso que o meu e-mail seja migrado do notebook anterior, para o que estou utilizado agora.\n \n\n\n[30-01-2025 13:49]\nAutor tecnomulti\nDescrição Boa tarde!\n\n434 166 120\nData de abertura 30-01-2025 13:49\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 11:42]\nAutor Luan Medeiros\nDescrição Bom dia, poderia passar o acesso remoto por favor(anydesk ou teamviewer).\nData de abertura 28-01-2025 11:42\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(796,'Ticket',58,4,2,1,0,'2025-01-30 16:49:36','2025-01-30 16:49:36','2025-01-30 16:49:57','[GLPI #0000058] Novo acompanhamento OSP control não está abrindo e ativar o e-mail ',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_58 \n\n Chamado: Descrição\n\n Título : OSP control não está abrindo e ativar o e-mail \n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 09:39\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - selma.belizario@tecnomulti.com\n  \n  \n  \n \n\n\n Atribuído para técnicos : Alexsandro Cruz \n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistemas VIVO/FIBRASIL  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : OSP control não está abrindo e ativar o e-mail \n2) E-MAIL : selma.belizario@tecnomulti.com\n3) TELEFONE : 83 98808-8867\n4) CATEGORIA : Sistemas VIVO/FIBRASIL\n5) INFORME MAIS DETALHES : \ntoda vez que tento acessar o OSP Control aparece a mensagem: ops, algo deu errado. Por favor, tente novamente. Consigo acessar em outo notebook, mas no meu não acessa. \n\nTambém preciso que o meu e-mail seja migrado do notebook anterior, para o que estou utilizado agora.\n \n\n\n[30-01-2025 13:49]\nAutor tecnomulti\nDescrição Boa tarde!\n\n434 166 120\nData de abertura 30-01-2025 13:49\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 11:42]\nAutor Luan Medeiros\nDescrição Bom dia, poderia passar o acesso remoto por favor(anydesk ou teamviewer).\nData de abertura 28-01-2025 11:42\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(797,'Ticket',58,4,2,1,0,'2025-01-30 16:49:36','2025-01-30 16:49:36','2025-01-30 20:33:10','[GLPI #0000058] Novo acompanhamento OSP control não está abrindo e ativar o e-mail ',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_58 \n\n Chamado: Descrição\n\n Título : OSP control não está abrindo e ativar o e-mail \n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 09:39\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - selma.belizario@tecnomulti.com\n  \n  \n  \n \n\n\n Atribuído para técnicos : Alexsandro Cruz \n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistemas VIVO/FIBRASIL  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : OSP control não está abrindo e ativar o e-mail \n2) E-MAIL : selma.belizario@tecnomulti.com\n3) TELEFONE : 83 98808-8867\n4) CATEGORIA : Sistemas VIVO/FIBRASIL\n5) INFORME MAIS DETALHES : \ntoda vez que tento acessar o OSP Control aparece a mensagem: ops, algo deu errado. Por favor, tente novamente. Consigo acessar em outo notebook, mas no meu não acessa. \n\nTambém preciso que o meu e-mail seja migrado do notebook anterior, para o que estou utilizado agora.\n \n\n\n[30-01-2025 13:49]\nAutor tecnomulti\nDescrição Boa tarde!\n\n434 166 120\nData de abertura 30-01-2025 13:49\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 11:42]\nAutor Luan Medeiros\nDescrição Bom dia, poderia passar o acesso remoto por favor(anydesk ou teamviewer).\nData de abertura 28-01-2025 11:42\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(798,'Ticket',58,4,2,0,2,'2025-01-30 16:49:36','2025-02-18 18:53:01',NULL,'[GLPI #0000058] Novo acompanhamento OSP control não está abrindo e ativar o e-mail ','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000058] Novo acompanhamento OSP control n&#38;atilde;o est&#38;aacute; abrindo e ativar o e-mail &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_58\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_58&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:OSP control n&#38;atilde;o est&#38;aacute; abrindo e ativar o e-mail  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 09:39 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- selma.belizario@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Atribu&#38;iacute;do para t&#38;eacute;cnicos&#60;/span&#62;&#38;#160;: Alexsandro Cruz &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistemas VIVO/FIBRASIL      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;OSP control não está abrindo e ativar o e-mail &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;selma.belizario@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83 98808-8867&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistemas VIVO/FIBRASIL&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;toda vez que tento acessar o OSP Control aparece a mensagem: ops, algo deu errado. Por favor, tente novamente. Consigo acessar em outo notebook, mas no meu não acessa. &#60;/p&#62;\n&#60;p&#62;Também preciso que o meu e-mail seja migrado do notebook anterior, para o que estou utilizado agora.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 13:49]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde!&#60;/p&#62;\r\n&#60;p&#62;434 166 120&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 13:49&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:42]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, poderia passar o acesso remoto por favor(anydesk ou teamviewer).&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:42&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_58 \n\n Chamado: Descrição\n\n Título : OSP control não está abrindo e ativar o e-mail \n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 09:39\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - selma.belizario@tecnomulti.com\n  \n  \n  \n \n\n\n Atribuído para técnicos : Alexsandro Cruz \n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistemas VIVO/FIBRASIL  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : OSP control não está abrindo e ativar o e-mail \n2) E-MAIL : selma.belizario@tecnomulti.com\n3) TELEFONE : 83 98808-8867\n4) CATEGORIA : Sistemas VIVO/FIBRASIL\n5) INFORME MAIS DETALHES : \ntoda vez que tento acessar o OSP Control aparece a mensagem: ops, algo deu errado. Por favor, tente novamente. Consigo acessar em outo notebook, mas no meu não acessa. \n\nTambém preciso que o meu e-mail seja migrado do notebook anterior, para o que estou utilizado agora.\n \n\n\n[30-01-2025 13:49]\nAutor tecnomulti\nDescrição Boa tarde!\n\n434 166 120\nData de abertura 30-01-2025 13:49\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 11:42]\nAutor Luan Medeiros\nDescrição Bom dia, poderia passar o acesso remoto por favor(anydesk ou teamviewer).\nData de abertura 28-01-2025 11:42\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-58/add_followup.1738255777.1696609603@oswintech.ddns.net','','mailing','add_followup'),
(799,'Ticket',58,4,2,0,2,'2025-01-30 16:49:36','2025-02-18 18:53:01',NULL,'[GLPI #0000058] Novo acompanhamento OSP control não está abrindo e ativar o e-mail ','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000058] Novo acompanhamento OSP control n&#38;atilde;o est&#38;aacute; abrindo e ativar o e-mail &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_58\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_58&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:OSP control n&#38;atilde;o est&#38;aacute; abrindo e ativar o e-mail  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 09:39 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- selma.belizario@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Atribu&#38;iacute;do para t&#38;eacute;cnicos&#60;/span&#62;&#38;#160;: Alexsandro Cruz &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistemas VIVO/FIBRASIL      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;OSP control não está abrindo e ativar o e-mail &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;selma.belizario@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83 98808-8867&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistemas VIVO/FIBRASIL&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;toda vez que tento acessar o OSP Control aparece a mensagem: ops, algo deu errado. Por favor, tente novamente. Consigo acessar em outo notebook, mas no meu não acessa. &#60;/p&#62;\n&#60;p&#62;Também preciso que o meu e-mail seja migrado do notebook anterior, para o que estou utilizado agora.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 13:49]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde!&#60;/p&#62;\r\n&#60;p&#62;434 166 120&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 13:49&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:42]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, poderia passar o acesso remoto por favor(anydesk ou teamviewer).&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:42&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_58 \n\n Chamado: Descrição\n\n Título : OSP control não está abrindo e ativar o e-mail \n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 09:39\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - selma.belizario@tecnomulti.com\n  \n  \n  \n \n\n\n Atribuído para técnicos : Alexsandro Cruz \n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistemas VIVO/FIBRASIL  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : OSP control não está abrindo e ativar o e-mail \n2) E-MAIL : selma.belizario@tecnomulti.com\n3) TELEFONE : 83 98808-8867\n4) CATEGORIA : Sistemas VIVO/FIBRASIL\n5) INFORME MAIS DETALHES : \ntoda vez que tento acessar o OSP Control aparece a mensagem: ops, algo deu errado. Por favor, tente novamente. Consigo acessar em outo notebook, mas no meu não acessa. \n\nTambém preciso que o meu e-mail seja migrado do notebook anterior, para o que estou utilizado agora.\n \n\n\n[30-01-2025 13:49]\nAutor tecnomulti\nDescrição Boa tarde!\n\n434 166 120\nData de abertura 30-01-2025 13:49\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 11:42]\nAutor Luan Medeiros\nDescrição Bom dia, poderia passar o acesso remoto por favor(anydesk ou teamviewer).\nData de abertura 28-01-2025 11:42\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-58/add_followup.1738255777.977556503@oswintech.ddns.net','','mailing','add_followup'),
(800,'Ticket',58,4,2,0,2,'2025-01-30 16:49:36','2025-02-18 18:53:01',NULL,'[GLPI #0000058] Novo acompanhamento OSP control não está abrindo e ativar o e-mail ','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000058] Novo acompanhamento OSP control n&#38;atilde;o est&#38;aacute; abrindo e ativar o e-mail &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_58\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_58&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:OSP control n&#38;atilde;o est&#38;aacute; abrindo e ativar o e-mail  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 09:39 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- selma.belizario@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Atribu&#38;iacute;do para t&#38;eacute;cnicos&#60;/span&#62;&#38;#160;: Alexsandro Cruz &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistemas VIVO/FIBRASIL      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;OSP control não está abrindo e ativar o e-mail &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;selma.belizario@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83 98808-8867&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistemas VIVO/FIBRASIL&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;toda vez que tento acessar o OSP Control aparece a mensagem: ops, algo deu errado. Por favor, tente novamente. Consigo acessar em outo notebook, mas no meu não acessa. &#60;/p&#62;\n&#60;p&#62;Também preciso que o meu e-mail seja migrado do notebook anterior, para o que estou utilizado agora.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 13:49]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde!&#60;/p&#62;\r\n&#60;p&#62;434 166 120&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 13:49&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:42]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, poderia passar o acesso remoto por favor(anydesk ou teamviewer).&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:42&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_58 \n\n Chamado: Descrição\n\n Título : OSP control não está abrindo e ativar o e-mail \n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 09:39\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - selma.belizario@tecnomulti.com\n  \n  \n  \n \n\n\n Atribuído para técnicos : Alexsandro Cruz \n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistemas VIVO/FIBRASIL  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : OSP control não está abrindo e ativar o e-mail \n2) E-MAIL : selma.belizario@tecnomulti.com\n3) TELEFONE : 83 98808-8867\n4) CATEGORIA : Sistemas VIVO/FIBRASIL\n5) INFORME MAIS DETALHES : \ntoda vez que tento acessar o OSP Control aparece a mensagem: ops, algo deu errado. Por favor, tente novamente. Consigo acessar em outo notebook, mas no meu não acessa. \n\nTambém preciso que o meu e-mail seja migrado do notebook anterior, para o que estou utilizado agora.\n \n\n\n[30-01-2025 13:49]\nAutor tecnomulti\nDescrição Boa tarde!\n\n434 166 120\nData de abertura 30-01-2025 13:49\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 11:42]\nAutor Luan Medeiros\nDescrição Bom dia, poderia passar o acesso remoto por favor(anydesk ou teamviewer).\nData de abertura 28-01-2025 11:42\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-58/add_followup.1738255777.1075200673@oswintech.ddns.net','','mailing','add_followup'),
(801,'Ticket',58,4,2,0,2,'2025-01-30 16:49:36','2025-02-18 18:53:01',NULL,'[GLPI #0000058] Novo acompanhamento OSP control não está abrindo e ativar o e-mail ','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000058] Novo acompanhamento OSP control n&#38;atilde;o est&#38;aacute; abrindo e ativar o e-mail &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_58\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_58&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:OSP control n&#38;atilde;o est&#38;aacute; abrindo e ativar o e-mail  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 09:39 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- selma.belizario@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Atribu&#38;iacute;do para t&#38;eacute;cnicos&#60;/span&#62;&#38;#160;: Alexsandro Cruz &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistemas VIVO/FIBRASIL      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;OSP control não está abrindo e ativar o e-mail &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;selma.belizario@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83 98808-8867&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistemas VIVO/FIBRASIL&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;toda vez que tento acessar o OSP Control aparece a mensagem: ops, algo deu errado. Por favor, tente novamente. Consigo acessar em outo notebook, mas no meu não acessa. &#60;/p&#62;\n&#60;p&#62;Também preciso que o meu e-mail seja migrado do notebook anterior, para o que estou utilizado agora.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 13:49]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde!&#60;/p&#62;\r\n&#60;p&#62;434 166 120&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 13:49&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:42]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, poderia passar o acesso remoto por favor(anydesk ou teamviewer).&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:42&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_58 \n\n Chamado: Descrição\n\n Título : OSP control não está abrindo e ativar o e-mail \n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 09:39\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - selma.belizario@tecnomulti.com\n  \n  \n  \n \n\n\n Atribuído para técnicos : Alexsandro Cruz \n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistemas VIVO/FIBRASIL  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : OSP control não está abrindo e ativar o e-mail \n2) E-MAIL : selma.belizario@tecnomulti.com\n3) TELEFONE : 83 98808-8867\n4) CATEGORIA : Sistemas VIVO/FIBRASIL\n5) INFORME MAIS DETALHES : \ntoda vez que tento acessar o OSP Control aparece a mensagem: ops, algo deu errado. Por favor, tente novamente. Consigo acessar em outo notebook, mas no meu não acessa. \n\nTambém preciso que o meu e-mail seja migrado do notebook anterior, para o que estou utilizado agora.\n \n\n\n[30-01-2025 13:49]\nAutor tecnomulti\nDescrição Boa tarde!\n\n434 166 120\nData de abertura 30-01-2025 13:49\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 11:42]\nAutor Luan Medeiros\nDescrição Bom dia, poderia passar o acesso remoto por favor(anydesk ou teamviewer).\nData de abertura 28-01-2025 11:42\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-58/add_followup.1738255777.1980280287@oswintech.ddns.net','','mailing','add_followup'),
(802,'PluginFormcreatorFormAnswer',38,29,2,0,2,'2025-01-30 17:53:59','2025-02-18 18:53:01',NULL,'[GLPI] Sua requisição foi salva','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI] Sua requisi&#38;ccedil;&#38;atilde;o foi salva&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;p&#62;Olá,&#60;br /&#62;Sua requisição do GLPI foi salva com sucesso com o número 38 e transmitido para a equipe de helpdesk.&#60;br /&#62;Você pode ver suas respostas no seguinte link:&#60;br /&#62;https://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=38&#60;/p&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;','Olá,\nSua requisição do GLPI foi salva com sucesso com o número 38 e transmitido para a equipe de helpdesk.\nVocê pode ver suas respostas no seguinte link:\nhttps://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=38\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-PluginFormcreatorFormAnswer-38/plugin_formcreator_form_created.1738259639.2136317541@oswintech.ddns.net','','mailing','plugin_formcreator_form_created'),
(803,'Ticket',74,4,2,1,0,'2025-01-30 17:53:59','2025-01-30 17:53:59','2025-01-30 17:55:57','[GLPI #0000074] Novo chamado EMAIL',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_74 \n\n Chamado: Descrição\n\n Título : EMAIL\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 14:53\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL\n2) E-MAIL : flavia.chagas@tecnomulti.com\n3) TELEFONE : 84 8831-7787\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nMeus emails não está saindo da caixa!\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(804,'Ticket',74,4,2,1,0,'2025-01-30 17:53:59','2025-01-30 17:53:59','2025-01-30 17:54:55','[GLPI #0000074] Novo chamado EMAIL',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_74 \n\n Chamado: Descrição\n\n Título : EMAIL\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 14:53\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL\n2) E-MAIL : flavia.chagas@tecnomulti.com\n3) TELEFONE : 84 8831-7787\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nMeus emails não está saindo da caixa!\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(805,'Ticket',74,4,2,1,0,'2025-01-30 17:53:59','2025-01-30 17:53:59','2025-01-30 17:54:57','[GLPI #0000074] Novo chamado EMAIL',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_74 \n\n Chamado: Descrição\n\n Título : EMAIL\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 14:53\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL\n2) E-MAIL : flavia.chagas@tecnomulti.com\n3) TELEFONE : 84 8831-7787\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nMeus emails não está saindo da caixa!\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(806,'Ticket',74,4,2,1,0,'2025-01-30 17:53:59','2025-01-30 17:53:59','2025-01-30 20:33:10','[GLPI #0000074] Novo chamado EMAIL',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_74 \n\n Chamado: Descrição\n\n Título : EMAIL\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 14:53\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL\n2) E-MAIL : flavia.chagas@tecnomulti.com\n3) TELEFONE : 84 8831-7787\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nMeus emails não está saindo da caixa!\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(807,'Ticket',74,4,2,0,2,'2025-01-30 17:53:59','2025-02-18 18:53:01',NULL,'[GLPI #0000074] Novo chamado EMAIL','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000074] Novo chamado EMAIL&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_74\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_74&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:EMAIL &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:30-01-2025 14:53 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;EMAIL&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;flavia.chagas@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62; 84 8831-7787&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Meus emails não está saindo da caixa!&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_74 \n\n Chamado: Descrição\n\n Título : EMAIL\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 14:53\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL\n2) E-MAIL : flavia.chagas@tecnomulti.com\n3) TELEFONE : 84 8831-7787\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nMeus emails não está saindo da caixa!\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-74/new@oswintech.ddns.net','','mailing','new'),
(808,'Ticket',74,4,2,0,2,'2025-01-30 17:53:59','2025-02-18 18:53:01',NULL,'[GLPI #0000074] Novo chamado EMAIL','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000074] Novo chamado EMAIL&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_74\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_74&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:EMAIL &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:30-01-2025 14:53 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;EMAIL&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;flavia.chagas@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62; 84 8831-7787&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Meus emails não está saindo da caixa!&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_74 \n\n Chamado: Descrição\n\n Título : EMAIL\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 14:53\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL\n2) E-MAIL : flavia.chagas@tecnomulti.com\n3) TELEFONE : 84 8831-7787\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nMeus emails não está saindo da caixa!\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-74/new@oswintech.ddns.net','','mailing','new'),
(809,'Ticket',74,4,2,0,2,'2025-01-30 17:53:59','2025-02-18 18:53:01',NULL,'[GLPI #0000074] Novo chamado EMAIL','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000074] Novo chamado EMAIL&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_74\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_74&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:EMAIL &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:30-01-2025 14:53 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;EMAIL&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;flavia.chagas@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62; 84 8831-7787&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Meus emails não está saindo da caixa!&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_74 \n\n Chamado: Descrição\n\n Título : EMAIL\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 14:53\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL\n2) E-MAIL : flavia.chagas@tecnomulti.com\n3) TELEFONE : 84 8831-7787\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nMeus emails não está saindo da caixa!\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-74/new@oswintech.ddns.net','','mailing','new'),
(810,'Ticket',74,4,2,0,2,'2025-01-30 17:53:59','2025-02-18 18:53:01',NULL,'[GLPI #0000074] Novo chamado EMAIL','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000074] Novo chamado EMAIL&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_74\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_74&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:EMAIL &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:30-01-2025 14:53 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;EMAIL&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;flavia.chagas@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62; 84 8831-7787&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Meus emails não está saindo da caixa!&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_74 \n\n Chamado: Descrição\n\n Título : EMAIL\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 14:53\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL\n2) E-MAIL : flavia.chagas@tecnomulti.com\n3) TELEFONE : 84 8831-7787\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nMeus emails não está saindo da caixa!\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-74/new@oswintech.ddns.net','','mailing','new'),
(811,'Ticket',74,4,2,1,0,'2025-01-30 18:05:36','2025-01-30 18:05:36','2025-01-30 18:10:30','[GLPI #0000074] Novo acompanhamento EMAIL',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_74 \n\n Chamado: Descrição\n\n Título : EMAIL\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 14:53\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - flavia.chagas@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL\n2) E-MAIL : flavia.chagas@tecnomulti.com\n3) TELEFONE : 84 8831-7787\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nMeus emails não está saindo da caixa!\n \n\n\n[30-01-2025 15:05]\nAutor tecnomulti\nDescrição ????\nData de abertura 30-01-2025 15:05\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(812,'Ticket',74,4,2,1,0,'2025-01-30 18:05:36','2025-01-30 18:05:36','2025-01-30 18:05:55','[GLPI #0000074] Novo acompanhamento EMAIL',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_74 \n\n Chamado: Descrição\n\n Título : EMAIL\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 14:53\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - flavia.chagas@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL\n2) E-MAIL : flavia.chagas@tecnomulti.com\n3) TELEFONE : 84 8831-7787\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nMeus emails não está saindo da caixa!\n \n\n\n[30-01-2025 15:05]\nAutor tecnomulti\nDescrição ????\nData de abertura 30-01-2025 15:05\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(813,'Ticket',74,4,2,1,0,'2025-01-30 18:05:36','2025-01-30 18:05:36','2025-01-30 18:05:57','[GLPI #0000074] Novo acompanhamento EMAIL',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_74 \n\n Chamado: Descrição\n\n Título : EMAIL\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 14:53\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - flavia.chagas@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL\n2) E-MAIL : flavia.chagas@tecnomulti.com\n3) TELEFONE : 84 8831-7787\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nMeus emails não está saindo da caixa!\n \n\n\n[30-01-2025 15:05]\nAutor tecnomulti\nDescrição ????\nData de abertura 30-01-2025 15:05\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(814,'Ticket',74,4,2,1,0,'2025-01-30 18:05:36','2025-01-30 18:05:36','2025-01-30 20:33:10','[GLPI #0000074] Novo acompanhamento EMAIL',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_74 \n\n Chamado: Descrição\n\n Título : EMAIL\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 14:53\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - flavia.chagas@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL\n2) E-MAIL : flavia.chagas@tecnomulti.com\n3) TELEFONE : 84 8831-7787\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nMeus emails não está saindo da caixa!\n \n\n\n[30-01-2025 15:05]\nAutor tecnomulti\nDescrição ????\nData de abertura 30-01-2025 15:05\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(815,'Ticket',74,4,2,0,1,'2025-01-30 18:05:36','2025-02-05 12:53:09',NULL,'[GLPI #0000074] Novo acompanhamento EMAIL','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000074] Novo acompanhamento EMAIL&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_74\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_74&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:EMAIL &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:30-01-2025 14:53 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- flavia.chagas@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;EMAIL&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;flavia.chagas@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62; 84 8831-7787&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Meus emails não está saindo da caixa!&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 15:05]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;????&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 15:05&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_74 \n\n Chamado: Descrição\n\n Título : EMAIL\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 14:53\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - flavia.chagas@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL\n2) E-MAIL : flavia.chagas@tecnomulti.com\n3) TELEFONE : 84 8831-7787\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nMeus emails não está saindo da caixa!\n \n\n\n[30-01-2025 15:05]\nAutor tecnomulti\nDescrição ????\nData de abertura 30-01-2025 15:05\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-74/add_followup.1738260336.1232749793@oswintech.ddns.net','','mailing','add_followup'),
(816,'Ticket',74,4,2,0,1,'2025-01-30 18:05:36','2025-02-05 12:53:09',NULL,'[GLPI #0000074] Novo acompanhamento EMAIL','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000074] Novo acompanhamento EMAIL&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_74\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_74&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:EMAIL &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:30-01-2025 14:53 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- flavia.chagas@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;EMAIL&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;flavia.chagas@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62; 84 8831-7787&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Meus emails não está saindo da caixa!&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 15:05]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;????&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 15:05&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_74 \n\n Chamado: Descrição\n\n Título : EMAIL\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 14:53\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - flavia.chagas@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL\n2) E-MAIL : flavia.chagas@tecnomulti.com\n3) TELEFONE : 84 8831-7787\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nMeus emails não está saindo da caixa!\n \n\n\n[30-01-2025 15:05]\nAutor tecnomulti\nDescrição ????\nData de abertura 30-01-2025 15:05\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-74/add_followup.1738260336.1393046387@oswintech.ddns.net','','mailing','add_followup'),
(817,'Ticket',74,4,2,0,1,'2025-01-30 18:05:36','2025-02-05 12:53:09',NULL,'[GLPI #0000074] Novo acompanhamento EMAIL','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000074] Novo acompanhamento EMAIL&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_74\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_74&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:EMAIL &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:30-01-2025 14:53 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- flavia.chagas@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;EMAIL&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;flavia.chagas@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62; 84 8831-7787&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Meus emails não está saindo da caixa!&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 15:05]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;????&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 15:05&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_74 \n\n Chamado: Descrição\n\n Título : EMAIL\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 14:53\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - flavia.chagas@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL\n2) E-MAIL : flavia.chagas@tecnomulti.com\n3) TELEFONE : 84 8831-7787\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nMeus emails não está saindo da caixa!\n \n\n\n[30-01-2025 15:05]\nAutor tecnomulti\nDescrição ????\nData de abertura 30-01-2025 15:05\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-74/add_followup.1738260336.1114402099@oswintech.ddns.net','','mailing','add_followup'),
(818,'Ticket',74,4,2,0,1,'2025-01-30 18:05:36','2025-02-05 12:53:09',NULL,'[GLPI #0000074] Novo acompanhamento EMAIL','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000074] Novo acompanhamento EMAIL&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_74\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_74&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:EMAIL &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:30-01-2025 14:53 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- flavia.chagas@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;EMAIL&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;flavia.chagas@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62; 84 8831-7787&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Meus emails não está saindo da caixa!&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 15:05]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;????&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 15:05&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_74 \n\n Chamado: Descrição\n\n Título : EMAIL\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 14:53\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - flavia.chagas@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL\n2) E-MAIL : flavia.chagas@tecnomulti.com\n3) TELEFONE : 84 8831-7787\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nMeus emails não está saindo da caixa!\n \n\n\n[30-01-2025 15:05]\nAutor tecnomulti\nDescrição ????\nData de abertura 30-01-2025 15:05\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-74/add_followup.1738260336.505287871@oswintech.ddns.net','','mailing','add_followup'),
(819,'PluginFormcreatorFormAnswer',39,29,2,0,1,'2025-01-30 18:41:10','2025-02-05 12:53:09',NULL,'[GLPI] Sua requisição foi salva','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI] Sua requisi&#38;ccedil;&#38;atilde;o foi salva&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;p&#62;Olá,&#60;br /&#62;Sua requisição do GLPI foi salva com sucesso com o número 39 e transmitido para a equipe de helpdesk.&#60;br /&#62;Você pode ver suas respostas no seguinte link:&#60;br /&#62;https://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=39&#60;/p&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;','Olá,\nSua requisição do GLPI foi salva com sucesso com o número 39 e transmitido para a equipe de helpdesk.\nVocê pode ver suas respostas no seguinte link:\nhttps://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=39\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-PluginFormcreatorFormAnswer-39/plugin_formcreator_form_created.1738262470.681071581@oswintech.ddns.net','','mailing','plugin_formcreator_form_created'),
(820,'Ticket',75,4,2,1,0,'2025-01-30 18:41:10','2025-01-30 18:41:10','2025-02-03 13:17:18','[GLPI #0000075] Novo chamado INSTALAR NOBREAK',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_75 \n\n Chamado: Descrição\n\n Título : INSTALAR NOBREAK\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 15:41\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : INSTALAR NOBREAK\n2) E-MAIL : denilson.marques@tecnomulti.com\n3) TELEFONE : 84999811377\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nequipamento para instalação disponivel.\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(821,'Ticket',75,4,2,1,0,'2025-01-30 18:41:10','2025-01-30 18:41:10','2025-01-30 18:41:55','[GLPI #0000075] Novo chamado INSTALAR NOBREAK',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_75 \n\n Chamado: Descrição\n\n Título : INSTALAR NOBREAK\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 15:41\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : INSTALAR NOBREAK\n2) E-MAIL : denilson.marques@tecnomulti.com\n3) TELEFONE : 84999811377\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nequipamento para instalação disponivel.\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(822,'Ticket',75,4,2,1,0,'2025-01-30 18:41:10','2025-01-30 18:41:10','2025-01-30 18:41:57','[GLPI #0000075] Novo chamado INSTALAR NOBREAK',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_75 \n\n Chamado: Descrição\n\n Título : INSTALAR NOBREAK\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 15:41\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : INSTALAR NOBREAK\n2) E-MAIL : denilson.marques@tecnomulti.com\n3) TELEFONE : 84999811377\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nequipamento para instalação disponivel.\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(823,'Ticket',75,4,2,1,0,'2025-01-30 18:41:10','2025-01-30 18:41:10','2025-01-30 20:33:10','[GLPI #0000075] Novo chamado INSTALAR NOBREAK',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_75 \n\n Chamado: Descrição\n\n Título : INSTALAR NOBREAK\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 15:41\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : INSTALAR NOBREAK\n2) E-MAIL : denilson.marques@tecnomulti.com\n3) TELEFONE : 84999811377\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nequipamento para instalação disponivel.\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(824,'Ticket',75,4,2,0,1,'2025-01-30 18:41:10','2025-02-05 12:53:09',NULL,'[GLPI #0000075] Novo chamado INSTALAR NOBREAK','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000075] Novo chamado INSTALAR NOBREAK&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_75\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_75&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:INSTALAR NOBREAK &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:30-01-2025 15:41 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;INSTALAR NOBREAK&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;denilson.marques@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84999811377&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;equipamento para instalação disponivel.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_75 \n\n Chamado: Descrição\n\n Título : INSTALAR NOBREAK\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 15:41\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : INSTALAR NOBREAK\n2) E-MAIL : denilson.marques@tecnomulti.com\n3) TELEFONE : 84999811377\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nequipamento para instalação disponivel.\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-75/new@oswintech.ddns.net','','mailing','new'),
(825,'Ticket',75,4,2,0,1,'2025-01-30 18:41:10','2025-02-05 12:53:09',NULL,'[GLPI #0000075] Novo chamado INSTALAR NOBREAK','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000075] Novo chamado INSTALAR NOBREAK&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_75\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_75&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:INSTALAR NOBREAK &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:30-01-2025 15:41 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;INSTALAR NOBREAK&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;denilson.marques@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84999811377&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;equipamento para instalação disponivel.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_75 \n\n Chamado: Descrição\n\n Título : INSTALAR NOBREAK\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 15:41\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : INSTALAR NOBREAK\n2) E-MAIL : denilson.marques@tecnomulti.com\n3) TELEFONE : 84999811377\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nequipamento para instalação disponivel.\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-75/new@oswintech.ddns.net','','mailing','new'),
(826,'Ticket',75,4,2,0,1,'2025-01-30 18:41:10','2025-02-05 12:53:09',NULL,'[GLPI #0000075] Novo chamado INSTALAR NOBREAK','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000075] Novo chamado INSTALAR NOBREAK&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_75\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_75&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:INSTALAR NOBREAK &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:30-01-2025 15:41 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;INSTALAR NOBREAK&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;denilson.marques@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84999811377&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;equipamento para instalação disponivel.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_75 \n\n Chamado: Descrição\n\n Título : INSTALAR NOBREAK\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 15:41\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : INSTALAR NOBREAK\n2) E-MAIL : denilson.marques@tecnomulti.com\n3) TELEFONE : 84999811377\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nequipamento para instalação disponivel.\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-75/new@oswintech.ddns.net','','mailing','new'),
(827,'Ticket',75,4,2,0,1,'2025-01-30 18:41:10','2025-02-05 12:53:09',NULL,'[GLPI #0000075] Novo chamado INSTALAR NOBREAK','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000075] Novo chamado INSTALAR NOBREAK&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_75\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_75&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:INSTALAR NOBREAK &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:30-01-2025 15:41 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;INSTALAR NOBREAK&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;denilson.marques@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84999811377&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;equipamento para instalação disponivel.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_75 \n\n Chamado: Descrição\n\n Título : INSTALAR NOBREAK\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 15:41\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : INSTALAR NOBREAK\n2) E-MAIL : denilson.marques@tecnomulti.com\n3) TELEFONE : 84999811377\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nequipamento para instalação disponivel.\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-75/new@oswintech.ddns.net','','mailing','new'),
(828,'Ticket',74,4,2,1,0,'2025-01-30 18:50:29','2025-01-30 18:50:29','2025-02-03 13:17:18','[GLPI #0000074] Novo acompanhamento EMAIL',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_74 \n\n Chamado: Descrição\n\n Título : EMAIL\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 14:53\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - flavia.chagas@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL\n2) E-MAIL : flavia.chagas@tecnomulti.com\n3) TELEFONE : 84 8831-7787\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nMeus emails não está saindo da caixa!\n \n\n\n[30-01-2025 15:50]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nPor gentileza me passe o ID do anydesk.\nData de abertura 30-01-2025 15:50\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 15:05]\nAutor tecnomulti\nDescrição ????\nData de abertura 30-01-2025 15:05\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(829,'Ticket',74,4,2,1,0,'2025-01-30 18:50:29','2025-01-30 18:50:29','2025-01-30 18:50:55','[GLPI #0000074] Novo acompanhamento EMAIL',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_74 \n\n Chamado: Descrição\n\n Título : EMAIL\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 14:53\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - flavia.chagas@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL\n2) E-MAIL : flavia.chagas@tecnomulti.com\n3) TELEFONE : 84 8831-7787\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nMeus emails não está saindo da caixa!\n \n\n\n[30-01-2025 15:50]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nPor gentileza me passe o ID do anydesk.\nData de abertura 30-01-2025 15:50\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 15:05]\nAutor tecnomulti\nDescrição ????\nData de abertura 30-01-2025 15:05\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(830,'Ticket',74,4,2,1,0,'2025-01-30 18:50:29','2025-01-30 18:50:29','2025-01-30 18:50:57','[GLPI #0000074] Novo acompanhamento EMAIL',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_74 \n\n Chamado: Descrição\n\n Título : EMAIL\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 14:53\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - flavia.chagas@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL\n2) E-MAIL : flavia.chagas@tecnomulti.com\n3) TELEFONE : 84 8831-7787\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nMeus emails não está saindo da caixa!\n \n\n\n[30-01-2025 15:50]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nPor gentileza me passe o ID do anydesk.\nData de abertura 30-01-2025 15:50\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 15:05]\nAutor tecnomulti\nDescrição ????\nData de abertura 30-01-2025 15:05\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(831,'Ticket',74,4,2,1,0,'2025-01-30 18:50:29','2025-01-30 18:50:29','2025-01-30 20:33:10','[GLPI #0000074] Novo acompanhamento EMAIL',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_74 \n\n Chamado: Descrição\n\n Título : EMAIL\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 14:53\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - flavia.chagas@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL\n2) E-MAIL : flavia.chagas@tecnomulti.com\n3) TELEFONE : 84 8831-7787\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nMeus emails não está saindo da caixa!\n \n\n\n[30-01-2025 15:50]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nPor gentileza me passe o ID do anydesk.\nData de abertura 30-01-2025 15:50\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 15:05]\nAutor tecnomulti\nDescrição ????\nData de abertura 30-01-2025 15:05\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(832,'Ticket',74,4,2,0,1,'2025-01-30 18:50:29','2025-02-05 12:53:09',NULL,'[GLPI #0000074] Novo acompanhamento EMAIL','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000074] Novo acompanhamento EMAIL&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_74\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_74&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:EMAIL &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:30-01-2025 14:53 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- flavia.chagas@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;EMAIL&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;flavia.chagas@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62; 84 8831-7787&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Meus emails não está saindo da caixa!&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 15:50]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, &#60;/p&#62;\r\n&#60;p&#62;Por gentileza me passe o ID do anydesk.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 15:50&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 15:05]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;????&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 15:05&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_74 \n\n Chamado: Descrição\n\n Título : EMAIL\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 14:53\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - flavia.chagas@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL\n2) E-MAIL : flavia.chagas@tecnomulti.com\n3) TELEFONE : 84 8831-7787\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nMeus emails não está saindo da caixa!\n \n\n\n[30-01-2025 15:50]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nPor gentileza me passe o ID do anydesk.\nData de abertura 30-01-2025 15:50\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 15:05]\nAutor tecnomulti\nDescrição ????\nData de abertura 30-01-2025 15:05\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-74/add_followup.1738263030.1998917484@oswintech.ddns.net','','mailing','add_followup'),
(833,'Ticket',74,4,2,0,1,'2025-01-30 18:50:29','2025-02-05 12:53:09',NULL,'[GLPI #0000074] Novo acompanhamento EMAIL','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000074] Novo acompanhamento EMAIL&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_74\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_74&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:EMAIL &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:30-01-2025 14:53 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- flavia.chagas@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;EMAIL&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;flavia.chagas@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62; 84 8831-7787&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Meus emails não está saindo da caixa!&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 15:50]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, &#60;/p&#62;\r\n&#60;p&#62;Por gentileza me passe o ID do anydesk.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 15:50&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 15:05]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;????&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 15:05&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_74 \n\n Chamado: Descrição\n\n Título : EMAIL\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 14:53\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - flavia.chagas@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL\n2) E-MAIL : flavia.chagas@tecnomulti.com\n3) TELEFONE : 84 8831-7787\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nMeus emails não está saindo da caixa!\n \n\n\n[30-01-2025 15:50]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nPor gentileza me passe o ID do anydesk.\nData de abertura 30-01-2025 15:50\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 15:05]\nAutor tecnomulti\nDescrição ????\nData de abertura 30-01-2025 15:05\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-74/add_followup.1738263030.908065094@oswintech.ddns.net','','mailing','add_followup'),
(834,'Ticket',74,4,2,0,1,'2025-01-30 18:50:29','2025-02-05 12:53:09',NULL,'[GLPI #0000074] Novo acompanhamento EMAIL','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000074] Novo acompanhamento EMAIL&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_74\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_74&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:EMAIL &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:30-01-2025 14:53 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- flavia.chagas@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;EMAIL&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;flavia.chagas@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62; 84 8831-7787&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Meus emails não está saindo da caixa!&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 15:50]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, &#60;/p&#62;\r\n&#60;p&#62;Por gentileza me passe o ID do anydesk.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 15:50&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 15:05]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;????&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 15:05&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_74 \n\n Chamado: Descrição\n\n Título : EMAIL\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 14:53\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - flavia.chagas@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL\n2) E-MAIL : flavia.chagas@tecnomulti.com\n3) TELEFONE : 84 8831-7787\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nMeus emails não está saindo da caixa!\n \n\n\n[30-01-2025 15:50]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nPor gentileza me passe o ID do anydesk.\nData de abertura 30-01-2025 15:50\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 15:05]\nAutor tecnomulti\nDescrição ????\nData de abertura 30-01-2025 15:05\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-74/add_followup.1738263030.1962582746@oswintech.ddns.net','','mailing','add_followup'),
(835,'Ticket',74,4,2,0,1,'2025-01-30 18:50:29','2025-02-05 12:53:09',NULL,'[GLPI #0000074] Novo acompanhamento EMAIL','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000074] Novo acompanhamento EMAIL&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_74\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_74&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:EMAIL &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:30-01-2025 14:53 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- flavia.chagas@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;EMAIL&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;flavia.chagas@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62; 84 8831-7787&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Meus emails não está saindo da caixa!&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 15:50]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, &#60;/p&#62;\r\n&#60;p&#62;Por gentileza me passe o ID do anydesk.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 15:50&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 15:05]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;????&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 15:05&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_74 \n\n Chamado: Descrição\n\n Título : EMAIL\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 14:53\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - flavia.chagas@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL\n2) E-MAIL : flavia.chagas@tecnomulti.com\n3) TELEFONE : 84 8831-7787\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nMeus emails não está saindo da caixa!\n \n\n\n[30-01-2025 15:50]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nPor gentileza me passe o ID do anydesk.\nData de abertura 30-01-2025 15:50\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 15:05]\nAutor tecnomulti\nDescrição ????\nData de abertura 30-01-2025 15:05\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-74/add_followup.1738263030.327327561@oswintech.ddns.net','','mailing','add_followup'),
(836,'Ticket',74,4,2,1,0,'2025-01-30 18:50:35','2025-01-30 18:50:35','2025-02-03 13:17:18','[GLPI #0000074] Atualização de um chamado EMAIL',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_74 \n\n Chamado: Descrição\n\n Título : EMAIL\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 14:53\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - flavia.chagas@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL\n2) E-MAIL : flavia.chagas@tecnomulti.com\n3) TELEFONE : 84 8831-7787\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nMeus emails não está saindo da caixa!\n \n\n\n[30-01-2025 15:50]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nPor gentileza me passe o ID do anydesk.\nData de abertura 30-01-2025 15:50\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 15:05]\nAutor tecnomulti\nDescrição ????\nData de abertura 30-01-2025 15:05\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','update'),
(837,'Ticket',74,4,2,0,1,'2025-01-30 18:50:35','2025-02-05 12:53:09',NULL,'[GLPI #0000074] Atualização de um chamado EMAIL','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000074] Atualiza&#38;ccedil;&#38;atilde;o de um chamado EMAIL&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_74\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_74&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:EMAIL &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:30-01-2025 14:53 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- flavia.chagas@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;EMAIL&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;flavia.chagas@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62; 84 8831-7787&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Meus emails não está saindo da caixa!&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 15:50]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, &#60;/p&#62;\r\n&#60;p&#62;Por gentileza me passe o ID do anydesk.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 15:50&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 15:05]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;????&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 15:05&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_74 \n\n Chamado: Descrição\n\n Título : EMAIL\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 14:53\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - flavia.chagas@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL\n2) E-MAIL : flavia.chagas@tecnomulti.com\n3) TELEFONE : 84 8831-7787\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nMeus emails não está saindo da caixa!\n \n\n\n[30-01-2025 15:50]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nPor gentileza me passe o ID do anydesk.\nData de abertura 30-01-2025 15:50\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 15:05]\nAutor tecnomulti\nDescrição ????\nData de abertura 30-01-2025 15:05\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-74/update.1738263035.1421650761@oswintech.ddns.net','','mailing','update'),
(838,'Ticket',74,4,2,0,1,'2025-01-30 18:50:35','2025-02-05 12:53:09',NULL,'[GLPI #0000074] Atualização de um chamado EMAIL','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000074] Atualiza&#38;ccedil;&#38;atilde;o de um chamado EMAIL&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_74\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_74&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:EMAIL &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:30-01-2025 14:53 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- flavia.chagas@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;EMAIL&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;flavia.chagas@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62; 84 8831-7787&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Meus emails não está saindo da caixa!&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 15:50]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, &#60;/p&#62;\r\n&#60;p&#62;Por gentileza me passe o ID do anydesk.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 15:50&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 15:05]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;????&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 15:05&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_74 \n\n Chamado: Descrição\n\n Título : EMAIL\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 14:53\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - flavia.chagas@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL\n2) E-MAIL : flavia.chagas@tecnomulti.com\n3) TELEFONE : 84 8831-7787\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nMeus emails não está saindo da caixa!\n \n\n\n[30-01-2025 15:50]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nPor gentileza me passe o ID do anydesk.\nData de abertura 30-01-2025 15:50\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 15:05]\nAutor tecnomulti\nDescrição ????\nData de abertura 30-01-2025 15:05\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-74/update.1738263035.930764405@oswintech.ddns.net','','mailing','update'),
(839,'Ticket',73,4,2,1,0,'2025-01-30 18:52:09','2025-01-30 18:52:09','2025-02-03 13:17:18','[GLPI #0000073] Novo acompanhamento PROBLEMA AO ACESSAR SAP / CITRIX',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_73 \n\n Chamado: Descrição\n\n Título : PROBLEMA AO ACESSAR SAP / CITRIX\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 10:44\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - lanna1457@gmail.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PROBLEMA AO ACESSAR SAP / CITRIX\n2) E-MAIL : lanna1457@gmail.com\n3) TELEFONE : 83999075161\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nNÃO CONSIGO ACESSAR O SAP NEM O CITRIX - PORÉM UMA COLEGA CONSEGUIU ACESSAR PELO MESMO LINK E MESMA SENHA [ec3ac8cc-b2d8e96f-679b81f077f908.68527211] [https://oswintech.ddns.net/front/document.send.php?docid=16&#38;itemtype=Ticket&#38;items_id=73]\n \n\n\n[30-01-2025 15:52]\nAutor Alexsandro Cruz\nDescrição Conforme contato mantido via Whatsapp, problema foi solucionado.\nData de abertura 30-01-2025 15:52\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 12:36]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nPreciso do anydesk para acessar e analisar. \nData de abertura 30-01-2025 12:36\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(840,'Ticket',73,4,2,1,0,'2025-01-30 18:52:09','2025-01-30 18:52:09','2025-01-30 18:52:56','[GLPI #0000073] Novo acompanhamento PROBLEMA AO ACESSAR SAP / CITRIX',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_73 \n\n Chamado: Descrição\n\n Título : PROBLEMA AO ACESSAR SAP / CITRIX\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 10:44\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - lanna1457@gmail.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PROBLEMA AO ACESSAR SAP / CITRIX\n2) E-MAIL : lanna1457@gmail.com\n3) TELEFONE : 83999075161\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nNÃO CONSIGO ACESSAR O SAP NEM O CITRIX - PORÉM UMA COLEGA CONSEGUIU ACESSAR PELO MESMO LINK E MESMA SENHA [ec3ac8cc-b2d8e96f-679b81f077f908.68527211] [https://oswintech.ddns.net/front/document.send.php?docid=16&#38;itemtype=Ticket&#38;items_id=73]\n \n\n\n[30-01-2025 15:52]\nAutor Alexsandro Cruz\nDescrição Conforme contato mantido via Whatsapp, problema foi solucionado.\nData de abertura 30-01-2025 15:52\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 12:36]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nPreciso do anydesk para acessar e analisar. \nData de abertura 30-01-2025 12:36\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(841,'Ticket',73,4,2,1,0,'2025-01-30 18:52:09','2025-01-30 18:52:09','2025-01-30 18:52:57','[GLPI #0000073] Novo acompanhamento PROBLEMA AO ACESSAR SAP / CITRIX',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_73 \n\n Chamado: Descrição\n\n Título : PROBLEMA AO ACESSAR SAP / CITRIX\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 10:44\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - lanna1457@gmail.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PROBLEMA AO ACESSAR SAP / CITRIX\n2) E-MAIL : lanna1457@gmail.com\n3) TELEFONE : 83999075161\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nNÃO CONSIGO ACESSAR O SAP NEM O CITRIX - PORÉM UMA COLEGA CONSEGUIU ACESSAR PELO MESMO LINK E MESMA SENHA [ec3ac8cc-b2d8e96f-679b81f077f908.68527211] [https://oswintech.ddns.net/front/document.send.php?docid=16&#38;itemtype=Ticket&#38;items_id=73]\n \n\n\n[30-01-2025 15:52]\nAutor Alexsandro Cruz\nDescrição Conforme contato mantido via Whatsapp, problema foi solucionado.\nData de abertura 30-01-2025 15:52\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 12:36]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nPreciso do anydesk para acessar e analisar. \nData de abertura 30-01-2025 12:36\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(842,'Ticket',73,4,2,1,0,'2025-01-30 18:52:09','2025-01-30 18:52:09','2025-01-30 20:33:10','[GLPI #0000073] Novo acompanhamento PROBLEMA AO ACESSAR SAP / CITRIX',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_73 \n\n Chamado: Descrição\n\n Título : PROBLEMA AO ACESSAR SAP / CITRIX\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 10:44\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - lanna1457@gmail.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PROBLEMA AO ACESSAR SAP / CITRIX\n2) E-MAIL : lanna1457@gmail.com\n3) TELEFONE : 83999075161\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nNÃO CONSIGO ACESSAR O SAP NEM O CITRIX - PORÉM UMA COLEGA CONSEGUIU ACESSAR PELO MESMO LINK E MESMA SENHA [ec3ac8cc-b2d8e96f-679b81f077f908.68527211] [https://oswintech.ddns.net/front/document.send.php?docid=16&#38;itemtype=Ticket&#38;items_id=73]\n \n\n\n[30-01-2025 15:52]\nAutor Alexsandro Cruz\nDescrição Conforme contato mantido via Whatsapp, problema foi solucionado.\nData de abertura 30-01-2025 15:52\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 12:36]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nPreciso do anydesk para acessar e analisar. \nData de abertura 30-01-2025 12:36\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(843,'Ticket',73,4,2,0,1,'2025-01-30 18:52:09','2025-02-05 12:53:09',NULL,'[GLPI #0000073] Novo acompanhamento PROBLEMA AO ACESSAR SAP / CITRIX','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000073] Novo acompanhamento PROBLEMA AO ACESSAR SAP / CITRIX&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_73\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_73&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PROBLEMA AO ACESSAR SAP / CITRIX &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:30-01-2025 10:44 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- lanna1457@gmail.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PROBLEMA AO ACESSAR SAP / CITRIX&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;lanna1457@gmail.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83999075161&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;NÃO CONSIGO ACESSAR O SAP NEM O CITRIX - PORÉM UMA COLEGA CONSEGUIU ACESSAR PELO MESMO LINK E MESMA SENHA &#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=16&#38;amp;itemtype=Ticket&#38;amp;items_id=73\" target=\"_blank\"&#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-679b81f077f908.68527211\" width=\"974\" src=\"/front/document.send.php?docid=16&#38;amp;itemtype=Ticket&#38;amp;items_id=73\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 15:52]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Conforme contato mantido via Whatsapp, problema foi solucionado.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 15:52&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 12:36]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, &#60;/p&#62;\r\n&#60;p&#62;Preciso do anydesk para acessar e analisar. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 12:36&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_73 \n\n Chamado: Descrição\n\n Título : PROBLEMA AO ACESSAR SAP / CITRIX\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 10:44\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - lanna1457@gmail.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PROBLEMA AO ACESSAR SAP / CITRIX\n2) E-MAIL : lanna1457@gmail.com\n3) TELEFONE : 83999075161\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nNÃO CONSIGO ACESSAR O SAP NEM O CITRIX - PORÉM UMA COLEGA CONSEGUIU ACESSAR PELO MESMO LINK E MESMA SENHA [ec3ac8cc-b2d8e96f-679b81f077f908.68527211] [https://oswintech.ddns.net/front/document.send.php?docid=16&#38;itemtype=Ticket&#38;items_id=73]\n \n\n\n[30-01-2025 15:52]\nAutor Alexsandro Cruz\nDescrição Conforme contato mantido via Whatsapp, problema foi solucionado.\nData de abertura 30-01-2025 15:52\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 12:36]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nPreciso do anydesk para acessar e analisar. \nData de abertura 30-01-2025 12:36\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-73/add_followup.1738263129.1343662710@oswintech.ddns.net','','mailing','add_followup'),
(844,'Ticket',73,4,2,0,1,'2025-01-30 18:52:09','2025-02-05 12:53:09',NULL,'[GLPI #0000073] Novo acompanhamento PROBLEMA AO ACESSAR SAP / CITRIX','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000073] Novo acompanhamento PROBLEMA AO ACESSAR SAP / CITRIX&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_73\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_73&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PROBLEMA AO ACESSAR SAP / CITRIX &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:30-01-2025 10:44 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- lanna1457@gmail.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PROBLEMA AO ACESSAR SAP / CITRIX&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;lanna1457@gmail.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83999075161&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;NÃO CONSIGO ACESSAR O SAP NEM O CITRIX - PORÉM UMA COLEGA CONSEGUIU ACESSAR PELO MESMO LINK E MESMA SENHA &#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=16&#38;amp;itemtype=Ticket&#38;amp;items_id=73\" target=\"_blank\"&#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-679b81f077f908.68527211\" width=\"974\" src=\"/front/document.send.php?docid=16&#38;amp;itemtype=Ticket&#38;amp;items_id=73\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 15:52]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Conforme contato mantido via Whatsapp, problema foi solucionado.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 15:52&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 12:36]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, &#60;/p&#62;\r\n&#60;p&#62;Preciso do anydesk para acessar e analisar. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 12:36&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_73 \n\n Chamado: Descrição\n\n Título : PROBLEMA AO ACESSAR SAP / CITRIX\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 10:44\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - lanna1457@gmail.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PROBLEMA AO ACESSAR SAP / CITRIX\n2) E-MAIL : lanna1457@gmail.com\n3) TELEFONE : 83999075161\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nNÃO CONSIGO ACESSAR O SAP NEM O CITRIX - PORÉM UMA COLEGA CONSEGUIU ACESSAR PELO MESMO LINK E MESMA SENHA [ec3ac8cc-b2d8e96f-679b81f077f908.68527211] [https://oswintech.ddns.net/front/document.send.php?docid=16&#38;itemtype=Ticket&#38;items_id=73]\n \n\n\n[30-01-2025 15:52]\nAutor Alexsandro Cruz\nDescrição Conforme contato mantido via Whatsapp, problema foi solucionado.\nData de abertura 30-01-2025 15:52\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 12:36]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nPreciso do anydesk para acessar e analisar. \nData de abertura 30-01-2025 12:36\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-73/add_followup.1738263129.2067590905@oswintech.ddns.net','','mailing','add_followup'),
(845,'Ticket',73,4,2,0,1,'2025-01-30 18:52:09','2025-02-05 12:53:09',NULL,'[GLPI #0000073] Novo acompanhamento PROBLEMA AO ACESSAR SAP / CITRIX','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000073] Novo acompanhamento PROBLEMA AO ACESSAR SAP / CITRIX&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_73\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_73&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PROBLEMA AO ACESSAR SAP / CITRIX &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:30-01-2025 10:44 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- lanna1457@gmail.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PROBLEMA AO ACESSAR SAP / CITRIX&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;lanna1457@gmail.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83999075161&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;NÃO CONSIGO ACESSAR O SAP NEM O CITRIX - PORÉM UMA COLEGA CONSEGUIU ACESSAR PELO MESMO LINK E MESMA SENHA &#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=16&#38;amp;itemtype=Ticket&#38;amp;items_id=73\" target=\"_blank\"&#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-679b81f077f908.68527211\" width=\"974\" src=\"/front/document.send.php?docid=16&#38;amp;itemtype=Ticket&#38;amp;items_id=73\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 15:52]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Conforme contato mantido via Whatsapp, problema foi solucionado.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 15:52&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 12:36]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, &#60;/p&#62;\r\n&#60;p&#62;Preciso do anydesk para acessar e analisar. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 12:36&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_73 \n\n Chamado: Descrição\n\n Título : PROBLEMA AO ACESSAR SAP / CITRIX\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 10:44\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - lanna1457@gmail.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PROBLEMA AO ACESSAR SAP / CITRIX\n2) E-MAIL : lanna1457@gmail.com\n3) TELEFONE : 83999075161\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nNÃO CONSIGO ACESSAR O SAP NEM O CITRIX - PORÉM UMA COLEGA CONSEGUIU ACESSAR PELO MESMO LINK E MESMA SENHA [ec3ac8cc-b2d8e96f-679b81f077f908.68527211] [https://oswintech.ddns.net/front/document.send.php?docid=16&#38;itemtype=Ticket&#38;items_id=73]\n \n\n\n[30-01-2025 15:52]\nAutor Alexsandro Cruz\nDescrição Conforme contato mantido via Whatsapp, problema foi solucionado.\nData de abertura 30-01-2025 15:52\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 12:36]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nPreciso do anydesk para acessar e analisar. \nData de abertura 30-01-2025 12:36\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-73/add_followup.1738263129.1052064533@oswintech.ddns.net','','mailing','add_followup'),
(846,'Ticket',73,4,2,0,1,'2025-01-30 18:52:09','2025-02-05 12:53:09',NULL,'[GLPI #0000073] Novo acompanhamento PROBLEMA AO ACESSAR SAP / CITRIX','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000073] Novo acompanhamento PROBLEMA AO ACESSAR SAP / CITRIX&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_73\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_73&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PROBLEMA AO ACESSAR SAP / CITRIX &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:30-01-2025 10:44 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- lanna1457@gmail.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PROBLEMA AO ACESSAR SAP / CITRIX&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;lanna1457@gmail.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83999075161&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;NÃO CONSIGO ACESSAR O SAP NEM O CITRIX - PORÉM UMA COLEGA CONSEGUIU ACESSAR PELO MESMO LINK E MESMA SENHA &#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=16&#38;amp;itemtype=Ticket&#38;amp;items_id=73\" target=\"_blank\"&#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-679b81f077f908.68527211\" width=\"974\" src=\"/front/document.send.php?docid=16&#38;amp;itemtype=Ticket&#38;amp;items_id=73\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 15:52]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Conforme contato mantido via Whatsapp, problema foi solucionado.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 15:52&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 12:36]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, &#60;/p&#62;\r\n&#60;p&#62;Preciso do anydesk para acessar e analisar. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 12:36&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_73 \n\n Chamado: Descrição\n\n Título : PROBLEMA AO ACESSAR SAP / CITRIX\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 10:44\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - lanna1457@gmail.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PROBLEMA AO ACESSAR SAP / CITRIX\n2) E-MAIL : lanna1457@gmail.com\n3) TELEFONE : 83999075161\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nNÃO CONSIGO ACESSAR O SAP NEM O CITRIX - PORÉM UMA COLEGA CONSEGUIU ACESSAR PELO MESMO LINK E MESMA SENHA [ec3ac8cc-b2d8e96f-679b81f077f908.68527211] [https://oswintech.ddns.net/front/document.send.php?docid=16&#38;itemtype=Ticket&#38;items_id=73]\n \n\n\n[30-01-2025 15:52]\nAutor Alexsandro Cruz\nDescrição Conforme contato mantido via Whatsapp, problema foi solucionado.\nData de abertura 30-01-2025 15:52\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 12:36]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nPreciso do anydesk para acessar e analisar. \nData de abertura 30-01-2025 12:36\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-73/add_followup.1738263129.907652576@oswintech.ddns.net','','mailing','add_followup'),
(847,'Ticket',73,4,2,0,1,'2025-01-30 18:52:14','2025-02-05 12:53:09',NULL,'[GLPI #0000073] Encerramento do chamado PROBLEMA AO ACESSAR SAP / CITRIX','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000073] Encerramento do chamado PROBLEMA AO ACESSAR SAP / CITRIX&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_73\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_73&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PROBLEMA AO ACESSAR SAP / CITRIX &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:30-01-2025 10:44 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:30-01-2025 15:52 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- lanna1457@gmail.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PROBLEMA AO ACESSAR SAP / CITRIX&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;lanna1457@gmail.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83999075161&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;NÃO CONSIGO ACESSAR O SAP NEM O CITRIX - PORÉM UMA COLEGA CONSEGUIU ACESSAR PELO MESMO LINK E MESMA SENHA &#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=16&#38;amp;itemtype=Ticket&#38;amp;items_id=73\" target=\"_blank\"&#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-679b81f077f908.68527211\" width=\"974\" src=\"/front/document.send.php?docid=16&#38;amp;itemtype=Ticket&#38;amp;items_id=73\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 30-01-2025 15:52&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 15:52]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Conforme contato mantido via Whatsapp, problema foi solucionado.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 15:52&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 12:36]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, &#60;/p&#62;\r\n&#60;p&#62;Preciso do anydesk para acessar e analisar. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 12:36&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_73 \n\n Chamado: Descrição\n\n Título : PROBLEMA AO ACESSAR SAP / CITRIX\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 10:44\n Data de fechamento : 30-01-2025 15:52\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - lanna1457@gmail.com\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PROBLEMA AO ACESSAR SAP / CITRIX\n2) E-MAIL : lanna1457@gmail.com\n3) TELEFONE : 83999075161\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nNÃO CONSIGO ACESSAR O SAP NEM O CITRIX - PORÉM UMA COLEGA CONSEGUIU ACESSAR PELO MESMO LINK E MESMA SENHA [ec3ac8cc-b2d8e96f-679b81f077f908.68527211] [https://oswintech.ddns.net/front/document.send.php?docid=16&#38;itemtype=Ticket&#38;items_id=73]\n \n\n Data da solução : 30-01-2025 15:52\n Tipo de solução : \n Solução : \n \n\n\n[30-01-2025 15:52]\nAutor Alexsandro Cruz\nDescrição Conforme contato mantido via Whatsapp, problema foi solucionado.\nData de abertura 30-01-2025 15:52\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 12:36]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nPreciso do anydesk para acessar e analisar. \nData de abertura 30-01-2025 12:36\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-73/closed.1738263134.2005450337@oswintech.ddns.net','','mailing','closed'),
(848,'Ticket',73,4,2,0,1,'2025-01-30 18:52:14','2025-02-05 12:53:09',NULL,'[GLPI #0000073] Encerramento do chamado PROBLEMA AO ACESSAR SAP / CITRIX','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000073] Encerramento do chamado PROBLEMA AO ACESSAR SAP / CITRIX&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_73\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_73&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PROBLEMA AO ACESSAR SAP / CITRIX &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:30-01-2025 10:44 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:30-01-2025 15:52 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- lanna1457@gmail.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PROBLEMA AO ACESSAR SAP / CITRIX&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;lanna1457@gmail.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83999075161&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;NÃO CONSIGO ACESSAR O SAP NEM O CITRIX - PORÉM UMA COLEGA CONSEGUIU ACESSAR PELO MESMO LINK E MESMA SENHA &#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=16&#38;amp;itemtype=Ticket&#38;amp;items_id=73\" target=\"_blank\"&#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-679b81f077f908.68527211\" width=\"974\" src=\"/front/document.send.php?docid=16&#38;amp;itemtype=Ticket&#38;amp;items_id=73\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 30-01-2025 15:52&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 15:52]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Conforme contato mantido via Whatsapp, problema foi solucionado.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 15:52&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 12:36]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, &#60;/p&#62;\r\n&#60;p&#62;Preciso do anydesk para acessar e analisar. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 12:36&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_73 \n\n Chamado: Descrição\n\n Título : PROBLEMA AO ACESSAR SAP / CITRIX\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 10:44\n Data de fechamento : 30-01-2025 15:52\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - lanna1457@gmail.com\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PROBLEMA AO ACESSAR SAP / CITRIX\n2) E-MAIL : lanna1457@gmail.com\n3) TELEFONE : 83999075161\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nNÃO CONSIGO ACESSAR O SAP NEM O CITRIX - PORÉM UMA COLEGA CONSEGUIU ACESSAR PELO MESMO LINK E MESMA SENHA [ec3ac8cc-b2d8e96f-679b81f077f908.68527211] [https://oswintech.ddns.net/front/document.send.php?docid=16&#38;itemtype=Ticket&#38;items_id=73]\n \n\n Data da solução : 30-01-2025 15:52\n Tipo de solução : \n Solução : \n \n\n\n[30-01-2025 15:52]\nAutor Alexsandro Cruz\nDescrição Conforme contato mantido via Whatsapp, problema foi solucionado.\nData de abertura 30-01-2025 15:52\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 12:36]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nPreciso do anydesk para acessar e analisar. \nData de abertura 30-01-2025 12:36\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-73/closed.1738263134.456000810@oswintech.ddns.net','','mailing','closed'),
(849,'Ticket',74,4,2,1,0,'2025-01-30 18:58:24','2025-01-30 18:58:24','2025-02-03 13:17:18','[GLPI #0000074] Novo acompanhamento EMAIL',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_74 \n\n Chamado: Descrição\n\n Título : EMAIL\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 14:53\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - flavia.chagas@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL\n2) E-MAIL : flavia.chagas@tecnomulti.com\n3) TELEFONE : 84 8831-7787\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nMeus emails não está saindo da caixa!\n \n\n\n[30-01-2025 15:58]\nAutor Alexsandro Cruz\nDescrição ????\nData de abertura 30-01-2025 15:58\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 15:50]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nPor gentileza me passe o ID do anydesk.\nData de abertura 30-01-2025 15:50\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 15:05]\nAutor tecnomulti\nDescrição ????\nData de abertura 30-01-2025 15:05\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(850,'Ticket',74,4,2,1,0,'2025-01-30 18:58:24','2025-01-30 18:58:24','2025-01-30 18:58:55','[GLPI #0000074] Novo acompanhamento EMAIL',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_74 \n\n Chamado: Descrição\n\n Título : EMAIL\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 14:53\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - flavia.chagas@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL\n2) E-MAIL : flavia.chagas@tecnomulti.com\n3) TELEFONE : 84 8831-7787\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nMeus emails não está saindo da caixa!\n \n\n\n[30-01-2025 15:58]\nAutor Alexsandro Cruz\nDescrição ????\nData de abertura 30-01-2025 15:58\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 15:50]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nPor gentileza me passe o ID do anydesk.\nData de abertura 30-01-2025 15:50\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 15:05]\nAutor tecnomulti\nDescrição ????\nData de abertura 30-01-2025 15:05\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(851,'Ticket',74,4,2,1,0,'2025-01-30 18:58:24','2025-01-30 18:58:24','2025-01-30 18:58:57','[GLPI #0000074] Novo acompanhamento EMAIL',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_74 \n\n Chamado: Descrição\n\n Título : EMAIL\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 14:53\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - flavia.chagas@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL\n2) E-MAIL : flavia.chagas@tecnomulti.com\n3) TELEFONE : 84 8831-7787\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nMeus emails não está saindo da caixa!\n \n\n\n[30-01-2025 15:58]\nAutor Alexsandro Cruz\nDescrição ????\nData de abertura 30-01-2025 15:58\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 15:50]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nPor gentileza me passe o ID do anydesk.\nData de abertura 30-01-2025 15:50\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 15:05]\nAutor tecnomulti\nDescrição ????\nData de abertura 30-01-2025 15:05\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(852,'Ticket',74,4,2,1,0,'2025-01-30 18:58:24','2025-01-30 18:58:24','2025-01-30 20:33:10','[GLPI #0000074] Novo acompanhamento EMAIL',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_74 \n\n Chamado: Descrição\n\n Título : EMAIL\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 14:53\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - flavia.chagas@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL\n2) E-MAIL : flavia.chagas@tecnomulti.com\n3) TELEFONE : 84 8831-7787\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nMeus emails não está saindo da caixa!\n \n\n\n[30-01-2025 15:58]\nAutor Alexsandro Cruz\nDescrição ????\nData de abertura 30-01-2025 15:58\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 15:50]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nPor gentileza me passe o ID do anydesk.\nData de abertura 30-01-2025 15:50\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 15:05]\nAutor tecnomulti\nDescrição ????\nData de abertura 30-01-2025 15:05\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(853,'Ticket',74,4,2,0,1,'2025-01-30 18:58:24','2025-02-05 12:53:09',NULL,'[GLPI #0000074] Novo acompanhamento EMAIL','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000074] Novo acompanhamento EMAIL&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_74\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_74&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:EMAIL &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:30-01-2025 14:53 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- flavia.chagas@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;EMAIL&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;flavia.chagas@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62; 84 8831-7787&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Meus emails não está saindo da caixa!&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 15:58]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;????&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 15:58&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 15:50]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, &#60;/p&#62;\r\n&#60;p&#62;Por gentileza me passe o ID do anydesk.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 15:50&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 15:05]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;????&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 15:05&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 3&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_74 \n\n Chamado: Descrição\n\n Título : EMAIL\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 14:53\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - flavia.chagas@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL\n2) E-MAIL : flavia.chagas@tecnomulti.com\n3) TELEFONE : 84 8831-7787\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nMeus emails não está saindo da caixa!\n \n\n\n[30-01-2025 15:58]\nAutor Alexsandro Cruz\nDescrição ????\nData de abertura 30-01-2025 15:58\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 15:50]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nPor gentileza me passe o ID do anydesk.\nData de abertura 30-01-2025 15:50\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 15:05]\nAutor tecnomulti\nDescrição ????\nData de abertura 30-01-2025 15:05\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-74/add_followup.1738263504.951204797@oswintech.ddns.net','','mailing','add_followup'),
(854,'Ticket',74,4,2,0,1,'2025-01-30 18:58:24','2025-02-05 12:53:09',NULL,'[GLPI #0000074] Novo acompanhamento EMAIL','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000074] Novo acompanhamento EMAIL&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_74\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_74&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:EMAIL &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:30-01-2025 14:53 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- flavia.chagas@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;EMAIL&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;flavia.chagas@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62; 84 8831-7787&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Meus emails não está saindo da caixa!&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 15:58]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;????&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 15:58&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 15:50]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, &#60;/p&#62;\r\n&#60;p&#62;Por gentileza me passe o ID do anydesk.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 15:50&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 15:05]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;????&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 15:05&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 3&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_74 \n\n Chamado: Descrição\n\n Título : EMAIL\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 14:53\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - flavia.chagas@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL\n2) E-MAIL : flavia.chagas@tecnomulti.com\n3) TELEFONE : 84 8831-7787\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nMeus emails não está saindo da caixa!\n \n\n\n[30-01-2025 15:58]\nAutor Alexsandro Cruz\nDescrição ????\nData de abertura 30-01-2025 15:58\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 15:50]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nPor gentileza me passe o ID do anydesk.\nData de abertura 30-01-2025 15:50\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 15:05]\nAutor tecnomulti\nDescrição ????\nData de abertura 30-01-2025 15:05\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-74/add_followup.1738263504.1884525950@oswintech.ddns.net','','mailing','add_followup'),
(855,'Ticket',74,4,2,0,1,'2025-01-30 18:58:24','2025-02-05 12:53:09',NULL,'[GLPI #0000074] Novo acompanhamento EMAIL','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000074] Novo acompanhamento EMAIL&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_74\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_74&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:EMAIL &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:30-01-2025 14:53 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- flavia.chagas@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;EMAIL&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;flavia.chagas@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62; 84 8831-7787&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Meus emails não está saindo da caixa!&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 15:58]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;????&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 15:58&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 15:50]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, &#60;/p&#62;\r\n&#60;p&#62;Por gentileza me passe o ID do anydesk.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 15:50&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 15:05]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;????&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 15:05&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 3&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_74 \n\n Chamado: Descrição\n\n Título : EMAIL\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 14:53\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - flavia.chagas@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL\n2) E-MAIL : flavia.chagas@tecnomulti.com\n3) TELEFONE : 84 8831-7787\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nMeus emails não está saindo da caixa!\n \n\n\n[30-01-2025 15:58]\nAutor Alexsandro Cruz\nDescrição ????\nData de abertura 30-01-2025 15:58\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 15:50]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nPor gentileza me passe o ID do anydesk.\nData de abertura 30-01-2025 15:50\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 15:05]\nAutor tecnomulti\nDescrição ????\nData de abertura 30-01-2025 15:05\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-74/add_followup.1738263504.1530051159@oswintech.ddns.net','','mailing','add_followup'),
(856,'Ticket',74,4,2,0,1,'2025-01-30 18:58:24','2025-02-05 12:53:09',NULL,'[GLPI #0000074] Novo acompanhamento EMAIL','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000074] Novo acompanhamento EMAIL&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_74\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_74&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:EMAIL &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:30-01-2025 14:53 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- flavia.chagas@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;EMAIL&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;flavia.chagas@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62; 84 8831-7787&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Meus emails não está saindo da caixa!&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 15:58]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;????&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 15:58&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 15:50]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, &#60;/p&#62;\r\n&#60;p&#62;Por gentileza me passe o ID do anydesk.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 15:50&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 15:05]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;????&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 15:05&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 3&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_74 \n\n Chamado: Descrição\n\n Título : EMAIL\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 14:53\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - flavia.chagas@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL\n2) E-MAIL : flavia.chagas@tecnomulti.com\n3) TELEFONE : 84 8831-7787\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nMeus emails não está saindo da caixa!\n \n\n\n[30-01-2025 15:58]\nAutor Alexsandro Cruz\nDescrição ????\nData de abertura 30-01-2025 15:58\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 15:50]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nPor gentileza me passe o ID do anydesk.\nData de abertura 30-01-2025 15:50\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 15:05]\nAutor tecnomulti\nDescrição ????\nData de abertura 30-01-2025 15:05\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-74/add_followup.1738263504.1168976573@oswintech.ddns.net','','mailing','add_followup'),
(857,'Ticket',75,4,2,1,0,'2025-01-30 19:14:05','2025-01-30 19:14:05','2025-02-03 13:17:18','[GLPI #0000075] Novo acompanhamento INSTALAR NOBREAK',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_75 \n\n Chamado: Descrição\n\n Título : INSTALAR NOBREAK\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 15:41\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - denilson.marques@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : INSTALAR NOBREAK\n2) E-MAIL : denilson.marques@tecnomulti.com\n3) TELEFONE : 84999811377\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nequipamento para instalação disponivel.\n \n\n\n[30-01-2025 16:14]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nSerá programada uma data para a reinstalação do nobreak. Entraremos em contato para saber a data.\n\n \nData de abertura 30-01-2025 16:14\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(858,'Ticket',75,4,2,1,0,'2025-01-30 19:14:05','2025-01-30 19:14:05','2025-01-30 19:14:55','[GLPI #0000075] Novo acompanhamento INSTALAR NOBREAK',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_75 \n\n Chamado: Descrição\n\n Título : INSTALAR NOBREAK\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 15:41\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - denilson.marques@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : INSTALAR NOBREAK\n2) E-MAIL : denilson.marques@tecnomulti.com\n3) TELEFONE : 84999811377\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nequipamento para instalação disponivel.\n \n\n\n[30-01-2025 16:14]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nSerá programada uma data para a reinstalação do nobreak. Entraremos em contato para saber a data.\n\n \nData de abertura 30-01-2025 16:14\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(859,'Ticket',75,4,2,1,0,'2025-01-30 19:14:05','2025-01-30 19:14:05','2025-01-30 19:14:57','[GLPI #0000075] Novo acompanhamento INSTALAR NOBREAK',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_75 \n\n Chamado: Descrição\n\n Título : INSTALAR NOBREAK\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 15:41\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - denilson.marques@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : INSTALAR NOBREAK\n2) E-MAIL : denilson.marques@tecnomulti.com\n3) TELEFONE : 84999811377\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nequipamento para instalação disponivel.\n \n\n\n[30-01-2025 16:14]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nSerá programada uma data para a reinstalação do nobreak. Entraremos em contato para saber a data.\n\n \nData de abertura 30-01-2025 16:14\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(860,'Ticket',75,4,2,1,0,'2025-01-30 19:14:05','2025-01-30 19:14:05','2025-01-30 20:33:10','[GLPI #0000075] Novo acompanhamento INSTALAR NOBREAK',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_75 \n\n Chamado: Descrição\n\n Título : INSTALAR NOBREAK\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 15:41\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - denilson.marques@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : INSTALAR NOBREAK\n2) E-MAIL : denilson.marques@tecnomulti.com\n3) TELEFONE : 84999811377\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nequipamento para instalação disponivel.\n \n\n\n[30-01-2025 16:14]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nSerá programada uma data para a reinstalação do nobreak. Entraremos em contato para saber a data.\n\n \nData de abertura 30-01-2025 16:14\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(861,'Ticket',75,4,2,0,1,'2025-01-30 19:14:05','2025-02-05 12:53:09',NULL,'[GLPI #0000075] Novo acompanhamento INSTALAR NOBREAK','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000075] Novo acompanhamento INSTALAR NOBREAK&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_75\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_75&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:INSTALAR NOBREAK &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:30-01-2025 15:41 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- denilson.marques@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;INSTALAR NOBREAK&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;denilson.marques@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84999811377&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;equipamento para instalação disponivel.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 16:14]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, &#60;/p&#62;\r\n&#60;p&#62;Será programada uma data para a reinstalação do nobreak. Entraremos em contato para saber a data.&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 16:14&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_75 \n\n Chamado: Descrição\n\n Título : INSTALAR NOBREAK\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 15:41\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - denilson.marques@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : INSTALAR NOBREAK\n2) E-MAIL : denilson.marques@tecnomulti.com\n3) TELEFONE : 84999811377\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nequipamento para instalação disponivel.\n \n\n\n[30-01-2025 16:14]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nSerá programada uma data para a reinstalação do nobreak. Entraremos em contato para saber a data.\n\n \nData de abertura 30-01-2025 16:14\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-75/add_followup.1738264445.1442557627@oswintech.ddns.net','','mailing','add_followup'),
(862,'Ticket',75,4,2,0,1,'2025-01-30 19:14:05','2025-02-05 12:53:09',NULL,'[GLPI #0000075] Novo acompanhamento INSTALAR NOBREAK','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000075] Novo acompanhamento INSTALAR NOBREAK&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_75\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_75&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:INSTALAR NOBREAK &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:30-01-2025 15:41 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- denilson.marques@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;INSTALAR NOBREAK&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;denilson.marques@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84999811377&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;equipamento para instalação disponivel.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 16:14]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, &#60;/p&#62;\r\n&#60;p&#62;Será programada uma data para a reinstalação do nobreak. Entraremos em contato para saber a data.&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 16:14&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_75 \n\n Chamado: Descrição\n\n Título : INSTALAR NOBREAK\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 15:41\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - denilson.marques@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : INSTALAR NOBREAK\n2) E-MAIL : denilson.marques@tecnomulti.com\n3) TELEFONE : 84999811377\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nequipamento para instalação disponivel.\n \n\n\n[30-01-2025 16:14]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nSerá programada uma data para a reinstalação do nobreak. Entraremos em contato para saber a data.\n\n \nData de abertura 30-01-2025 16:14\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-75/add_followup.1738264445.1895537631@oswintech.ddns.net','','mailing','add_followup'),
(863,'Ticket',75,4,2,0,1,'2025-01-30 19:14:05','2025-02-05 12:53:09',NULL,'[GLPI #0000075] Novo acompanhamento INSTALAR NOBREAK','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000075] Novo acompanhamento INSTALAR NOBREAK&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_75\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_75&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:INSTALAR NOBREAK &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:30-01-2025 15:41 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- denilson.marques@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;INSTALAR NOBREAK&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;denilson.marques@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84999811377&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;equipamento para instalação disponivel.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 16:14]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, &#60;/p&#62;\r\n&#60;p&#62;Será programada uma data para a reinstalação do nobreak. Entraremos em contato para saber a data.&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 16:14&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_75 \n\n Chamado: Descrição\n\n Título : INSTALAR NOBREAK\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 15:41\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - denilson.marques@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : INSTALAR NOBREAK\n2) E-MAIL : denilson.marques@tecnomulti.com\n3) TELEFONE : 84999811377\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nequipamento para instalação disponivel.\n \n\n\n[30-01-2025 16:14]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nSerá programada uma data para a reinstalação do nobreak. Entraremos em contato para saber a data.\n\n \nData de abertura 30-01-2025 16:14\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-75/add_followup.1738264445.16977307@oswintech.ddns.net','','mailing','add_followup'),
(864,'Ticket',75,4,2,0,1,'2025-01-30 19:14:05','2025-02-05 12:53:09',NULL,'[GLPI #0000075] Novo acompanhamento INSTALAR NOBREAK','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000075] Novo acompanhamento INSTALAR NOBREAK&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_75\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_75&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:INSTALAR NOBREAK &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:30-01-2025 15:41 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- denilson.marques@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;INSTALAR NOBREAK&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;denilson.marques@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84999811377&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;equipamento para instalação disponivel.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 16:14]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, &#60;/p&#62;\r\n&#60;p&#62;Será programada uma data para a reinstalação do nobreak. Entraremos em contato para saber a data.&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 16:14&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_75 \n\n Chamado: Descrição\n\n Título : INSTALAR NOBREAK\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 15:41\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - denilson.marques@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : INSTALAR NOBREAK\n2) E-MAIL : denilson.marques@tecnomulti.com\n3) TELEFONE : 84999811377\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nequipamento para instalação disponivel.\n \n\n\n[30-01-2025 16:14]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nSerá programada uma data para a reinstalação do nobreak. Entraremos em contato para saber a data.\n\n \nData de abertura 30-01-2025 16:14\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-75/add_followup.1738264445.1237092419@oswintech.ddns.net','','mailing','add_followup'),
(865,'Ticket',75,4,2,1,0,'2025-01-30 19:14:11','2025-01-30 19:14:11','2025-02-03 13:17:19','[GLPI #0000075] Atualização de um chamado INSTALAR NOBREAK',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_75 \n\n Chamado: Descrição\n\n Título : INSTALAR NOBREAK\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 15:41\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - denilson.marques@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (planejado)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : INSTALAR NOBREAK\n2) E-MAIL : denilson.marques@tecnomulti.com\n3) TELEFONE : 84999811377\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nequipamento para instalação disponivel.\n \n\n\n[30-01-2025 16:14]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nSerá programada uma data para a reinstalação do nobreak. Entraremos em contato para saber a data.\n\n \nData de abertura 30-01-2025 16:14\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','update'),
(866,'Ticket',75,4,2,0,1,'2025-01-30 19:14:11','2025-02-05 12:53:09',NULL,'[GLPI #0000075] Atualização de um chamado INSTALAR NOBREAK','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000075] Atualiza&#38;ccedil;&#38;atilde;o de um chamado INSTALAR NOBREAK&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_75\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_75&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:INSTALAR NOBREAK &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:30-01-2025 15:41 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- denilson.marques@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (planejado)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;INSTALAR NOBREAK&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;denilson.marques@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84999811377&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;equipamento para instalação disponivel.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 16:14]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, &#60;/p&#62;\r\n&#60;p&#62;Será programada uma data para a reinstalação do nobreak. Entraremos em contato para saber a data.&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 16:14&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_75 \n\n Chamado: Descrição\n\n Título : INSTALAR NOBREAK\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 15:41\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - denilson.marques@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (planejado)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : INSTALAR NOBREAK\n2) E-MAIL : denilson.marques@tecnomulti.com\n3) TELEFONE : 84999811377\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nequipamento para instalação disponivel.\n \n\n\n[30-01-2025 16:14]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nSerá programada uma data para a reinstalação do nobreak. Entraremos em contato para saber a data.\n\n \nData de abertura 30-01-2025 16:14\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-75/update.1738264451.262726905@oswintech.ddns.net','','mailing','update'),
(867,'Ticket',75,4,2,0,1,'2025-01-30 19:14:11','2025-02-05 12:53:09',NULL,'[GLPI #0000075] Atualização de um chamado INSTALAR NOBREAK','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000075] Atualiza&#38;ccedil;&#38;atilde;o de um chamado INSTALAR NOBREAK&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_75\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_75&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:INSTALAR NOBREAK &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:30-01-2025 15:41 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- denilson.marques@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (planejado)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Equipamentos/Perif&#38;eacute;ricos      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;INSTALAR NOBREAK&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;denilson.marques@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84999811377&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;equipamento para instalação disponivel.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 16:14]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, &#60;/p&#62;\r\n&#60;p&#62;Será programada uma data para a reinstalação do nobreak. Entraremos em contato para saber a data.&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 16:14&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_75 \n\n Chamado: Descrição\n\n Título : INSTALAR NOBREAK\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 15:41\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - denilson.marques@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (planejado)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Equipamentos/Periféricos  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : INSTALAR NOBREAK\n2) E-MAIL : denilson.marques@tecnomulti.com\n3) TELEFONE : 84999811377\n4) CATEGORIA : Equipamentos/Periféricos\n5) INFORME MAIS DETALHES : \nequipamento para instalação disponivel.\n \n\n\n[30-01-2025 16:14]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nSerá programada uma data para a reinstalação do nobreak. Entraremos em contato para saber a data.\n\n \nData de abertura 30-01-2025 16:14\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-75/update.1738264451.1396482785@oswintech.ddns.net','','mailing','update'),
(868,'Ticket',74,4,2,1,0,'2025-01-30 19:23:54','2025-01-30 19:23:54','2025-02-03 13:17:19','[GLPI #0000074] Novo acompanhamento EMAIL',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_74 \n\n Chamado: Descrição\n\n Título : EMAIL\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 14:53\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - flavia.chagas@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL\n2) E-MAIL : flavia.chagas@tecnomulti.com\n3) TELEFONE : 84 8831-7787\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nMeus emails não está saindo da caixa!\n \n\n\n[30-01-2025 16:23]\nAutor Alexsandro Cruz\nDescrição Chamado finalizado. Ao entrar em contato, usuário relatou que voltou ao normal o e-mail.\nData de abertura 30-01-2025 16:23\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 15:58]\nAutor Alexsandro Cruz\nDescrição ????\nData de abertura 30-01-2025 15:58\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 15:50]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nPor gentileza me passe o ID do anydesk.\nData de abertura 30-01-2025 15:50\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 15:05]\nAutor tecnomulti\nDescrição ????\nData de abertura 30-01-2025 15:05\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 4\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(869,'Ticket',74,4,2,1,0,'2025-01-30 19:23:54','2025-01-30 19:23:54','2025-01-30 19:23:55','[GLPI #0000074] Novo acompanhamento EMAIL',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_74 \n\n Chamado: Descrição\n\n Título : EMAIL\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 14:53\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - flavia.chagas@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL\n2) E-MAIL : flavia.chagas@tecnomulti.com\n3) TELEFONE : 84 8831-7787\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nMeus emails não está saindo da caixa!\n \n\n\n[30-01-2025 16:23]\nAutor Alexsandro Cruz\nDescrição Chamado finalizado. Ao entrar em contato, usuário relatou que voltou ao normal o e-mail.\nData de abertura 30-01-2025 16:23\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 15:58]\nAutor Alexsandro Cruz\nDescrição ????\nData de abertura 30-01-2025 15:58\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 15:50]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nPor gentileza me passe o ID do anydesk.\nData de abertura 30-01-2025 15:50\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 15:05]\nAutor tecnomulti\nDescrição ????\nData de abertura 30-01-2025 15:05\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 4\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(870,'Ticket',74,4,2,1,0,'2025-01-30 19:23:54','2025-01-30 19:23:54','2025-01-30 19:23:56','[GLPI #0000074] Novo acompanhamento EMAIL',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_74 \n\n Chamado: Descrição\n\n Título : EMAIL\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 14:53\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - flavia.chagas@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL\n2) E-MAIL : flavia.chagas@tecnomulti.com\n3) TELEFONE : 84 8831-7787\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nMeus emails não está saindo da caixa!\n \n\n\n[30-01-2025 16:23]\nAutor Alexsandro Cruz\nDescrição Chamado finalizado. Ao entrar em contato, usuário relatou que voltou ao normal o e-mail.\nData de abertura 30-01-2025 16:23\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 15:58]\nAutor Alexsandro Cruz\nDescrição ????\nData de abertura 30-01-2025 15:58\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 15:50]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nPor gentileza me passe o ID do anydesk.\nData de abertura 30-01-2025 15:50\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 15:05]\nAutor tecnomulti\nDescrição ????\nData de abertura 30-01-2025 15:05\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 4\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(871,'Ticket',74,4,2,1,0,'2025-01-30 19:23:54','2025-01-30 19:23:54','2025-01-30 20:33:10','[GLPI #0000074] Novo acompanhamento EMAIL',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_74 \n\n Chamado: Descrição\n\n Título : EMAIL\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 14:53\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - flavia.chagas@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL\n2) E-MAIL : flavia.chagas@tecnomulti.com\n3) TELEFONE : 84 8831-7787\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nMeus emails não está saindo da caixa!\n \n\n\n[30-01-2025 16:23]\nAutor Alexsandro Cruz\nDescrição Chamado finalizado. Ao entrar em contato, usuário relatou que voltou ao normal o e-mail.\nData de abertura 30-01-2025 16:23\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 15:58]\nAutor Alexsandro Cruz\nDescrição ????\nData de abertura 30-01-2025 15:58\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 15:50]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nPor gentileza me passe o ID do anydesk.\nData de abertura 30-01-2025 15:50\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 15:05]\nAutor tecnomulti\nDescrição ????\nData de abertura 30-01-2025 15:05\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 4\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(872,'Ticket',74,4,2,0,1,'2025-01-30 19:23:54','2025-02-10 11:06:52',NULL,'[GLPI #0000074] Novo acompanhamento EMAIL','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000074] Novo acompanhamento EMAIL&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_74\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_74&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:EMAIL &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:30-01-2025 14:53 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- flavia.chagas@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;EMAIL&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;flavia.chagas@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62; 84 8831-7787&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Meus emails não está saindo da caixa!&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 16:23]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Chamado finalizado. Ao entrar em contato, usuário relatou que voltou ao normal o e-mail.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 16:23&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 15:58]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;????&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 15:58&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 15:50]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, &#60;/p&#62;\r\n&#60;p&#62;Por gentileza me passe o ID do anydesk.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 15:50&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 15:05]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;????&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 15:05&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 4&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_74 \n\n Chamado: Descrição\n\n Título : EMAIL\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 14:53\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - flavia.chagas@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL\n2) E-MAIL : flavia.chagas@tecnomulti.com\n3) TELEFONE : 84 8831-7787\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nMeus emails não está saindo da caixa!\n \n\n\n[30-01-2025 16:23]\nAutor Alexsandro Cruz\nDescrição Chamado finalizado. Ao entrar em contato, usuário relatou que voltou ao normal o e-mail.\nData de abertura 30-01-2025 16:23\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 15:58]\nAutor Alexsandro Cruz\nDescrição ????\nData de abertura 30-01-2025 15:58\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 15:50]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nPor gentileza me passe o ID do anydesk.\nData de abertura 30-01-2025 15:50\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 15:05]\nAutor tecnomulti\nDescrição ????\nData de abertura 30-01-2025 15:05\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 4\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-74/add_followup.1738265034.407178834@oswintech.ddns.net','','mailing','add_followup'),
(873,'Ticket',74,4,2,0,1,'2025-01-30 19:23:54','2025-02-10 11:06:52',NULL,'[GLPI #0000074] Novo acompanhamento EMAIL','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000074] Novo acompanhamento EMAIL&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_74\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_74&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:EMAIL &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:30-01-2025 14:53 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- flavia.chagas@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;EMAIL&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;flavia.chagas@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62; 84 8831-7787&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Meus emails não está saindo da caixa!&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 16:23]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Chamado finalizado. Ao entrar em contato, usuário relatou que voltou ao normal o e-mail.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 16:23&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 15:58]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;????&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 15:58&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 15:50]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, &#60;/p&#62;\r\n&#60;p&#62;Por gentileza me passe o ID do anydesk.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 15:50&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 15:05]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;????&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 15:05&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 4&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_74 \n\n Chamado: Descrição\n\n Título : EMAIL\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 14:53\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - flavia.chagas@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL\n2) E-MAIL : flavia.chagas@tecnomulti.com\n3) TELEFONE : 84 8831-7787\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nMeus emails não está saindo da caixa!\n \n\n\n[30-01-2025 16:23]\nAutor Alexsandro Cruz\nDescrição Chamado finalizado. Ao entrar em contato, usuário relatou que voltou ao normal o e-mail.\nData de abertura 30-01-2025 16:23\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 15:58]\nAutor Alexsandro Cruz\nDescrição ????\nData de abertura 30-01-2025 15:58\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 15:50]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nPor gentileza me passe o ID do anydesk.\nData de abertura 30-01-2025 15:50\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 15:05]\nAutor tecnomulti\nDescrição ????\nData de abertura 30-01-2025 15:05\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 4\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-74/add_followup.1738265034.1656115216@oswintech.ddns.net','','mailing','add_followup'),
(874,'Ticket',74,4,2,0,1,'2025-01-30 19:23:54','2025-02-10 11:06:53',NULL,'[GLPI #0000074] Novo acompanhamento EMAIL','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000074] Novo acompanhamento EMAIL&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_74\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_74&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:EMAIL &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:30-01-2025 14:53 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- flavia.chagas@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;EMAIL&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;flavia.chagas@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62; 84 8831-7787&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Meus emails não está saindo da caixa!&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 16:23]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Chamado finalizado. Ao entrar em contato, usuário relatou que voltou ao normal o e-mail.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 16:23&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 15:58]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;????&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 15:58&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 15:50]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, &#60;/p&#62;\r\n&#60;p&#62;Por gentileza me passe o ID do anydesk.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 15:50&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 15:05]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;????&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 15:05&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 4&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_74 \n\n Chamado: Descrição\n\n Título : EMAIL\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 14:53\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - flavia.chagas@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL\n2) E-MAIL : flavia.chagas@tecnomulti.com\n3) TELEFONE : 84 8831-7787\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nMeus emails não está saindo da caixa!\n \n\n\n[30-01-2025 16:23]\nAutor Alexsandro Cruz\nDescrição Chamado finalizado. Ao entrar em contato, usuário relatou que voltou ao normal o e-mail.\nData de abertura 30-01-2025 16:23\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 15:58]\nAutor Alexsandro Cruz\nDescrição ????\nData de abertura 30-01-2025 15:58\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 15:50]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nPor gentileza me passe o ID do anydesk.\nData de abertura 30-01-2025 15:50\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 15:05]\nAutor tecnomulti\nDescrição ????\nData de abertura 30-01-2025 15:05\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 4\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-74/add_followup.1738265034.949977242@oswintech.ddns.net','','mailing','add_followup'),
(875,'Ticket',74,4,2,0,1,'2025-01-30 19:23:54','2025-02-10 11:06:53',NULL,'[GLPI #0000074] Novo acompanhamento EMAIL','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000074] Novo acompanhamento EMAIL&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_74\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_74&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:EMAIL &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:30-01-2025 14:53 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- flavia.chagas@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;EMAIL&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;flavia.chagas@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62; 84 8831-7787&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Meus emails não está saindo da caixa!&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 16:23]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Chamado finalizado. Ao entrar em contato, usuário relatou que voltou ao normal o e-mail.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 16:23&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 15:58]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;????&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 15:58&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 15:50]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, &#60;/p&#62;\r\n&#60;p&#62;Por gentileza me passe o ID do anydesk.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 15:50&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 15:05]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;????&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 15:05&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 4&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_74 \n\n Chamado: Descrição\n\n Título : EMAIL\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 14:53\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - flavia.chagas@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL\n2) E-MAIL : flavia.chagas@tecnomulti.com\n3) TELEFONE : 84 8831-7787\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nMeus emails não está saindo da caixa!\n \n\n\n[30-01-2025 16:23]\nAutor Alexsandro Cruz\nDescrição Chamado finalizado. Ao entrar em contato, usuário relatou que voltou ao normal o e-mail.\nData de abertura 30-01-2025 16:23\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 15:58]\nAutor Alexsandro Cruz\nDescrição ????\nData de abertura 30-01-2025 15:58\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 15:50]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nPor gentileza me passe o ID do anydesk.\nData de abertura 30-01-2025 15:50\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 15:05]\nAutor tecnomulti\nDescrição ????\nData de abertura 30-01-2025 15:05\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 4\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-74/add_followup.1738265034.408102353@oswintech.ddns.net','','mailing','add_followup'),
(876,'Ticket',74,4,2,0,1,'2025-01-30 19:23:58','2025-02-10 11:06:53',NULL,'[GLPI #0000074] Encerramento do chamado EMAIL','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000074] Encerramento do chamado EMAIL&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_74\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_74&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:EMAIL &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:30-01-2025 14:53 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:30-01-2025 16:23 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- flavia.chagas@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;EMAIL&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;flavia.chagas@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62; 84 8831-7787&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Meus emails não está saindo da caixa!&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 30-01-2025 16:23&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 16:23]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Chamado finalizado. Ao entrar em contato, usuário relatou que voltou ao normal o e-mail.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 16:23&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 15:58]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;????&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 15:58&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 15:50]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, &#60;/p&#62;\r\n&#60;p&#62;Por gentileza me passe o ID do anydesk.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 15:50&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 15:05]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;????&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 15:05&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 4&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_74 \n\n Chamado: Descrição\n\n Título : EMAIL\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 14:53\n Data de fechamento : 30-01-2025 16:23\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - flavia.chagas@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL\n2) E-MAIL : flavia.chagas@tecnomulti.com\n3) TELEFONE : 84 8831-7787\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nMeus emails não está saindo da caixa!\n \n\n Data da solução : 30-01-2025 16:23\n Tipo de solução : \n Solução : \n \n\n\n[30-01-2025 16:23]\nAutor Alexsandro Cruz\nDescrição Chamado finalizado. Ao entrar em contato, usuário relatou que voltou ao normal o e-mail.\nData de abertura 30-01-2025 16:23\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 15:58]\nAutor Alexsandro Cruz\nDescrição ????\nData de abertura 30-01-2025 15:58\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 15:50]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nPor gentileza me passe o ID do anydesk.\nData de abertura 30-01-2025 15:50\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 15:05]\nAutor tecnomulti\nDescrição ????\nData de abertura 30-01-2025 15:05\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 4\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-74/closed.1738265038.1981183618@oswintech.ddns.net','','mailing','closed'),
(877,'Ticket',74,4,2,0,1,'2025-01-30 19:23:58','2025-02-10 11:06:53',NULL,'[GLPI #0000074] Encerramento do chamado EMAIL','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000074] Encerramento do chamado EMAIL&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_74\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_74&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:EMAIL &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:30-01-2025 14:53 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:30-01-2025 16:23 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- flavia.chagas@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;EMAIL&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;flavia.chagas@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62; 84 8831-7787&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Meus emails não está saindo da caixa!&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 30-01-2025 16:23&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 16:23]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Chamado finalizado. Ao entrar em contato, usuário relatou que voltou ao normal o e-mail.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 16:23&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 15:58]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;????&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 15:58&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 15:50]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, &#60;/p&#62;\r\n&#60;p&#62;Por gentileza me passe o ID do anydesk.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 15:50&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 15:05]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;????&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 15:05&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 4&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_74 \n\n Chamado: Descrição\n\n Título : EMAIL\n Requerentes :  tecnomulti  \n Data de abertura : 30-01-2025 14:53\n Data de fechamento : 30-01-2025 16:23\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - flavia.chagas@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL\n2) E-MAIL : flavia.chagas@tecnomulti.com\n3) TELEFONE : 84 8831-7787\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nMeus emails não está saindo da caixa!\n \n\n Data da solução : 30-01-2025 16:23\n Tipo de solução : \n Solução : \n \n\n\n[30-01-2025 16:23]\nAutor Alexsandro Cruz\nDescrição Chamado finalizado. Ao entrar em contato, usuário relatou que voltou ao normal o e-mail.\nData de abertura 30-01-2025 16:23\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 15:58]\nAutor Alexsandro Cruz\nDescrição ????\nData de abertura 30-01-2025 15:58\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 15:50]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nPor gentileza me passe o ID do anydesk.\nData de abertura 30-01-2025 15:50\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 15:05]\nAutor tecnomulti\nDescrição ????\nData de abertura 30-01-2025 15:05\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 4\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-74/closed.1738265038.1072339155@oswintech.ddns.net','','mailing','closed'),
(878,'PluginFormcreatorFormAnswer',40,29,2,0,1,'2025-02-03 13:18:39','2025-02-12 12:11:34',NULL,'[GLPI] Sua requisição foi salva','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI] Sua requisi&#38;ccedil;&#38;atilde;o foi salva&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;p&#62;Olá,&#60;br /&#62;Sua requisição do GLPI foi salva com sucesso com o número 40 e transmitido para a equipe de helpdesk.&#60;br /&#62;Você pode ver suas respostas no seguinte link:&#60;br /&#62;https://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=40&#60;/p&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;','Olá,\nSua requisição do GLPI foi salva com sucesso com o número 40 e transmitido para a equipe de helpdesk.\nVocê pode ver suas respostas no seguinte link:\nhttps://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=40\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-PluginFormcreatorFormAnswer-40/plugin_formcreator_form_created.1738588719.1892501367@oswintech.ddns.net','','mailing','plugin_formcreator_form_created'),
(879,'Ticket',76,4,2,1,0,'2025-02-03 13:18:39','2025-02-03 13:18:39','2025-02-03 13:18:46','[GLPI #0000076] Novo chamado VPN com problema',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_76 \n\n Chamado: Descrição\n\n Título : VPN com problema\n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 10:18\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : VPN com problema\n2) E-MAIL : arthur.ulisses@tecnomulti.com\n3) TELEFONE : 85992155440\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nVPN aparenta estar muito lento, impossibilitando o trabalho.\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(880,'Ticket',76,4,2,1,0,'2025-02-03 13:18:39','2025-02-03 13:18:39','2025-02-03 13:18:42','[GLPI #0000076] Novo chamado VPN com problema',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_76 \n\n Chamado: Descrição\n\n Título : VPN com problema\n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 10:18\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : VPN com problema\n2) E-MAIL : arthur.ulisses@tecnomulti.com\n3) TELEFONE : 85992155440\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nVPN aparenta estar muito lento, impossibilitando o trabalho.\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(881,'Ticket',76,4,2,0,0,'2025-02-03 13:18:39','2025-02-03 13:18:39',NULL,'[GLPI #0000076] Novo chamado VPN com problema',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_76 \n\n Chamado: Descrição\n\n Título : VPN com problema\n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 10:18\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : VPN com problema\n2) E-MAIL : arthur.ulisses@tecnomulti.com\n3) TELEFONE : 85992155440\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nVPN aparenta estar muito lento, impossibilitando o trabalho.\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(882,'Ticket',76,4,2,1,0,'2025-02-03 13:18:39','2025-02-03 13:18:39','2025-02-04 16:37:42','[GLPI #0000076] Novo chamado VPN com problema',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_76 \n\n Chamado: Descrição\n\n Título : VPN com problema\n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 10:18\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : VPN com problema\n2) E-MAIL : arthur.ulisses@tecnomulti.com\n3) TELEFONE : 85992155440\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nVPN aparenta estar muito lento, impossibilitando o trabalho.\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(883,'Ticket',76,4,2,0,1,'2025-02-03 13:18:39','2025-02-12 12:11:34',NULL,'[GLPI #0000076] Novo chamado VPN com problema','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000076] Novo chamado VPN com problema&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_76\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_76&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:VPN com problema &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:03-02-2025 10:18 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;VPN com problema&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;arthur.ulisses@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;85992155440&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;VPN aparenta estar muito lento, impossibilitando o trabalho.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_76 \n\n Chamado: Descrição\n\n Título : VPN com problema\n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 10:18\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : VPN com problema\n2) E-MAIL : arthur.ulisses@tecnomulti.com\n3) TELEFONE : 85992155440\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nVPN aparenta estar muito lento, impossibilitando o trabalho.\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-76/new@oswintech.ddns.net','','mailing','new'),
(884,'Ticket',76,4,2,0,1,'2025-02-03 13:18:39','2025-02-12 12:11:34',NULL,'[GLPI #0000076] Novo chamado VPN com problema','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000076] Novo chamado VPN com problema&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_76\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_76&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:VPN com problema &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:03-02-2025 10:18 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;VPN com problema&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;arthur.ulisses@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;85992155440&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;VPN aparenta estar muito lento, impossibilitando o trabalho.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_76 \n\n Chamado: Descrição\n\n Título : VPN com problema\n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 10:18\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : VPN com problema\n2) E-MAIL : arthur.ulisses@tecnomulti.com\n3) TELEFONE : 85992155440\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nVPN aparenta estar muito lento, impossibilitando o trabalho.\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-76/new@oswintech.ddns.net','','mailing','new'),
(885,'Ticket',76,4,2,0,1,'2025-02-03 13:18:39','2025-02-12 12:11:34',NULL,'[GLPI #0000076] Novo chamado VPN com problema','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000076] Novo chamado VPN com problema&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_76\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_76&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:VPN com problema &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:03-02-2025 10:18 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;VPN com problema&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;arthur.ulisses@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;85992155440&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;VPN aparenta estar muito lento, impossibilitando o trabalho.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_76 \n\n Chamado: Descrição\n\n Título : VPN com problema\n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 10:18\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : VPN com problema\n2) E-MAIL : arthur.ulisses@tecnomulti.com\n3) TELEFONE : 85992155440\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nVPN aparenta estar muito lento, impossibilitando o trabalho.\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-76/new@oswintech.ddns.net','','mailing','new'),
(886,'Ticket',76,4,2,0,1,'2025-02-03 13:18:39','2025-02-12 12:11:34',NULL,'[GLPI #0000076] Novo chamado VPN com problema','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000076] Novo chamado VPN com problema&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_76\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_76&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:VPN com problema &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:03-02-2025 10:18 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;VPN com problema&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;arthur.ulisses@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;85992155440&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;VPN aparenta estar muito lento, impossibilitando o trabalho.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_76 \n\n Chamado: Descrição\n\n Título : VPN com problema\n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 10:18\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : VPN com problema\n2) E-MAIL : arthur.ulisses@tecnomulti.com\n3) TELEFONE : 85992155440\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nVPN aparenta estar muito lento, impossibilitando o trabalho.\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-76/new@oswintech.ddns.net','','mailing','new'),
(887,'Ticket',76,4,2,1,0,'2025-02-03 13:49:47','2025-02-03 13:49:47','2025-02-03 13:51:06','[GLPI #0000076] Novo acompanhamento VPN com problema',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_76 \n\n Chamado: Descrição\n\n Título : VPN com problema\n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 10:18\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - arthur.ulisses@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : VPN com problema\n2) E-MAIL : arthur.ulisses@tecnomulti.com\n3) TELEFONE : 85992155440\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nVPN aparenta estar muito lento, impossibilitando o trabalho.\n \n\n\n[03-02-2025 10:49]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nMe passa teu anydesk. \nData de abertura 03-02-2025 10:49\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(888,'Ticket',76,4,2,1,0,'2025-02-03 13:49:47','2025-02-03 13:49:47','2025-02-03 13:49:53','[GLPI #0000076] Novo acompanhamento VPN com problema',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_76 \n\n Chamado: Descrição\n\n Título : VPN com problema\n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 10:18\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - arthur.ulisses@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : VPN com problema\n2) E-MAIL : arthur.ulisses@tecnomulti.com\n3) TELEFONE : 85992155440\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nVPN aparenta estar muito lento, impossibilitando o trabalho.\n \n\n\n[03-02-2025 10:49]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nMe passa teu anydesk. \nData de abertura 03-02-2025 10:49\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(889,'Ticket',76,4,2,0,0,'2025-02-03 13:49:47','2025-02-03 13:49:47',NULL,'[GLPI #0000076] Novo acompanhamento VPN com problema',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_76 \n\n Chamado: Descrição\n\n Título : VPN com problema\n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 10:18\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - arthur.ulisses@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : VPN com problema\n2) E-MAIL : arthur.ulisses@tecnomulti.com\n3) TELEFONE : 85992155440\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nVPN aparenta estar muito lento, impossibilitando o trabalho.\n \n\n\n[03-02-2025 10:49]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nMe passa teu anydesk. \nData de abertura 03-02-2025 10:49\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(890,'Ticket',76,4,2,1,0,'2025-02-03 13:49:47','2025-02-03 13:49:47','2025-02-04 16:37:42','[GLPI #0000076] Novo acompanhamento VPN com problema',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_76 \n\n Chamado: Descrição\n\n Título : VPN com problema\n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 10:18\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - arthur.ulisses@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : VPN com problema\n2) E-MAIL : arthur.ulisses@tecnomulti.com\n3) TELEFONE : 85992155440\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nVPN aparenta estar muito lento, impossibilitando o trabalho.\n \n\n\n[03-02-2025 10:49]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nMe passa teu anydesk. \nData de abertura 03-02-2025 10:49\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(891,'Ticket',76,4,2,0,1,'2025-02-03 13:49:47','2025-02-12 12:11:34',NULL,'[GLPI #0000076] Novo acompanhamento VPN com problema','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000076] Novo acompanhamento VPN com problema&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_76\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_76&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:VPN com problema &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:03-02-2025 10:18 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- arthur.ulisses@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;VPN com problema&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;arthur.ulisses@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;85992155440&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;VPN aparenta estar muito lento, impossibilitando o trabalho.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [03-02-2025 10:49]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Me passa teu anydesk. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;03-02-2025 10:49&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_76 \n\n Chamado: Descrição\n\n Título : VPN com problema\n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 10:18\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - arthur.ulisses@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : VPN com problema\n2) E-MAIL : arthur.ulisses@tecnomulti.com\n3) TELEFONE : 85992155440\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nVPN aparenta estar muito lento, impossibilitando o trabalho.\n \n\n\n[03-02-2025 10:49]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nMe passa teu anydesk. \nData de abertura 03-02-2025 10:49\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-76/add_followup.1738590588.932178505@oswintech.ddns.net','','mailing','add_followup'),
(892,'Ticket',76,4,2,0,1,'2025-02-03 13:49:47','2025-02-12 12:11:34',NULL,'[GLPI #0000076] Novo acompanhamento VPN com problema','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000076] Novo acompanhamento VPN com problema&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_76\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_76&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:VPN com problema &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:03-02-2025 10:18 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- arthur.ulisses@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;VPN com problema&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;arthur.ulisses@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;85992155440&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;VPN aparenta estar muito lento, impossibilitando o trabalho.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [03-02-2025 10:49]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Me passa teu anydesk. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;03-02-2025 10:49&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_76 \n\n Chamado: Descrição\n\n Título : VPN com problema\n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 10:18\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - arthur.ulisses@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : VPN com problema\n2) E-MAIL : arthur.ulisses@tecnomulti.com\n3) TELEFONE : 85992155440\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nVPN aparenta estar muito lento, impossibilitando o trabalho.\n \n\n\n[03-02-2025 10:49]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nMe passa teu anydesk. \nData de abertura 03-02-2025 10:49\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-76/add_followup.1738590588.242305130@oswintech.ddns.net','','mailing','add_followup'),
(893,'Ticket',76,4,2,0,1,'2025-02-03 13:49:47','2025-02-12 12:11:34',NULL,'[GLPI #0000076] Novo acompanhamento VPN com problema','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000076] Novo acompanhamento VPN com problema&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_76\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_76&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:VPN com problema &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:03-02-2025 10:18 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- arthur.ulisses@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;VPN com problema&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;arthur.ulisses@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;85992155440&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;VPN aparenta estar muito lento, impossibilitando o trabalho.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [03-02-2025 10:49]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Me passa teu anydesk. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;03-02-2025 10:49&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_76 \n\n Chamado: Descrição\n\n Título : VPN com problema\n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 10:18\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - arthur.ulisses@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : VPN com problema\n2) E-MAIL : arthur.ulisses@tecnomulti.com\n3) TELEFONE : 85992155440\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nVPN aparenta estar muito lento, impossibilitando o trabalho.\n \n\n\n[03-02-2025 10:49]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nMe passa teu anydesk. \nData de abertura 03-02-2025 10:49\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-76/add_followup.1738590588.819709240@oswintech.ddns.net','','mailing','add_followup'),
(894,'Ticket',76,4,2,0,1,'2025-02-03 13:49:47','2025-02-12 12:11:34',NULL,'[GLPI #0000076] Novo acompanhamento VPN com problema','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000076] Novo acompanhamento VPN com problema&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_76\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_76&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:VPN com problema &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:03-02-2025 10:18 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- arthur.ulisses@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;VPN com problema&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;arthur.ulisses@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;85992155440&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;VPN aparenta estar muito lento, impossibilitando o trabalho.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [03-02-2025 10:49]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Me passa teu anydesk. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;03-02-2025 10:49&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_76 \n\n Chamado: Descrição\n\n Título : VPN com problema\n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 10:18\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - arthur.ulisses@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : VPN com problema\n2) E-MAIL : arthur.ulisses@tecnomulti.com\n3) TELEFONE : 85992155440\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nVPN aparenta estar muito lento, impossibilitando o trabalho.\n \n\n\n[03-02-2025 10:49]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nMe passa teu anydesk. \nData de abertura 03-02-2025 10:49\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-76/add_followup.1738590588.724702573@oswintech.ddns.net','','mailing','add_followup'),
(895,'Ticket',76,4,2,1,0,'2025-02-03 13:49:52','2025-02-03 13:49:52','2025-02-03 13:51:07','[GLPI #0000076] Atualização de um chamado VPN com problema',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_76 \n\n Chamado: Descrição\n\n Título : VPN com problema\n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 10:18\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - arthur.ulisses@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : VPN com problema\n2) E-MAIL : arthur.ulisses@tecnomulti.com\n3) TELEFONE : 85992155440\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nVPN aparenta estar muito lento, impossibilitando o trabalho.\n \n\n\n[03-02-2025 10:49]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nMe passa teu anydesk. \nData de abertura 03-02-2025 10:49\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','update'),
(896,'Ticket',76,4,2,0,1,'2025-02-03 13:49:52','2025-02-12 12:11:34',NULL,'[GLPI #0000076] Atualização de um chamado VPN com problema','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000076] Atualiza&#38;ccedil;&#38;atilde;o de um chamado VPN com problema&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_76\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_76&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:VPN com problema &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:03-02-2025 10:18 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- arthur.ulisses@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;VPN com problema&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;arthur.ulisses@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;85992155440&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;VPN aparenta estar muito lento, impossibilitando o trabalho.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [03-02-2025 10:49]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Me passa teu anydesk. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;03-02-2025 10:49&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_76 \n\n Chamado: Descrição\n\n Título : VPN com problema\n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 10:18\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - arthur.ulisses@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : VPN com problema\n2) E-MAIL : arthur.ulisses@tecnomulti.com\n3) TELEFONE : 85992155440\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nVPN aparenta estar muito lento, impossibilitando o trabalho.\n \n\n\n[03-02-2025 10:49]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nMe passa teu anydesk. \nData de abertura 03-02-2025 10:49\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-76/update.1738590592.2097514406@oswintech.ddns.net','','mailing','update'),
(897,'Ticket',76,4,2,0,1,'2025-02-03 13:49:52','2025-02-14 14:40:13',NULL,'[GLPI #0000076] Atualização de um chamado VPN com problema','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000076] Atualiza&#38;ccedil;&#38;atilde;o de um chamado VPN com problema&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_76\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_76&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:VPN com problema &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:03-02-2025 10:18 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- arthur.ulisses@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;VPN com problema&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;arthur.ulisses@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;85992155440&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;VPN aparenta estar muito lento, impossibilitando o trabalho.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [03-02-2025 10:49]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Me passa teu anydesk. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;03-02-2025 10:49&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_76 \n\n Chamado: Descrição\n\n Título : VPN com problema\n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 10:18\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - arthur.ulisses@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : VPN com problema\n2) E-MAIL : arthur.ulisses@tecnomulti.com\n3) TELEFONE : 85992155440\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nVPN aparenta estar muito lento, impossibilitando o trabalho.\n \n\n\n[03-02-2025 10:49]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nMe passa teu anydesk. \nData de abertura 03-02-2025 10:49\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-76/update.1738590592.1529291995@oswintech.ddns.net','','mailing','update'),
(898,'Ticket',76,4,2,1,0,'2025-02-03 13:51:42','2025-02-03 13:51:42','2025-02-03 13:51:43','[GLPI #0000076] Novo acompanhamento VPN com problema',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_76 \n\n Chamado: Descrição\n\n Título : VPN com problema\n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 10:18\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - arthur.ulisses@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : VPN com problema\n2) E-MAIL : arthur.ulisses@tecnomulti.com\n3) TELEFONE : 85992155440\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nVPN aparenta estar muito lento, impossibilitando o trabalho.\n \n\n\n[03-02-2025 10:51]\nAutor tecnomulti\nDescrição 1800374098\nData de abertura 03-02-2025 10:51\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[03-02-2025 10:49]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nMe passa teu anydesk. \nData de abertura 03-02-2025 10:49\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(899,'Ticket',76,4,2,1,0,'2025-02-03 13:51:42','2025-02-03 13:51:42','2025-02-03 13:51:58','[GLPI #0000076] Novo acompanhamento VPN com problema',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_76 \n\n Chamado: Descrição\n\n Título : VPN com problema\n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 10:18\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - arthur.ulisses@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : VPN com problema\n2) E-MAIL : arthur.ulisses@tecnomulti.com\n3) TELEFONE : 85992155440\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nVPN aparenta estar muito lento, impossibilitando o trabalho.\n \n\n\n[03-02-2025 10:51]\nAutor tecnomulti\nDescrição 1800374098\nData de abertura 03-02-2025 10:51\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[03-02-2025 10:49]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nMe passa teu anydesk. \nData de abertura 03-02-2025 10:49\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(900,'Ticket',76,4,2,0,0,'2025-02-03 13:51:42','2025-02-03 13:51:42',NULL,'[GLPI #0000076] Novo acompanhamento VPN com problema',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_76 \n\n Chamado: Descrição\n\n Título : VPN com problema\n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 10:18\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - arthur.ulisses@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : VPN com problema\n2) E-MAIL : arthur.ulisses@tecnomulti.com\n3) TELEFONE : 85992155440\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nVPN aparenta estar muito lento, impossibilitando o trabalho.\n \n\n\n[03-02-2025 10:51]\nAutor tecnomulti\nDescrição 1800374098\nData de abertura 03-02-2025 10:51\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[03-02-2025 10:49]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nMe passa teu anydesk. \nData de abertura 03-02-2025 10:49\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(901,'Ticket',76,4,2,1,0,'2025-02-03 13:51:42','2025-02-03 13:51:42','2025-02-04 16:37:44','[GLPI #0000076] Novo acompanhamento VPN com problema',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_76 \n\n Chamado: Descrição\n\n Título : VPN com problema\n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 10:18\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - arthur.ulisses@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : VPN com problema\n2) E-MAIL : arthur.ulisses@tecnomulti.com\n3) TELEFONE : 85992155440\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nVPN aparenta estar muito lento, impossibilitando o trabalho.\n \n\n\n[03-02-2025 10:51]\nAutor tecnomulti\nDescrição 1800374098\nData de abertura 03-02-2025 10:51\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[03-02-2025 10:49]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nMe passa teu anydesk. \nData de abertura 03-02-2025 10:49\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(902,'Ticket',76,4,2,0,1,'2025-02-03 13:51:42','2025-02-14 14:40:13',NULL,'[GLPI #0000076] Novo acompanhamento VPN com problema','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000076] Novo acompanhamento VPN com problema&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_76\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_76&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:VPN com problema &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:03-02-2025 10:18 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- arthur.ulisses@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;VPN com problema&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;arthur.ulisses@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;85992155440&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;VPN aparenta estar muito lento, impossibilitando o trabalho.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [03-02-2025 10:51]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;1800374098&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;03-02-2025 10:51&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [03-02-2025 10:49]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Me passa teu anydesk. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;03-02-2025 10:49&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_76 \n\n Chamado: Descrição\n\n Título : VPN com problema\n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 10:18\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - arthur.ulisses@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : VPN com problema\n2) E-MAIL : arthur.ulisses@tecnomulti.com\n3) TELEFONE : 85992155440\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nVPN aparenta estar muito lento, impossibilitando o trabalho.\n \n\n\n[03-02-2025 10:51]\nAutor tecnomulti\nDescrição 1800374098\nData de abertura 03-02-2025 10:51\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[03-02-2025 10:49]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nMe passa teu anydesk. \nData de abertura 03-02-2025 10:49\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-76/add_followup.1738590702.517641222@oswintech.ddns.net','','mailing','add_followup'),
(903,'Ticket',76,4,2,0,1,'2025-02-03 13:51:42','2025-02-14 14:40:13',NULL,'[GLPI #0000076] Novo acompanhamento VPN com problema','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000076] Novo acompanhamento VPN com problema&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_76\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_76&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:VPN com problema &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:03-02-2025 10:18 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- arthur.ulisses@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;VPN com problema&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;arthur.ulisses@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;85992155440&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;VPN aparenta estar muito lento, impossibilitando o trabalho.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [03-02-2025 10:51]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;1800374098&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;03-02-2025 10:51&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [03-02-2025 10:49]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Me passa teu anydesk. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;03-02-2025 10:49&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_76 \n\n Chamado: Descrição\n\n Título : VPN com problema\n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 10:18\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - arthur.ulisses@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : VPN com problema\n2) E-MAIL : arthur.ulisses@tecnomulti.com\n3) TELEFONE : 85992155440\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nVPN aparenta estar muito lento, impossibilitando o trabalho.\n \n\n\n[03-02-2025 10:51]\nAutor tecnomulti\nDescrição 1800374098\nData de abertura 03-02-2025 10:51\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[03-02-2025 10:49]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nMe passa teu anydesk. \nData de abertura 03-02-2025 10:49\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-76/add_followup.1738590702.752632143@oswintech.ddns.net','','mailing','add_followup'),
(904,'Ticket',76,4,2,0,1,'2025-02-03 13:51:42','2025-02-14 14:40:13',NULL,'[GLPI #0000076] Novo acompanhamento VPN com problema','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000076] Novo acompanhamento VPN com problema&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_76\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_76&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:VPN com problema &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:03-02-2025 10:18 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- arthur.ulisses@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;VPN com problema&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;arthur.ulisses@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;85992155440&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;VPN aparenta estar muito lento, impossibilitando o trabalho.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [03-02-2025 10:51]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;1800374098&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;03-02-2025 10:51&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [03-02-2025 10:49]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Me passa teu anydesk. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;03-02-2025 10:49&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_76 \n\n Chamado: Descrição\n\n Título : VPN com problema\n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 10:18\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - arthur.ulisses@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : VPN com problema\n2) E-MAIL : arthur.ulisses@tecnomulti.com\n3) TELEFONE : 85992155440\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nVPN aparenta estar muito lento, impossibilitando o trabalho.\n \n\n\n[03-02-2025 10:51]\nAutor tecnomulti\nDescrição 1800374098\nData de abertura 03-02-2025 10:51\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[03-02-2025 10:49]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nMe passa teu anydesk. \nData de abertura 03-02-2025 10:49\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-76/add_followup.1738590702.1353609153@oswintech.ddns.net','','mailing','add_followup'),
(905,'Ticket',76,4,2,0,1,'2025-02-03 13:51:42','2025-02-14 14:40:13',NULL,'[GLPI #0000076] Novo acompanhamento VPN com problema','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000076] Novo acompanhamento VPN com problema&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_76\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_76&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:VPN com problema &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:03-02-2025 10:18 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- arthur.ulisses@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;VPN com problema&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;arthur.ulisses@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;85992155440&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;VPN aparenta estar muito lento, impossibilitando o trabalho.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [03-02-2025 10:51]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;1800374098&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;03-02-2025 10:51&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [03-02-2025 10:49]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Me passa teu anydesk. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;03-02-2025 10:49&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_76 \n\n Chamado: Descrição\n\n Título : VPN com problema\n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 10:18\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - arthur.ulisses@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : VPN com problema\n2) E-MAIL : arthur.ulisses@tecnomulti.com\n3) TELEFONE : 85992155440\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nVPN aparenta estar muito lento, impossibilitando o trabalho.\n \n\n\n[03-02-2025 10:51]\nAutor tecnomulti\nDescrição 1800374098\nData de abertura 03-02-2025 10:51\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[03-02-2025 10:49]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nMe passa teu anydesk. \nData de abertura 03-02-2025 10:49\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-76/add_followup.1738590702.1293820963@oswintech.ddns.net','','mailing','add_followup'),
(906,'PluginFormcreatorFormAnswer',41,29,2,0,1,'2025-02-03 17:21:14','2025-02-17 13:29:16',NULL,'[GLPI] Sua requisição foi salva','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI] Sua requisi&#38;ccedil;&#38;atilde;o foi salva&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;p&#62;Olá,&#60;br /&#62;Sua requisição do GLPI foi salva com sucesso com o número 41 e transmitido para a equipe de helpdesk.&#60;br /&#62;Você pode ver suas respostas no seguinte link:&#60;br /&#62;https://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=41&#60;/p&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;','Olá,\nSua requisição do GLPI foi salva com sucesso com o número 41 e transmitido para a equipe de helpdesk.\nVocê pode ver suas respostas no seguinte link:\nhttps://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=41\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-PluginFormcreatorFormAnswer-41/plugin_formcreator_form_created.1738603274.1633160893@oswintech.ddns.net','','mailing','plugin_formcreator_form_created'),
(907,'Ticket',77,4,2,1,0,'2025-02-03 17:21:14','2025-02-03 17:21:14','2025-02-03 19:23:09','[GLPI #0000077] Novo chamado VPN FIBRASIL',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_77 \n\n Chamado: Descrição\n\n Título : VPN FIBRASIL\n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 14:21\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : VPN FIBRASIL\n2) E-MAIL : danielle.silva@tecnomulti.com\n3) TELEFONE : 81 99256-9899\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nA VPN da Fibrasil aprensentando erro ao acesso . \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(908,'Ticket',77,4,2,1,0,'2025-02-03 17:21:14','2025-02-03 17:21:14','2025-02-03 17:22:06','[GLPI #0000077] Novo chamado VPN FIBRASIL',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_77 \n\n Chamado: Descrição\n\n Título : VPN FIBRASIL\n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 14:21\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : VPN FIBRASIL\n2) E-MAIL : danielle.silva@tecnomulti.com\n3) TELEFONE : 81 99256-9899\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nA VPN da Fibrasil aprensentando erro ao acesso . \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(909,'Ticket',77,4,2,0,0,'2025-02-03 17:21:14','2025-02-03 17:21:14',NULL,'[GLPI #0000077] Novo chamado VPN FIBRASIL',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_77 \n\n Chamado: Descrição\n\n Título : VPN FIBRASIL\n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 14:21\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : VPN FIBRASIL\n2) E-MAIL : danielle.silva@tecnomulti.com\n3) TELEFONE : 81 99256-9899\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nA VPN da Fibrasil aprensentando erro ao acesso . \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(910,'Ticket',77,4,2,1,0,'2025-02-03 17:21:14','2025-02-03 17:21:14','2025-02-04 16:37:44','[GLPI #0000077] Novo chamado VPN FIBRASIL',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_77 \n\n Chamado: Descrição\n\n Título : VPN FIBRASIL\n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 14:21\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : VPN FIBRASIL\n2) E-MAIL : danielle.silva@tecnomulti.com\n3) TELEFONE : 81 99256-9899\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nA VPN da Fibrasil aprensentando erro ao acesso . \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(911,'Ticket',77,4,2,0,1,'2025-02-03 17:21:14','2025-02-17 13:29:16',NULL,'[GLPI #0000077] Novo chamado VPN FIBRASIL','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000077] Novo chamado VPN FIBRASIL&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_77\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_77&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:VPN FIBRASIL &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:03-02-2025 14:21 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;VPN FIBRASIL&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;danielle.silva@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62; 81 99256-9899&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;A VPN da Fibrasil aprensentando erro ao acesso . &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_77 \n\n Chamado: Descrição\n\n Título : VPN FIBRASIL\n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 14:21\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : VPN FIBRASIL\n2) E-MAIL : danielle.silva@tecnomulti.com\n3) TELEFONE : 81 99256-9899\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nA VPN da Fibrasil aprensentando erro ao acesso . \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-77/new@oswintech.ddns.net','','mailing','new'),
(912,'Ticket',77,4,2,0,1,'2025-02-03 17:21:14','2025-02-17 13:29:16',NULL,'[GLPI #0000077] Novo chamado VPN FIBRASIL','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000077] Novo chamado VPN FIBRASIL&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_77\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_77&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:VPN FIBRASIL &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:03-02-2025 14:21 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;VPN FIBRASIL&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;danielle.silva@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62; 81 99256-9899&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;A VPN da Fibrasil aprensentando erro ao acesso . &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_77 \n\n Chamado: Descrição\n\n Título : VPN FIBRASIL\n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 14:21\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : VPN FIBRASIL\n2) E-MAIL : danielle.silva@tecnomulti.com\n3) TELEFONE : 81 99256-9899\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nA VPN da Fibrasil aprensentando erro ao acesso . \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-77/new@oswintech.ddns.net','','mailing','new'),
(913,'Ticket',77,4,2,0,1,'2025-02-03 17:21:14','2025-02-17 13:29:16',NULL,'[GLPI #0000077] Novo chamado VPN FIBRASIL','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000077] Novo chamado VPN FIBRASIL&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_77\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_77&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:VPN FIBRASIL &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:03-02-2025 14:21 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;VPN FIBRASIL&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;danielle.silva@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62; 81 99256-9899&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;A VPN da Fibrasil aprensentando erro ao acesso . &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_77 \n\n Chamado: Descrição\n\n Título : VPN FIBRASIL\n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 14:21\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : VPN FIBRASIL\n2) E-MAIL : danielle.silva@tecnomulti.com\n3) TELEFONE : 81 99256-9899\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nA VPN da Fibrasil aprensentando erro ao acesso . \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-77/new@oswintech.ddns.net','','mailing','new'),
(914,'Ticket',77,4,2,0,1,'2025-02-03 17:21:14','2025-02-17 13:29:16',NULL,'[GLPI #0000077] Novo chamado VPN FIBRASIL','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000077] Novo chamado VPN FIBRASIL&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_77\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_77&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:VPN FIBRASIL &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:03-02-2025 14:21 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;VPN FIBRASIL&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;danielle.silva@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62; 81 99256-9899&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;A VPN da Fibrasil aprensentando erro ao acesso . &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_77 \n\n Chamado: Descrição\n\n Título : VPN FIBRASIL\n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 14:21\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : VPN FIBRASIL\n2) E-MAIL : danielle.silva@tecnomulti.com\n3) TELEFONE : 81 99256-9899\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nA VPN da Fibrasil aprensentando erro ao acesso . \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-77/new@oswintech.ddns.net','','mailing','new'),
(915,'PluginFormcreatorFormAnswer',42,29,2,0,1,'2025-02-03 17:44:33','2025-02-17 13:29:16',NULL,'[GLPI] Sua requisição foi salva','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI] Sua requisi&#38;ccedil;&#38;atilde;o foi salva&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;p&#62;Olá,&#60;br /&#62;Sua requisição do GLPI foi salva com sucesso com o número 42 e transmitido para a equipe de helpdesk.&#60;br /&#62;Você pode ver suas respostas no seguinte link:&#60;br /&#62;https://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=42&#60;/p&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;','Olá,\nSua requisição do GLPI foi salva com sucesso com o número 42 e transmitido para a equipe de helpdesk.\nVocê pode ver suas respostas no seguinte link:\nhttps://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=42\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-PluginFormcreatorFormAnswer-42/plugin_formcreator_form_created.1738604673.663999599@oswintech.ddns.net','','mailing','plugin_formcreator_form_created'),
(916,'Ticket',78,4,2,1,0,'2025-02-03 17:44:33','2025-02-03 17:44:33','2025-02-03 19:23:09','[GLPI #0000078] Novo chamado Erro Envio de mensagens ',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_78 \n\n Chamado: Descrição\n\n Título : Erro Envio de mensagens \n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 14:44\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Erro Envio de mensagens \n2) E-MAIL : mario.lopes@tecnomulti.com\n3) TELEFONE : 83993220200\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \n\"Esta mensagem foi criada automaticamente pelo software de entrega de correio.\n\n \n\nUma mensagem que você enviou não pôde ser entregue a um ou mais destinatários. Este é um erro permanente. Os seguintes endereços falharam:\"\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(917,'Ticket',78,4,2,1,0,'2025-02-03 17:44:33','2025-02-03 17:44:33','2025-02-03 17:45:06','[GLPI #0000078] Novo chamado Erro Envio de mensagens ',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_78 \n\n Chamado: Descrição\n\n Título : Erro Envio de mensagens \n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 14:44\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Erro Envio de mensagens \n2) E-MAIL : mario.lopes@tecnomulti.com\n3) TELEFONE : 83993220200\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \n\"Esta mensagem foi criada automaticamente pelo software de entrega de correio.\n\n \n\nUma mensagem que você enviou não pôde ser entregue a um ou mais destinatários. Este é um erro permanente. Os seguintes endereços falharam:\"\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(918,'Ticket',78,4,2,0,0,'2025-02-03 17:44:33','2025-02-03 17:44:33',NULL,'[GLPI #0000078] Novo chamado Erro Envio de mensagens ',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_78 \n\n Chamado: Descrição\n\n Título : Erro Envio de mensagens \n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 14:44\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Erro Envio de mensagens \n2) E-MAIL : mario.lopes@tecnomulti.com\n3) TELEFONE : 83993220200\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \n\"Esta mensagem foi criada automaticamente pelo software de entrega de correio.\n\n \n\nUma mensagem que você enviou não pôde ser entregue a um ou mais destinatários. Este é um erro permanente. Os seguintes endereços falharam:\"\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(919,'Ticket',78,4,2,1,0,'2025-02-03 17:44:33','2025-02-03 17:44:33','2025-02-04 16:37:44','[GLPI #0000078] Novo chamado Erro Envio de mensagens ',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_78 \n\n Chamado: Descrição\n\n Título : Erro Envio de mensagens \n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 14:44\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Erro Envio de mensagens \n2) E-MAIL : mario.lopes@tecnomulti.com\n3) TELEFONE : 83993220200\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \n\"Esta mensagem foi criada automaticamente pelo software de entrega de correio.\n\n \n\nUma mensagem que você enviou não pôde ser entregue a um ou mais destinatários. Este é um erro permanente. Os seguintes endereços falharam:\"\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(920,'Ticket',78,4,2,0,1,'2025-02-03 17:44:33','2025-02-17 13:29:16',NULL,'[GLPI #0000078] Novo chamado Erro Envio de mensagens ','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000078] Novo chamado Erro Envio de mensagens &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_78\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_78&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Erro Envio de mensagens  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:03-02-2025 14:44 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Erro Envio de mensagens &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;mario.lopes@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83993220200&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;\"Esta mensagem foi criada automaticamente pelo software de entrega de correio.&#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;\n&#60;p&#62;Uma mensagem que você enviou não pôde ser entregue a um ou mais destinatários. Este é um erro permanente. Os seguintes endereços falharam:\"&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_78 \n\n Chamado: Descrição\n\n Título : Erro Envio de mensagens \n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 14:44\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Erro Envio de mensagens \n2) E-MAIL : mario.lopes@tecnomulti.com\n3) TELEFONE : 83993220200\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \n\"Esta mensagem foi criada automaticamente pelo software de entrega de correio.\n\n \n\nUma mensagem que você enviou não pôde ser entregue a um ou mais destinatários. Este é um erro permanente. Os seguintes endereços falharam:\"\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-78/new@oswintech.ddns.net','','mailing','new'),
(921,'Ticket',78,4,2,0,1,'2025-02-03 17:44:33','2025-02-17 13:29:16',NULL,'[GLPI #0000078] Novo chamado Erro Envio de mensagens ','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000078] Novo chamado Erro Envio de mensagens &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_78\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_78&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Erro Envio de mensagens  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:03-02-2025 14:44 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Erro Envio de mensagens &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;mario.lopes@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83993220200&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;\"Esta mensagem foi criada automaticamente pelo software de entrega de correio.&#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;\n&#60;p&#62;Uma mensagem que você enviou não pôde ser entregue a um ou mais destinatários. Este é um erro permanente. Os seguintes endereços falharam:\"&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_78 \n\n Chamado: Descrição\n\n Título : Erro Envio de mensagens \n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 14:44\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Erro Envio de mensagens \n2) E-MAIL : mario.lopes@tecnomulti.com\n3) TELEFONE : 83993220200\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \n\"Esta mensagem foi criada automaticamente pelo software de entrega de correio.\n\n \n\nUma mensagem que você enviou não pôde ser entregue a um ou mais destinatários. Este é um erro permanente. Os seguintes endereços falharam:\"\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-78/new@oswintech.ddns.net','','mailing','new'),
(922,'Ticket',78,4,2,0,1,'2025-02-03 17:44:33','2025-02-17 13:29:16',NULL,'[GLPI #0000078] Novo chamado Erro Envio de mensagens ','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000078] Novo chamado Erro Envio de mensagens &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_78\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_78&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Erro Envio de mensagens  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:03-02-2025 14:44 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Erro Envio de mensagens &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;mario.lopes@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83993220200&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;\"Esta mensagem foi criada automaticamente pelo software de entrega de correio.&#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;\n&#60;p&#62;Uma mensagem que você enviou não pôde ser entregue a um ou mais destinatários. Este é um erro permanente. Os seguintes endereços falharam:\"&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_78 \n\n Chamado: Descrição\n\n Título : Erro Envio de mensagens \n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 14:44\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Erro Envio de mensagens \n2) E-MAIL : mario.lopes@tecnomulti.com\n3) TELEFONE : 83993220200\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \n\"Esta mensagem foi criada automaticamente pelo software de entrega de correio.\n\n \n\nUma mensagem que você enviou não pôde ser entregue a um ou mais destinatários. Este é um erro permanente. Os seguintes endereços falharam:\"\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-78/new@oswintech.ddns.net','','mailing','new'),
(923,'Ticket',78,4,2,0,1,'2025-02-03 17:44:33','2025-02-17 13:29:16',NULL,'[GLPI #0000078] Novo chamado Erro Envio de mensagens ','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000078] Novo chamado Erro Envio de mensagens &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_78\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_78&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Erro Envio de mensagens  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:03-02-2025 14:44 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Erro Envio de mensagens &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;mario.lopes@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83993220200&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;\"Esta mensagem foi criada automaticamente pelo software de entrega de correio.&#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;\n&#60;p&#62;Uma mensagem que você enviou não pôde ser entregue a um ou mais destinatários. Este é um erro permanente. Os seguintes endereços falharam:\"&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_78 \n\n Chamado: Descrição\n\n Título : Erro Envio de mensagens \n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 14:44\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Erro Envio de mensagens \n2) E-MAIL : mario.lopes@tecnomulti.com\n3) TELEFONE : 83993220200\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \n\"Esta mensagem foi criada automaticamente pelo software de entrega de correio.\n\n \n\nUma mensagem que você enviou não pôde ser entregue a um ou mais destinatários. Este é um erro permanente. Os seguintes endereços falharam:\"\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-78/new@oswintech.ddns.net','','mailing','new'),
(924,'Ticket',78,4,2,1,0,'2025-02-03 19:50:51','2025-02-03 19:50:51','2025-02-11 12:00:46','[GLPI #0000078] Novo acompanhamento Erro Envio de mensagens ',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_78 \n\n Chamado: Descrição\n\n Título : Erro Envio de mensagens \n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 14:44\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - mario.lopes@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Erro Envio de mensagens \n2) E-MAIL : mario.lopes@tecnomulti.com\n3) TELEFONE : 83993220200\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \n\"Esta mensagem foi criada automaticamente pelo software de entrega de correio.\n\n \n\nUma mensagem que você enviou não pôde ser entregue a um ou mais destinatários. Este é um erro permanente. Os seguintes endereços falharam:\"\n \n\n\n[03-02-2025 16:50]\nAutor Alexsandro Cruz\nDescrição Boa tarde, Mário.\n\nPor gentileza, me passe o ID do anydesk.\nData de abertura 03-02-2025 16:50\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(925,'Ticket',78,4,2,1,0,'2025-02-03 19:50:51','2025-02-03 19:50:51','2025-02-03 19:50:52','[GLPI #0000078] Novo acompanhamento Erro Envio de mensagens ',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_78 \n\n Chamado: Descrição\n\n Título : Erro Envio de mensagens \n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 14:44\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - mario.lopes@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Erro Envio de mensagens \n2) E-MAIL : mario.lopes@tecnomulti.com\n3) TELEFONE : 83993220200\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \n\"Esta mensagem foi criada automaticamente pelo software de entrega de correio.\n\n \n\nUma mensagem que você enviou não pôde ser entregue a um ou mais destinatários. Este é um erro permanente. Os seguintes endereços falharam:\"\n \n\n\n[03-02-2025 16:50]\nAutor Alexsandro Cruz\nDescrição Boa tarde, Mário.\n\nPor gentileza, me passe o ID do anydesk.\nData de abertura 03-02-2025 16:50\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(926,'Ticket',78,4,2,0,0,'2025-02-03 19:50:51','2025-02-03 19:50:51',NULL,'[GLPI #0000078] Novo acompanhamento Erro Envio de mensagens ',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_78 \n\n Chamado: Descrição\n\n Título : Erro Envio de mensagens \n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 14:44\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - mario.lopes@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Erro Envio de mensagens \n2) E-MAIL : mario.lopes@tecnomulti.com\n3) TELEFONE : 83993220200\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \n\"Esta mensagem foi criada automaticamente pelo software de entrega de correio.\n\n \n\nUma mensagem que você enviou não pôde ser entregue a um ou mais destinatários. Este é um erro permanente. Os seguintes endereços falharam:\"\n \n\n\n[03-02-2025 16:50]\nAutor Alexsandro Cruz\nDescrição Boa tarde, Mário.\n\nPor gentileza, me passe o ID do anydesk.\nData de abertura 03-02-2025 16:50\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(927,'Ticket',78,4,2,1,0,'2025-02-03 19:50:51','2025-02-03 19:50:51','2025-02-04 16:37:44','[GLPI #0000078] Novo acompanhamento Erro Envio de mensagens ',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_78 \n\n Chamado: Descrição\n\n Título : Erro Envio de mensagens \n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 14:44\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - mario.lopes@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Erro Envio de mensagens \n2) E-MAIL : mario.lopes@tecnomulti.com\n3) TELEFONE : 83993220200\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \n\"Esta mensagem foi criada automaticamente pelo software de entrega de correio.\n\n \n\nUma mensagem que você enviou não pôde ser entregue a um ou mais destinatários. Este é um erro permanente. Os seguintes endereços falharam:\"\n \n\n\n[03-02-2025 16:50]\nAutor Alexsandro Cruz\nDescrição Boa tarde, Mário.\n\nPor gentileza, me passe o ID do anydesk.\nData de abertura 03-02-2025 16:50\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(928,'Ticket',78,4,2,0,1,'2025-02-03 19:50:51','2025-02-17 13:29:16',NULL,'[GLPI #0000078] Novo acompanhamento Erro Envio de mensagens ','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000078] Novo acompanhamento Erro Envio de mensagens &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_78\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_78&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Erro Envio de mensagens  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:03-02-2025 14:44 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- mario.lopes@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Erro Envio de mensagens &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;mario.lopes@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83993220200&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;\"Esta mensagem foi criada automaticamente pelo software de entrega de correio.&#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;\n&#60;p&#62;Uma mensagem que você enviou não pôde ser entregue a um ou mais destinatários. Este é um erro permanente. Os seguintes endereços falharam:\"&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [03-02-2025 16:50]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, Mário.&#60;/p&#62;\r\n&#60;p&#62;Por gentileza, me passe o ID do anydesk.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;03-02-2025 16:50&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_78 \n\n Chamado: Descrição\n\n Título : Erro Envio de mensagens \n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 14:44\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - mario.lopes@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Erro Envio de mensagens \n2) E-MAIL : mario.lopes@tecnomulti.com\n3) TELEFONE : 83993220200\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \n\"Esta mensagem foi criada automaticamente pelo software de entrega de correio.\n\n \n\nUma mensagem que você enviou não pôde ser entregue a um ou mais destinatários. Este é um erro permanente. Os seguintes endereços falharam:\"\n \n\n\n[03-02-2025 16:50]\nAutor Alexsandro Cruz\nDescrição Boa tarde, Mário.\n\nPor gentileza, me passe o ID do anydesk.\nData de abertura 03-02-2025 16:50\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-78/add_followup.1738612251.634967266@oswintech.ddns.net','','mailing','add_followup'),
(929,'Ticket',78,4,2,0,1,'2025-02-03 19:50:51','2025-02-17 13:29:16',NULL,'[GLPI #0000078] Novo acompanhamento Erro Envio de mensagens ','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000078] Novo acompanhamento Erro Envio de mensagens &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_78\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_78&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Erro Envio de mensagens  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:03-02-2025 14:44 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- mario.lopes@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Erro Envio de mensagens &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;mario.lopes@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83993220200&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;\"Esta mensagem foi criada automaticamente pelo software de entrega de correio.&#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;\n&#60;p&#62;Uma mensagem que você enviou não pôde ser entregue a um ou mais destinatários. Este é um erro permanente. Os seguintes endereços falharam:\"&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [03-02-2025 16:50]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, Mário.&#60;/p&#62;\r\n&#60;p&#62;Por gentileza, me passe o ID do anydesk.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;03-02-2025 16:50&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_78 \n\n Chamado: Descrição\n\n Título : Erro Envio de mensagens \n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 14:44\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - mario.lopes@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Erro Envio de mensagens \n2) E-MAIL : mario.lopes@tecnomulti.com\n3) TELEFONE : 83993220200\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \n\"Esta mensagem foi criada automaticamente pelo software de entrega de correio.\n\n \n\nUma mensagem que você enviou não pôde ser entregue a um ou mais destinatários. Este é um erro permanente. Os seguintes endereços falharam:\"\n \n\n\n[03-02-2025 16:50]\nAutor Alexsandro Cruz\nDescrição Boa tarde, Mário.\n\nPor gentileza, me passe o ID do anydesk.\nData de abertura 03-02-2025 16:50\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-78/add_followup.1738612251.1749268533@oswintech.ddns.net','','mailing','add_followup'),
(930,'Ticket',78,4,2,0,1,'2025-02-03 19:50:51','2025-02-17 13:29:16',NULL,'[GLPI #0000078] Novo acompanhamento Erro Envio de mensagens ','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000078] Novo acompanhamento Erro Envio de mensagens &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_78\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_78&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Erro Envio de mensagens  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:03-02-2025 14:44 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- mario.lopes@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Erro Envio de mensagens &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;mario.lopes@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83993220200&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;\"Esta mensagem foi criada automaticamente pelo software de entrega de correio.&#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;\n&#60;p&#62;Uma mensagem que você enviou não pôde ser entregue a um ou mais destinatários. Este é um erro permanente. Os seguintes endereços falharam:\"&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [03-02-2025 16:50]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, Mário.&#60;/p&#62;\r\n&#60;p&#62;Por gentileza, me passe o ID do anydesk.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;03-02-2025 16:50&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_78 \n\n Chamado: Descrição\n\n Título : Erro Envio de mensagens \n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 14:44\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - mario.lopes@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Erro Envio de mensagens \n2) E-MAIL : mario.lopes@tecnomulti.com\n3) TELEFONE : 83993220200\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \n\"Esta mensagem foi criada automaticamente pelo software de entrega de correio.\n\n \n\nUma mensagem que você enviou não pôde ser entregue a um ou mais destinatários. Este é um erro permanente. Os seguintes endereços falharam:\"\n \n\n\n[03-02-2025 16:50]\nAutor Alexsandro Cruz\nDescrição Boa tarde, Mário.\n\nPor gentileza, me passe o ID do anydesk.\nData de abertura 03-02-2025 16:50\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-78/add_followup.1738612251.1060779976@oswintech.ddns.net','','mailing','add_followup'),
(931,'Ticket',78,4,2,0,1,'2025-02-03 19:50:51','2025-02-17 13:29:16',NULL,'[GLPI #0000078] Novo acompanhamento Erro Envio de mensagens ','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000078] Novo acompanhamento Erro Envio de mensagens &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_78\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_78&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Erro Envio de mensagens  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:03-02-2025 14:44 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- mario.lopes@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Erro Envio de mensagens &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;mario.lopes@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83993220200&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;\"Esta mensagem foi criada automaticamente pelo software de entrega de correio.&#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;\n&#60;p&#62;Uma mensagem que você enviou não pôde ser entregue a um ou mais destinatários. Este é um erro permanente. Os seguintes endereços falharam:\"&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [03-02-2025 16:50]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, Mário.&#60;/p&#62;\r\n&#60;p&#62;Por gentileza, me passe o ID do anydesk.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;03-02-2025 16:50&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_78 \n\n Chamado: Descrição\n\n Título : Erro Envio de mensagens \n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 14:44\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - mario.lopes@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Erro Envio de mensagens \n2) E-MAIL : mario.lopes@tecnomulti.com\n3) TELEFONE : 83993220200\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \n\"Esta mensagem foi criada automaticamente pelo software de entrega de correio.\n\n \n\nUma mensagem que você enviou não pôde ser entregue a um ou mais destinatários. Este é um erro permanente. Os seguintes endereços falharam:\"\n \n\n\n[03-02-2025 16:50]\nAutor Alexsandro Cruz\nDescrição Boa tarde, Mário.\n\nPor gentileza, me passe o ID do anydesk.\nData de abertura 03-02-2025 16:50\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-78/add_followup.1738612251.1814865931@oswintech.ddns.net','','mailing','add_followup'),
(932,'Ticket',78,4,2,1,0,'2025-02-03 19:50:55','2025-02-03 19:50:55','2025-02-11 12:00:46','[GLPI #0000078] Atualização de um chamado Erro Envio de mensagens ',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_78 \n\n Chamado: Descrição\n\n Título : Erro Envio de mensagens \n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 14:44\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - mario.lopes@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Erro Envio de mensagens \n2) E-MAIL : mario.lopes@tecnomulti.com\n3) TELEFONE : 83993220200\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \n\"Esta mensagem foi criada automaticamente pelo software de entrega de correio.\n\n \n\nUma mensagem que você enviou não pôde ser entregue a um ou mais destinatários. Este é um erro permanente. Os seguintes endereços falharam:\"\n \n\n\n[03-02-2025 16:50]\nAutor Alexsandro Cruz\nDescrição Boa tarde, Mário.\n\nPor gentileza, me passe o ID do anydesk.\nData de abertura 03-02-2025 16:50\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','update'),
(933,'Ticket',78,4,2,0,1,'2025-02-03 19:50:55','2025-02-17 13:29:16',NULL,'[GLPI #0000078] Atualização de um chamado Erro Envio de mensagens ','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000078] Atualiza&#38;ccedil;&#38;atilde;o de um chamado Erro Envio de mensagens &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_78\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_78&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Erro Envio de mensagens  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:03-02-2025 14:44 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- mario.lopes@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Erro Envio de mensagens &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;mario.lopes@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83993220200&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;\"Esta mensagem foi criada automaticamente pelo software de entrega de correio.&#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;\n&#60;p&#62;Uma mensagem que você enviou não pôde ser entregue a um ou mais destinatários. Este é um erro permanente. Os seguintes endereços falharam:\"&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [03-02-2025 16:50]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, Mário.&#60;/p&#62;\r\n&#60;p&#62;Por gentileza, me passe o ID do anydesk.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;03-02-2025 16:50&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_78 \n\n Chamado: Descrição\n\n Título : Erro Envio de mensagens \n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 14:44\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - mario.lopes@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Erro Envio de mensagens \n2) E-MAIL : mario.lopes@tecnomulti.com\n3) TELEFONE : 83993220200\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \n\"Esta mensagem foi criada automaticamente pelo software de entrega de correio.\n\n \n\nUma mensagem que você enviou não pôde ser entregue a um ou mais destinatários. Este é um erro permanente. Os seguintes endereços falharam:\"\n \n\n\n[03-02-2025 16:50]\nAutor Alexsandro Cruz\nDescrição Boa tarde, Mário.\n\nPor gentileza, me passe o ID do anydesk.\nData de abertura 03-02-2025 16:50\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-78/update.1738612255.862416524@oswintech.ddns.net','','mailing','update'),
(934,'Ticket',78,4,2,0,1,'2025-02-03 19:50:55','2025-02-17 13:29:16',NULL,'[GLPI #0000078] Atualização de um chamado Erro Envio de mensagens ','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000078] Atualiza&#38;ccedil;&#38;atilde;o de um chamado Erro Envio de mensagens &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_78\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_78&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Erro Envio de mensagens  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:03-02-2025 14:44 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- mario.lopes@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Erro Envio de mensagens &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;mario.lopes@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83993220200&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;\"Esta mensagem foi criada automaticamente pelo software de entrega de correio.&#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;\n&#60;p&#62;Uma mensagem que você enviou não pôde ser entregue a um ou mais destinatários. Este é um erro permanente. Os seguintes endereços falharam:\"&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [03-02-2025 16:50]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, Mário.&#60;/p&#62;\r\n&#60;p&#62;Por gentileza, me passe o ID do anydesk.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;03-02-2025 16:50&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_78 \n\n Chamado: Descrição\n\n Título : Erro Envio de mensagens \n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 14:44\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - mario.lopes@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Erro Envio de mensagens \n2) E-MAIL : mario.lopes@tecnomulti.com\n3) TELEFONE : 83993220200\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \n\"Esta mensagem foi criada automaticamente pelo software de entrega de correio.\n\n \n\nUma mensagem que você enviou não pôde ser entregue a um ou mais destinatários. Este é um erro permanente. Os seguintes endereços falharam:\"\n \n\n\n[03-02-2025 16:50]\nAutor Alexsandro Cruz\nDescrição Boa tarde, Mário.\n\nPor gentileza, me passe o ID do anydesk.\nData de abertura 03-02-2025 16:50\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-78/update.1738612255.1606328471@oswintech.ddns.net','','mailing','update'),
(935,'PluginFormcreatorFormAnswer',43,29,2,0,1,'2025-02-03 20:21:54','2025-02-18 18:15:34',NULL,'[GLPI] Sua requisição foi salva','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI] Sua requisi&#38;ccedil;&#38;atilde;o foi salva&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;p&#62;Olá,&#60;br /&#62;Sua requisição do GLPI foi salva com sucesso com o número 43 e transmitido para a equipe de helpdesk.&#60;br /&#62;Você pode ver suas respostas no seguinte link:&#60;br /&#62;https://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=43&#60;/p&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;','Olá,\nSua requisição do GLPI foi salva com sucesso com o número 43 e transmitido para a equipe de helpdesk.\nVocê pode ver suas respostas no seguinte link:\nhttps://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=43\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-PluginFormcreatorFormAnswer-43/plugin_formcreator_form_created.1738614114.2056133812@oswintech.ddns.net','','mailing','plugin_formcreator_form_created'),
(936,'Ticket',79,4,2,1,0,'2025-02-03 20:21:54','2025-02-03 20:21:54','2025-02-11 12:00:46','[GLPI #0000079] Novo chamado Erro Envio de mensagens ',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_79 \n\n Chamado: Descrição\n\n Título : Erro Envio de mensagens \n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 17:21\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Erro Envio de mensagens \n2) E-MAIL : mario.lopes@tecnomulti.com\n3) TELEFONE : 83993220200\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nThis message was created automatically by mail delivery software.\n\n \n\nA message that you sent could not be delivered to one or more of its recipients. This is a permanent error. The following address(es) failed:\n\n \n\n  alexcruzfab@hotmail.com\n\n    host eig-east.smtp.a.cloudfilter.net [3.228.35.199]\n\n    SMTP error from remote mail server after end of data:\n\n    550 Connection Rejected - see http://www.spamhaus.org/query/ip/168.196.197.55 AUP#BL\n\n  alexcruzfab@gmail.com\n\n    host eig-east.smtp.a.cloudfilter.net [18.215.58.191]\n\n    SMTP error from remote mail server after end of data:\n\n    550 Connection Rejected - see http://www.spamhaus.org/query/ip/168.196.197.55 AUP#BL\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(937,'Ticket',79,4,2,1,0,'2025-02-03 20:21:54','2025-02-03 20:21:54','2025-02-03 20:22:06','[GLPI #0000079] Novo chamado Erro Envio de mensagens ',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_79 \n\n Chamado: Descrição\n\n Título : Erro Envio de mensagens \n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 17:21\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Erro Envio de mensagens \n2) E-MAIL : mario.lopes@tecnomulti.com\n3) TELEFONE : 83993220200\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nThis message was created automatically by mail delivery software.\n\n \n\nA message that you sent could not be delivered to one or more of its recipients. This is a permanent error. The following address(es) failed:\n\n \n\n  alexcruzfab@hotmail.com\n\n    host eig-east.smtp.a.cloudfilter.net [3.228.35.199]\n\n    SMTP error from remote mail server after end of data:\n\n    550 Connection Rejected - see http://www.spamhaus.org/query/ip/168.196.197.55 AUP#BL\n\n  alexcruzfab@gmail.com\n\n    host eig-east.smtp.a.cloudfilter.net [18.215.58.191]\n\n    SMTP error from remote mail server after end of data:\n\n    550 Connection Rejected - see http://www.spamhaus.org/query/ip/168.196.197.55 AUP#BL\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(938,'Ticket',79,4,2,0,0,'2025-02-03 20:21:54','2025-02-03 20:21:54',NULL,'[GLPI #0000079] Novo chamado Erro Envio de mensagens ',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_79 \n\n Chamado: Descrição\n\n Título : Erro Envio de mensagens \n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 17:21\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Erro Envio de mensagens \n2) E-MAIL : mario.lopes@tecnomulti.com\n3) TELEFONE : 83993220200\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nThis message was created automatically by mail delivery software.\n\n \n\nA message that you sent could not be delivered to one or more of its recipients. This is a permanent error. The following address(es) failed:\n\n \n\n  alexcruzfab@hotmail.com\n\n    host eig-east.smtp.a.cloudfilter.net [3.228.35.199]\n\n    SMTP error from remote mail server after end of data:\n\n    550 Connection Rejected - see http://www.spamhaus.org/query/ip/168.196.197.55 AUP#BL\n\n  alexcruzfab@gmail.com\n\n    host eig-east.smtp.a.cloudfilter.net [18.215.58.191]\n\n    SMTP error from remote mail server after end of data:\n\n    550 Connection Rejected - see http://www.spamhaus.org/query/ip/168.196.197.55 AUP#BL\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(939,'Ticket',79,4,2,1,0,'2025-02-03 20:21:54','2025-02-03 20:21:54','2025-02-04 16:37:44','[GLPI #0000079] Novo chamado Erro Envio de mensagens ',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_79 \n\n Chamado: Descrição\n\n Título : Erro Envio de mensagens \n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 17:21\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Erro Envio de mensagens \n2) E-MAIL : mario.lopes@tecnomulti.com\n3) TELEFONE : 83993220200\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nThis message was created automatically by mail delivery software.\n\n \n\nA message that you sent could not be delivered to one or more of its recipients. This is a permanent error. The following address(es) failed:\n\n \n\n  alexcruzfab@hotmail.com\n\n    host eig-east.smtp.a.cloudfilter.net [3.228.35.199]\n\n    SMTP error from remote mail server after end of data:\n\n    550 Connection Rejected - see http://www.spamhaus.org/query/ip/168.196.197.55 AUP#BL\n\n  alexcruzfab@gmail.com\n\n    host eig-east.smtp.a.cloudfilter.net [18.215.58.191]\n\n    SMTP error from remote mail server after end of data:\n\n    550 Connection Rejected - see http://www.spamhaus.org/query/ip/168.196.197.55 AUP#BL\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(940,'Ticket',79,4,2,0,1,'2025-02-03 20:21:54','2025-02-18 18:15:34',NULL,'[GLPI #0000079] Novo chamado Erro Envio de mensagens ','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000079] Novo chamado Erro Envio de mensagens &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_79\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_79&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Erro Envio de mensagens  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:03-02-2025 17:21 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Erro Envio de mensagens &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;mario.lopes@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83993220200&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;This message was created automatically by mail delivery software.&#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;\n&#60;p&#62;A message that you sent could not be delivered to one or more of its recipients. This is a permanent error. The following address(es) failed:&#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;\n&#60;p&#62;  alexcruzfab@hotmail.com&#60;/p&#62;\n&#60;p&#62;    host eig-east.smtp.a.cloudfilter.net [3.228.35.199]&#60;/p&#62;\n&#60;p&#62;    SMTP error from remote mail server after end of data:&#60;/p&#62;\n&#60;p&#62;    550 Connection Rejected - see &#60;a href=\"http://www.spamhaus.org/query/ip/168.196.197.55\" target=\"_blank\"&#62;http://www.spamhaus.org/query/ip/168.196.197.55&#60;/a&#62; AUP#BL&#60;/p&#62;\n&#60;p&#62;  alexcruzfab@gmail.com&#60;/p&#62;\n&#60;p&#62;    host eig-east.smtp.a.cloudfilter.net [18.215.58.191]&#60;/p&#62;\n&#60;p&#62;    SMTP error from remote mail server after end of data:&#60;/p&#62;\n&#60;p&#62;    550 Connection Rejected - see &#60;a href=\"http://www.spamhaus.org/query/ip/168.196.197.55\" target=\"_blank\"&#62;http://www.spamhaus.org/query/ip/168.196.197.55&#60;/a&#62; AUP#BL&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_79 \n\n Chamado: Descrição\n\n Título : Erro Envio de mensagens \n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 17:21\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Erro Envio de mensagens \n2) E-MAIL : mario.lopes@tecnomulti.com\n3) TELEFONE : 83993220200\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nThis message was created automatically by mail delivery software.\n\n \n\nA message that you sent could not be delivered to one or more of its recipients. This is a permanent error. The following address(es) failed:\n\n \n\n  alexcruzfab@hotmail.com\n\n    host eig-east.smtp.a.cloudfilter.net [3.228.35.199]\n\n    SMTP error from remote mail server after end of data:\n\n    550 Connection Rejected - see http://www.spamhaus.org/query/ip/168.196.197.55 AUP#BL\n\n  alexcruzfab@gmail.com\n\n    host eig-east.smtp.a.cloudfilter.net [18.215.58.191]\n\n    SMTP error from remote mail server after end of data:\n\n    550 Connection Rejected - see http://www.spamhaus.org/query/ip/168.196.197.55 AUP#BL\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-79/new@oswintech.ddns.net','','mailing','new'),
(941,'Ticket',79,4,2,0,1,'2025-02-03 20:21:54','2025-02-18 18:15:34',NULL,'[GLPI #0000079] Novo chamado Erro Envio de mensagens ','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000079] Novo chamado Erro Envio de mensagens &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_79\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_79&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Erro Envio de mensagens  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:03-02-2025 17:21 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Erro Envio de mensagens &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;mario.lopes@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83993220200&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;This message was created automatically by mail delivery software.&#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;\n&#60;p&#62;A message that you sent could not be delivered to one or more of its recipients. This is a permanent error. The following address(es) failed:&#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;\n&#60;p&#62;  alexcruzfab@hotmail.com&#60;/p&#62;\n&#60;p&#62;    host eig-east.smtp.a.cloudfilter.net [3.228.35.199]&#60;/p&#62;\n&#60;p&#62;    SMTP error from remote mail server after end of data:&#60;/p&#62;\n&#60;p&#62;    550 Connection Rejected - see &#60;a href=\"http://www.spamhaus.org/query/ip/168.196.197.55\" target=\"_blank\"&#62;http://www.spamhaus.org/query/ip/168.196.197.55&#60;/a&#62; AUP#BL&#60;/p&#62;\n&#60;p&#62;  alexcruzfab@gmail.com&#60;/p&#62;\n&#60;p&#62;    host eig-east.smtp.a.cloudfilter.net [18.215.58.191]&#60;/p&#62;\n&#60;p&#62;    SMTP error from remote mail server after end of data:&#60;/p&#62;\n&#60;p&#62;    550 Connection Rejected - see &#60;a href=\"http://www.spamhaus.org/query/ip/168.196.197.55\" target=\"_blank\"&#62;http://www.spamhaus.org/query/ip/168.196.197.55&#60;/a&#62; AUP#BL&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_79 \n\n Chamado: Descrição\n\n Título : Erro Envio de mensagens \n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 17:21\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Erro Envio de mensagens \n2) E-MAIL : mario.lopes@tecnomulti.com\n3) TELEFONE : 83993220200\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nThis message was created automatically by mail delivery software.\n\n \n\nA message that you sent could not be delivered to one or more of its recipients. This is a permanent error. The following address(es) failed:\n\n \n\n  alexcruzfab@hotmail.com\n\n    host eig-east.smtp.a.cloudfilter.net [3.228.35.199]\n\n    SMTP error from remote mail server after end of data:\n\n    550 Connection Rejected - see http://www.spamhaus.org/query/ip/168.196.197.55 AUP#BL\n\n  alexcruzfab@gmail.com\n\n    host eig-east.smtp.a.cloudfilter.net [18.215.58.191]\n\n    SMTP error from remote mail server after end of data:\n\n    550 Connection Rejected - see http://www.spamhaus.org/query/ip/168.196.197.55 AUP#BL\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-79/new@oswintech.ddns.net','','mailing','new'),
(942,'Ticket',79,4,2,0,1,'2025-02-03 20:21:54','2025-02-18 18:15:34',NULL,'[GLPI #0000079] Novo chamado Erro Envio de mensagens ','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000079] Novo chamado Erro Envio de mensagens &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_79\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_79&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Erro Envio de mensagens  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:03-02-2025 17:21 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Erro Envio de mensagens &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;mario.lopes@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83993220200&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;This message was created automatically by mail delivery software.&#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;\n&#60;p&#62;A message that you sent could not be delivered to one or more of its recipients. This is a permanent error. The following address(es) failed:&#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;\n&#60;p&#62;  alexcruzfab@hotmail.com&#60;/p&#62;\n&#60;p&#62;    host eig-east.smtp.a.cloudfilter.net [3.228.35.199]&#60;/p&#62;\n&#60;p&#62;    SMTP error from remote mail server after end of data:&#60;/p&#62;\n&#60;p&#62;    550 Connection Rejected - see &#60;a href=\"http://www.spamhaus.org/query/ip/168.196.197.55\" target=\"_blank\"&#62;http://www.spamhaus.org/query/ip/168.196.197.55&#60;/a&#62; AUP#BL&#60;/p&#62;\n&#60;p&#62;  alexcruzfab@gmail.com&#60;/p&#62;\n&#60;p&#62;    host eig-east.smtp.a.cloudfilter.net [18.215.58.191]&#60;/p&#62;\n&#60;p&#62;    SMTP error from remote mail server after end of data:&#60;/p&#62;\n&#60;p&#62;    550 Connection Rejected - see &#60;a href=\"http://www.spamhaus.org/query/ip/168.196.197.55\" target=\"_blank\"&#62;http://www.spamhaus.org/query/ip/168.196.197.55&#60;/a&#62; AUP#BL&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_79 \n\n Chamado: Descrição\n\n Título : Erro Envio de mensagens \n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 17:21\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Erro Envio de mensagens \n2) E-MAIL : mario.lopes@tecnomulti.com\n3) TELEFONE : 83993220200\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nThis message was created automatically by mail delivery software.\n\n \n\nA message that you sent could not be delivered to one or more of its recipients. This is a permanent error. The following address(es) failed:\n\n \n\n  alexcruzfab@hotmail.com\n\n    host eig-east.smtp.a.cloudfilter.net [3.228.35.199]\n\n    SMTP error from remote mail server after end of data:\n\n    550 Connection Rejected - see http://www.spamhaus.org/query/ip/168.196.197.55 AUP#BL\n\n  alexcruzfab@gmail.com\n\n    host eig-east.smtp.a.cloudfilter.net [18.215.58.191]\n\n    SMTP error from remote mail server after end of data:\n\n    550 Connection Rejected - see http://www.spamhaus.org/query/ip/168.196.197.55 AUP#BL\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-79/new@oswintech.ddns.net','','mailing','new'),
(943,'Ticket',79,4,2,0,1,'2025-02-03 20:21:54','2025-02-18 18:15:34',NULL,'[GLPI #0000079] Novo chamado Erro Envio de mensagens ','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000079] Novo chamado Erro Envio de mensagens &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_79\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_79&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Erro Envio de mensagens  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:03-02-2025 17:21 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Erro Envio de mensagens &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;mario.lopes@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83993220200&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;This message was created automatically by mail delivery software.&#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;\n&#60;p&#62;A message that you sent could not be delivered to one or more of its recipients. This is a permanent error. The following address(es) failed:&#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;\n&#60;p&#62;  alexcruzfab@hotmail.com&#60;/p&#62;\n&#60;p&#62;    host eig-east.smtp.a.cloudfilter.net [3.228.35.199]&#60;/p&#62;\n&#60;p&#62;    SMTP error from remote mail server after end of data:&#60;/p&#62;\n&#60;p&#62;    550 Connection Rejected - see &#60;a href=\"http://www.spamhaus.org/query/ip/168.196.197.55\" target=\"_blank\"&#62;http://www.spamhaus.org/query/ip/168.196.197.55&#60;/a&#62; AUP#BL&#60;/p&#62;\n&#60;p&#62;  alexcruzfab@gmail.com&#60;/p&#62;\n&#60;p&#62;    host eig-east.smtp.a.cloudfilter.net [18.215.58.191]&#60;/p&#62;\n&#60;p&#62;    SMTP error from remote mail server after end of data:&#60;/p&#62;\n&#60;p&#62;    550 Connection Rejected - see &#60;a href=\"http://www.spamhaus.org/query/ip/168.196.197.55\" target=\"_blank\"&#62;http://www.spamhaus.org/query/ip/168.196.197.55&#60;/a&#62; AUP#BL&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_79 \n\n Chamado: Descrição\n\n Título : Erro Envio de mensagens \n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 17:21\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Erro Envio de mensagens \n2) E-MAIL : mario.lopes@tecnomulti.com\n3) TELEFONE : 83993220200\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nThis message was created automatically by mail delivery software.\n\n \n\nA message that you sent could not be delivered to one or more of its recipients. This is a permanent error. The following address(es) failed:\n\n \n\n  alexcruzfab@hotmail.com\n\n    host eig-east.smtp.a.cloudfilter.net [3.228.35.199]\n\n    SMTP error from remote mail server after end of data:\n\n    550 Connection Rejected - see http://www.spamhaus.org/query/ip/168.196.197.55 AUP#BL\n\n  alexcruzfab@gmail.com\n\n    host eig-east.smtp.a.cloudfilter.net [18.215.58.191]\n\n    SMTP error from remote mail server after end of data:\n\n    550 Connection Rejected - see http://www.spamhaus.org/query/ip/168.196.197.55 AUP#BL\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-79/new@oswintech.ddns.net','','mailing','new'),
(944,'Ticket',78,4,2,1,0,'2025-02-03 20:47:27','2025-02-03 20:47:27','2025-02-11 12:00:46','[GLPI #0000078] Novo acompanhamento Erro Envio de mensagens ',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_78 \n\n Chamado: Descrição\n\n Título : Erro Envio de mensagens \n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 14:44\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - mario.lopes@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Erro Envio de mensagens \n2) E-MAIL : mario.lopes@tecnomulti.com\n3) TELEFONE : 83993220200\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \n\"Esta mensagem foi criada automaticamente pelo software de entrega de correio.\n\n \n\nUma mensagem que você enviou não pôde ser entregue a um ou mais destinatários. Este é um erro permanente. Os seguintes endereços falharam:\"\n \n\n\n[03-02-2025 17:47]\nAutor Alexsandro Cruz\nDescrição Após realizar acesso e testes, ficou constatado que o IP do usuário está em lista de bloqueio. Foi sugerido um procedimento para tentar obter novo IP ou falar com a operadora relatando o bloqueio .\nData de abertura 03-02-2025 17:47\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[03-02-2025 16:50]\nAutor Alexsandro Cruz\nDescrição Boa tarde, Mário.\n\nPor gentileza, me passe o ID do anydesk.\nData de abertura 03-02-2025 16:50\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(945,'Ticket',78,4,2,1,0,'2025-02-03 20:47:27','2025-02-03 20:47:27','2025-02-03 20:47:39','[GLPI #0000078] Novo acompanhamento Erro Envio de mensagens ',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_78 \n\n Chamado: Descrição\n\n Título : Erro Envio de mensagens \n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 14:44\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - mario.lopes@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Erro Envio de mensagens \n2) E-MAIL : mario.lopes@tecnomulti.com\n3) TELEFONE : 83993220200\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \n\"Esta mensagem foi criada automaticamente pelo software de entrega de correio.\n\n \n\nUma mensagem que você enviou não pôde ser entregue a um ou mais destinatários. Este é um erro permanente. Os seguintes endereços falharam:\"\n \n\n\n[03-02-2025 17:47]\nAutor Alexsandro Cruz\nDescrição Após realizar acesso e testes, ficou constatado que o IP do usuário está em lista de bloqueio. Foi sugerido um procedimento para tentar obter novo IP ou falar com a operadora relatando o bloqueio .\nData de abertura 03-02-2025 17:47\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[03-02-2025 16:50]\nAutor Alexsandro Cruz\nDescrição Boa tarde, Mário.\n\nPor gentileza, me passe o ID do anydesk.\nData de abertura 03-02-2025 16:50\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(946,'Ticket',78,4,2,0,0,'2025-02-03 20:47:27','2025-02-03 20:47:27',NULL,'[GLPI #0000078] Novo acompanhamento Erro Envio de mensagens ',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_78 \n\n Chamado: Descrição\n\n Título : Erro Envio de mensagens \n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 14:44\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - mario.lopes@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Erro Envio de mensagens \n2) E-MAIL : mario.lopes@tecnomulti.com\n3) TELEFONE : 83993220200\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \n\"Esta mensagem foi criada automaticamente pelo software de entrega de correio.\n\n \n\nUma mensagem que você enviou não pôde ser entregue a um ou mais destinatários. Este é um erro permanente. Os seguintes endereços falharam:\"\n \n\n\n[03-02-2025 17:47]\nAutor Alexsandro Cruz\nDescrição Após realizar acesso e testes, ficou constatado que o IP do usuário está em lista de bloqueio. Foi sugerido um procedimento para tentar obter novo IP ou falar com a operadora relatando o bloqueio .\nData de abertura 03-02-2025 17:47\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[03-02-2025 16:50]\nAutor Alexsandro Cruz\nDescrição Boa tarde, Mário.\n\nPor gentileza, me passe o ID do anydesk.\nData de abertura 03-02-2025 16:50\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(947,'Ticket',78,4,2,1,0,'2025-02-03 20:47:27','2025-02-03 20:47:27','2025-02-04 16:37:44','[GLPI #0000078] Novo acompanhamento Erro Envio de mensagens ',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_78 \n\n Chamado: Descrição\n\n Título : Erro Envio de mensagens \n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 14:44\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - mario.lopes@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Erro Envio de mensagens \n2) E-MAIL : mario.lopes@tecnomulti.com\n3) TELEFONE : 83993220200\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \n\"Esta mensagem foi criada automaticamente pelo software de entrega de correio.\n\n \n\nUma mensagem que você enviou não pôde ser entregue a um ou mais destinatários. Este é um erro permanente. Os seguintes endereços falharam:\"\n \n\n\n[03-02-2025 17:47]\nAutor Alexsandro Cruz\nDescrição Após realizar acesso e testes, ficou constatado que o IP do usuário está em lista de bloqueio. Foi sugerido um procedimento para tentar obter novo IP ou falar com a operadora relatando o bloqueio .\nData de abertura 03-02-2025 17:47\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[03-02-2025 16:50]\nAutor Alexsandro Cruz\nDescrição Boa tarde, Mário.\n\nPor gentileza, me passe o ID do anydesk.\nData de abertura 03-02-2025 16:50\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(948,'Ticket',78,4,2,0,1,'2025-02-03 20:47:27','2025-02-18 18:15:34',NULL,'[GLPI #0000078] Novo acompanhamento Erro Envio de mensagens ','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000078] Novo acompanhamento Erro Envio de mensagens &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_78\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_78&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Erro Envio de mensagens  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:03-02-2025 14:44 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- mario.lopes@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Erro Envio de mensagens &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;mario.lopes@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83993220200&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;\"Esta mensagem foi criada automaticamente pelo software de entrega de correio.&#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;\n&#60;p&#62;Uma mensagem que você enviou não pôde ser entregue a um ou mais destinatários. Este é um erro permanente. Os seguintes endereços falharam:\"&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [03-02-2025 17:47]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Após realizar acesso e testes, ficou constatado que o IP do usuário está em lista de bloqueio. Foi sugerido um procedimento para tentar obter novo IP ou falar com a operadora relatando o bloqueio .&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;03-02-2025 17:47&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [03-02-2025 16:50]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, Mário.&#60;/p&#62;\r\n&#60;p&#62;Por gentileza, me passe o ID do anydesk.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;03-02-2025 16:50&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_78 \n\n Chamado: Descrição\n\n Título : Erro Envio de mensagens \n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 14:44\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - mario.lopes@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Erro Envio de mensagens \n2) E-MAIL : mario.lopes@tecnomulti.com\n3) TELEFONE : 83993220200\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \n\"Esta mensagem foi criada automaticamente pelo software de entrega de correio.\n\n \n\nUma mensagem que você enviou não pôde ser entregue a um ou mais destinatários. Este é um erro permanente. Os seguintes endereços falharam:\"\n \n\n\n[03-02-2025 17:47]\nAutor Alexsandro Cruz\nDescrição Após realizar acesso e testes, ficou constatado que o IP do usuário está em lista de bloqueio. Foi sugerido um procedimento para tentar obter novo IP ou falar com a operadora relatando o bloqueio .\nData de abertura 03-02-2025 17:47\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[03-02-2025 16:50]\nAutor Alexsandro Cruz\nDescrição Boa tarde, Mário.\n\nPor gentileza, me passe o ID do anydesk.\nData de abertura 03-02-2025 16:50\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-78/add_followup.1738615648.463305477@oswintech.ddns.net','','mailing','add_followup'),
(949,'Ticket',78,4,2,0,1,'2025-02-03 20:47:27','2025-02-18 18:15:34',NULL,'[GLPI #0000078] Novo acompanhamento Erro Envio de mensagens ','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000078] Novo acompanhamento Erro Envio de mensagens &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_78\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_78&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Erro Envio de mensagens  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:03-02-2025 14:44 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- mario.lopes@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Erro Envio de mensagens &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;mario.lopes@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83993220200&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;\"Esta mensagem foi criada automaticamente pelo software de entrega de correio.&#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;\n&#60;p&#62;Uma mensagem que você enviou não pôde ser entregue a um ou mais destinatários. Este é um erro permanente. Os seguintes endereços falharam:\"&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [03-02-2025 17:47]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Após realizar acesso e testes, ficou constatado que o IP do usuário está em lista de bloqueio. Foi sugerido um procedimento para tentar obter novo IP ou falar com a operadora relatando o bloqueio .&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;03-02-2025 17:47&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [03-02-2025 16:50]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, Mário.&#60;/p&#62;\r\n&#60;p&#62;Por gentileza, me passe o ID do anydesk.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;03-02-2025 16:50&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_78 \n\n Chamado: Descrição\n\n Título : Erro Envio de mensagens \n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 14:44\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - mario.lopes@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Erro Envio de mensagens \n2) E-MAIL : mario.lopes@tecnomulti.com\n3) TELEFONE : 83993220200\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \n\"Esta mensagem foi criada automaticamente pelo software de entrega de correio.\n\n \n\nUma mensagem que você enviou não pôde ser entregue a um ou mais destinatários. Este é um erro permanente. Os seguintes endereços falharam:\"\n \n\n\n[03-02-2025 17:47]\nAutor Alexsandro Cruz\nDescrição Após realizar acesso e testes, ficou constatado que o IP do usuário está em lista de bloqueio. Foi sugerido um procedimento para tentar obter novo IP ou falar com a operadora relatando o bloqueio .\nData de abertura 03-02-2025 17:47\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[03-02-2025 16:50]\nAutor Alexsandro Cruz\nDescrição Boa tarde, Mário.\n\nPor gentileza, me passe o ID do anydesk.\nData de abertura 03-02-2025 16:50\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-78/add_followup.1738615648.432403563@oswintech.ddns.net','','mailing','add_followup'),
(950,'Ticket',78,4,2,0,1,'2025-02-03 20:47:27','2025-02-18 18:15:34',NULL,'[GLPI #0000078] Novo acompanhamento Erro Envio de mensagens ','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000078] Novo acompanhamento Erro Envio de mensagens &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_78\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_78&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Erro Envio de mensagens  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:03-02-2025 14:44 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- mario.lopes@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Erro Envio de mensagens &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;mario.lopes@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83993220200&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;\"Esta mensagem foi criada automaticamente pelo software de entrega de correio.&#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;\n&#60;p&#62;Uma mensagem que você enviou não pôde ser entregue a um ou mais destinatários. Este é um erro permanente. Os seguintes endereços falharam:\"&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [03-02-2025 17:47]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Após realizar acesso e testes, ficou constatado que o IP do usuário está em lista de bloqueio. Foi sugerido um procedimento para tentar obter novo IP ou falar com a operadora relatando o bloqueio .&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;03-02-2025 17:47&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [03-02-2025 16:50]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, Mário.&#60;/p&#62;\r\n&#60;p&#62;Por gentileza, me passe o ID do anydesk.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;03-02-2025 16:50&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_78 \n\n Chamado: Descrição\n\n Título : Erro Envio de mensagens \n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 14:44\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - mario.lopes@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Erro Envio de mensagens \n2) E-MAIL : mario.lopes@tecnomulti.com\n3) TELEFONE : 83993220200\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \n\"Esta mensagem foi criada automaticamente pelo software de entrega de correio.\n\n \n\nUma mensagem que você enviou não pôde ser entregue a um ou mais destinatários. Este é um erro permanente. Os seguintes endereços falharam:\"\n \n\n\n[03-02-2025 17:47]\nAutor Alexsandro Cruz\nDescrição Após realizar acesso e testes, ficou constatado que o IP do usuário está em lista de bloqueio. Foi sugerido um procedimento para tentar obter novo IP ou falar com a operadora relatando o bloqueio .\nData de abertura 03-02-2025 17:47\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[03-02-2025 16:50]\nAutor Alexsandro Cruz\nDescrição Boa tarde, Mário.\n\nPor gentileza, me passe o ID do anydesk.\nData de abertura 03-02-2025 16:50\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-78/add_followup.1738615648.421954185@oswintech.ddns.net','','mailing','add_followup'),
(951,'Ticket',78,4,2,0,1,'2025-02-03 20:47:27','2025-02-18 18:15:34',NULL,'[GLPI #0000078] Novo acompanhamento Erro Envio de mensagens ','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000078] Novo acompanhamento Erro Envio de mensagens &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_78\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_78&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Erro Envio de mensagens  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:03-02-2025 14:44 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- mario.lopes@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Erro Envio de mensagens &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;mario.lopes@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83993220200&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;\"Esta mensagem foi criada automaticamente pelo software de entrega de correio.&#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;\n&#60;p&#62;Uma mensagem que você enviou não pôde ser entregue a um ou mais destinatários. Este é um erro permanente. Os seguintes endereços falharam:\"&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [03-02-2025 17:47]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Após realizar acesso e testes, ficou constatado que o IP do usuário está em lista de bloqueio. Foi sugerido um procedimento para tentar obter novo IP ou falar com a operadora relatando o bloqueio .&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;03-02-2025 17:47&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [03-02-2025 16:50]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, Mário.&#60;/p&#62;\r\n&#60;p&#62;Por gentileza, me passe o ID do anydesk.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;03-02-2025 16:50&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_78 \n\n Chamado: Descrição\n\n Título : Erro Envio de mensagens \n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 14:44\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - mario.lopes@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Erro Envio de mensagens \n2) E-MAIL : mario.lopes@tecnomulti.com\n3) TELEFONE : 83993220200\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \n\"Esta mensagem foi criada automaticamente pelo software de entrega de correio.\n\n \n\nUma mensagem que você enviou não pôde ser entregue a um ou mais destinatários. Este é um erro permanente. Os seguintes endereços falharam:\"\n \n\n\n[03-02-2025 17:47]\nAutor Alexsandro Cruz\nDescrição Após realizar acesso e testes, ficou constatado que o IP do usuário está em lista de bloqueio. Foi sugerido um procedimento para tentar obter novo IP ou falar com a operadora relatando o bloqueio .\nData de abertura 03-02-2025 17:47\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[03-02-2025 16:50]\nAutor Alexsandro Cruz\nDescrição Boa tarde, Mário.\n\nPor gentileza, me passe o ID do anydesk.\nData de abertura 03-02-2025 16:50\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-78/add_followup.1738615648.2077443992@oswintech.ddns.net','','mailing','add_followup'),
(952,'Ticket',78,4,2,0,1,'2025-02-03 20:47:33','2025-02-18 18:15:34',NULL,'[GLPI #0000078] Encerramento do chamado Erro Envio de mensagens ','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000078] Encerramento do chamado Erro Envio de mensagens &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_78\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_78&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Erro Envio de mensagens  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:03-02-2025 14:44 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:03-02-2025 17:47 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- mario.lopes@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Erro Envio de mensagens &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;mario.lopes@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83993220200&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;\"Esta mensagem foi criada automaticamente pelo software de entrega de correio.&#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;\n&#60;p&#62;Uma mensagem que você enviou não pôde ser entregue a um ou mais destinatários. Este é um erro permanente. Os seguintes endereços falharam:\"&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 03-02-2025 17:47&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [03-02-2025 17:47]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Após realizar acesso e testes, ficou constatado que o IP do usuário está em lista de bloqueio. Foi sugerido um procedimento para tentar obter novo IP ou falar com a operadora relatando o bloqueio .&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;03-02-2025 17:47&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [03-02-2025 16:50]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, Mário.&#60;/p&#62;\r\n&#60;p&#62;Por gentileza, me passe o ID do anydesk.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;03-02-2025 16:50&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_78 \n\n Chamado: Descrição\n\n Título : Erro Envio de mensagens \n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 14:44\n Data de fechamento : 03-02-2025 17:47\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - mario.lopes@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Erro Envio de mensagens \n2) E-MAIL : mario.lopes@tecnomulti.com\n3) TELEFONE : 83993220200\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \n\"Esta mensagem foi criada automaticamente pelo software de entrega de correio.\n\n \n\nUma mensagem que você enviou não pôde ser entregue a um ou mais destinatários. Este é um erro permanente. Os seguintes endereços falharam:\"\n \n\n Data da solução : 03-02-2025 17:47\n Tipo de solução : \n Solução : \n \n\n\n[03-02-2025 17:47]\nAutor Alexsandro Cruz\nDescrição Após realizar acesso e testes, ficou constatado que o IP do usuário está em lista de bloqueio. Foi sugerido um procedimento para tentar obter novo IP ou falar com a operadora relatando o bloqueio .\nData de abertura 03-02-2025 17:47\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[03-02-2025 16:50]\nAutor Alexsandro Cruz\nDescrição Boa tarde, Mário.\n\nPor gentileza, me passe o ID do anydesk.\nData de abertura 03-02-2025 16:50\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-78/closed.1738615653.239278520@oswintech.ddns.net','','mailing','closed'),
(953,'Ticket',78,4,2,0,1,'2025-02-03 20:47:33','2025-02-18 18:15:34',NULL,'[GLPI #0000078] Encerramento do chamado Erro Envio de mensagens ','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000078] Encerramento do chamado Erro Envio de mensagens &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_78\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_78&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Erro Envio de mensagens  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:03-02-2025 14:44 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:03-02-2025 17:47 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- mario.lopes@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Erro Envio de mensagens &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;mario.lopes@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83993220200&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;\"Esta mensagem foi criada automaticamente pelo software de entrega de correio.&#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;\n&#60;p&#62;Uma mensagem que você enviou não pôde ser entregue a um ou mais destinatários. Este é um erro permanente. Os seguintes endereços falharam:\"&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 03-02-2025 17:47&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [03-02-2025 17:47]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Após realizar acesso e testes, ficou constatado que o IP do usuário está em lista de bloqueio. Foi sugerido um procedimento para tentar obter novo IP ou falar com a operadora relatando o bloqueio .&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;03-02-2025 17:47&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [03-02-2025 16:50]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, Mário.&#60;/p&#62;\r\n&#60;p&#62;Por gentileza, me passe o ID do anydesk.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;03-02-2025 16:50&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_78 \n\n Chamado: Descrição\n\n Título : Erro Envio de mensagens \n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 14:44\n Data de fechamento : 03-02-2025 17:47\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - mario.lopes@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Erro Envio de mensagens \n2) E-MAIL : mario.lopes@tecnomulti.com\n3) TELEFONE : 83993220200\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \n\"Esta mensagem foi criada automaticamente pelo software de entrega de correio.\n\n \n\nUma mensagem que você enviou não pôde ser entregue a um ou mais destinatários. Este é um erro permanente. Os seguintes endereços falharam:\"\n \n\n Data da solução : 03-02-2025 17:47\n Tipo de solução : \n Solução : \n \n\n\n[03-02-2025 17:47]\nAutor Alexsandro Cruz\nDescrição Após realizar acesso e testes, ficou constatado que o IP do usuário está em lista de bloqueio. Foi sugerido um procedimento para tentar obter novo IP ou falar com a operadora relatando o bloqueio .\nData de abertura 03-02-2025 17:47\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[03-02-2025 16:50]\nAutor Alexsandro Cruz\nDescrição Boa tarde, Mário.\n\nPor gentileza, me passe o ID do anydesk.\nData de abertura 03-02-2025 16:50\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-78/closed.1738615653.521030903@oswintech.ddns.net','','mailing','closed'),
(954,'Ticket',79,4,2,1,0,'2025-02-03 21:01:14','2025-02-03 21:01:14','2025-02-11 12:00:46','[GLPI #0000079] Novo acompanhamento Erro Envio de mensagens ',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_79 \n\n Chamado: Descrição\n\n Título : Erro Envio de mensagens \n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 17:21\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - mario.lopes@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Erro Envio de mensagens \n2) E-MAIL : mario.lopes@tecnomulti.com\n3) TELEFONE : 83993220200\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nThis message was created automatically by mail delivery software.\n\n \n\nA message that you sent could not be delivered to one or more of its recipients. This is a permanent error. The following address(es) failed:\n\n \n\n  alexcruzfab@hotmail.com\n\n    host eig-east.smtp.a.cloudfilter.net [3.228.35.199]\n\n    SMTP error from remote mail server after end of data:\n\n    550 Connection Rejected - see http://www.spamhaus.org/query/ip/168.196.197.55 AUP#BL\n\n  alexcruzfab@gmail.com\n\n    host eig-east.smtp.a.cloudfilter.net [18.215.58.191]\n\n    SMTP error from remote mail server after end of data:\n\n    550 Connection Rejected - see http://www.spamhaus.org/query/ip/168.196.197.55 AUP#BL\n \n\n\n[03-02-2025 18:01]\nAutor Alexsandro Cruz\nDescrição Problema solucionado em chamado anterior. \nData de abertura 03-02-2025 18:01\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(955,'Ticket',79,4,2,1,0,'2025-02-03 21:01:14','2025-02-03 21:01:14','2025-02-03 21:01:15','[GLPI #0000079] Novo acompanhamento Erro Envio de mensagens ',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_79 \n\n Chamado: Descrição\n\n Título : Erro Envio de mensagens \n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 17:21\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - mario.lopes@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Erro Envio de mensagens \n2) E-MAIL : mario.lopes@tecnomulti.com\n3) TELEFONE : 83993220200\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nThis message was created automatically by mail delivery software.\n\n \n\nA message that you sent could not be delivered to one or more of its recipients. This is a permanent error. The following address(es) failed:\n\n \n\n  alexcruzfab@hotmail.com\n\n    host eig-east.smtp.a.cloudfilter.net [3.228.35.199]\n\n    SMTP error from remote mail server after end of data:\n\n    550 Connection Rejected - see http://www.spamhaus.org/query/ip/168.196.197.55 AUP#BL\n\n  alexcruzfab@gmail.com\n\n    host eig-east.smtp.a.cloudfilter.net [18.215.58.191]\n\n    SMTP error from remote mail server after end of data:\n\n    550 Connection Rejected - see http://www.spamhaus.org/query/ip/168.196.197.55 AUP#BL\n \n\n\n[03-02-2025 18:01]\nAutor Alexsandro Cruz\nDescrição Problema solucionado em chamado anterior. \nData de abertura 03-02-2025 18:01\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(956,'Ticket',79,4,2,0,0,'2025-02-03 21:01:14','2025-02-03 21:01:14',NULL,'[GLPI #0000079] Novo acompanhamento Erro Envio de mensagens ',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_79 \n\n Chamado: Descrição\n\n Título : Erro Envio de mensagens \n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 17:21\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - mario.lopes@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Erro Envio de mensagens \n2) E-MAIL : mario.lopes@tecnomulti.com\n3) TELEFONE : 83993220200\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nThis message was created automatically by mail delivery software.\n\n \n\nA message that you sent could not be delivered to one or more of its recipients. This is a permanent error. The following address(es) failed:\n\n \n\n  alexcruzfab@hotmail.com\n\n    host eig-east.smtp.a.cloudfilter.net [3.228.35.199]\n\n    SMTP error from remote mail server after end of data:\n\n    550 Connection Rejected - see http://www.spamhaus.org/query/ip/168.196.197.55 AUP#BL\n\n  alexcruzfab@gmail.com\n\n    host eig-east.smtp.a.cloudfilter.net [18.215.58.191]\n\n    SMTP error from remote mail server after end of data:\n\n    550 Connection Rejected - see http://www.spamhaus.org/query/ip/168.196.197.55 AUP#BL\n \n\n\n[03-02-2025 18:01]\nAutor Alexsandro Cruz\nDescrição Problema solucionado em chamado anterior. \nData de abertura 03-02-2025 18:01\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(957,'Ticket',79,4,2,1,0,'2025-02-03 21:01:14','2025-02-03 21:01:14','2025-02-04 16:37:44','[GLPI #0000079] Novo acompanhamento Erro Envio de mensagens ',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_79 \n\n Chamado: Descrição\n\n Título : Erro Envio de mensagens \n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 17:21\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - mario.lopes@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Erro Envio de mensagens \n2) E-MAIL : mario.lopes@tecnomulti.com\n3) TELEFONE : 83993220200\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nThis message was created automatically by mail delivery software.\n\n \n\nA message that you sent could not be delivered to one or more of its recipients. This is a permanent error. The following address(es) failed:\n\n \n\n  alexcruzfab@hotmail.com\n\n    host eig-east.smtp.a.cloudfilter.net [3.228.35.199]\n\n    SMTP error from remote mail server after end of data:\n\n    550 Connection Rejected - see http://www.spamhaus.org/query/ip/168.196.197.55 AUP#BL\n\n  alexcruzfab@gmail.com\n\n    host eig-east.smtp.a.cloudfilter.net [18.215.58.191]\n\n    SMTP error from remote mail server after end of data:\n\n    550 Connection Rejected - see http://www.spamhaus.org/query/ip/168.196.197.55 AUP#BL\n \n\n\n[03-02-2025 18:01]\nAutor Alexsandro Cruz\nDescrição Problema solucionado em chamado anterior. \nData de abertura 03-02-2025 18:01\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(958,'Ticket',79,4,2,0,1,'2025-02-03 21:01:14','2025-02-18 18:15:34',NULL,'[GLPI #0000079] Novo acompanhamento Erro Envio de mensagens ','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000079] Novo acompanhamento Erro Envio de mensagens &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_79\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_79&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Erro Envio de mensagens  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:03-02-2025 17:21 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- mario.lopes@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Erro Envio de mensagens &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;mario.lopes@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83993220200&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;This message was created automatically by mail delivery software.&#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;\n&#60;p&#62;A message that you sent could not be delivered to one or more of its recipients. This is a permanent error. The following address(es) failed:&#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;\n&#60;p&#62;  alexcruzfab@hotmail.com&#60;/p&#62;\n&#60;p&#62;    host eig-east.smtp.a.cloudfilter.net [3.228.35.199]&#60;/p&#62;\n&#60;p&#62;    SMTP error from remote mail server after end of data:&#60;/p&#62;\n&#60;p&#62;    550 Connection Rejected - see &#60;a href=\"http://www.spamhaus.org/query/ip/168.196.197.55\" target=\"_blank\"&#62;http://www.spamhaus.org/query/ip/168.196.197.55&#60;/a&#62; AUP#BL&#60;/p&#62;\n&#60;p&#62;  alexcruzfab@gmail.com&#60;/p&#62;\n&#60;p&#62;    host eig-east.smtp.a.cloudfilter.net [18.215.58.191]&#60;/p&#62;\n&#60;p&#62;    SMTP error from remote mail server after end of data:&#60;/p&#62;\n&#60;p&#62;    550 Connection Rejected - see &#60;a href=\"http://www.spamhaus.org/query/ip/168.196.197.55\" target=\"_blank\"&#62;http://www.spamhaus.org/query/ip/168.196.197.55&#60;/a&#62; AUP#BL&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [03-02-2025 18:01]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Problema solucionado em chamado anterior. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;03-02-2025 18:01&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_79 \n\n Chamado: Descrição\n\n Título : Erro Envio de mensagens \n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 17:21\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - mario.lopes@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Erro Envio de mensagens \n2) E-MAIL : mario.lopes@tecnomulti.com\n3) TELEFONE : 83993220200\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nThis message was created automatically by mail delivery software.\n\n \n\nA message that you sent could not be delivered to one or more of its recipients. This is a permanent error. The following address(es) failed:\n\n \n\n  alexcruzfab@hotmail.com\n\n    host eig-east.smtp.a.cloudfilter.net [3.228.35.199]\n\n    SMTP error from remote mail server after end of data:\n\n    550 Connection Rejected - see http://www.spamhaus.org/query/ip/168.196.197.55 AUP#BL\n\n  alexcruzfab@gmail.com\n\n    host eig-east.smtp.a.cloudfilter.net [18.215.58.191]\n\n    SMTP error from remote mail server after end of data:\n\n    550 Connection Rejected - see http://www.spamhaus.org/query/ip/168.196.197.55 AUP#BL\n \n\n\n[03-02-2025 18:01]\nAutor Alexsandro Cruz\nDescrição Problema solucionado em chamado anterior. \nData de abertura 03-02-2025 18:01\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-79/add_followup.1738616474.1457841133@oswintech.ddns.net','','mailing','add_followup'),
(959,'Ticket',79,4,2,0,1,'2025-02-03 21:01:14','2025-02-18 18:15:34',NULL,'[GLPI #0000079] Novo acompanhamento Erro Envio de mensagens ','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000079] Novo acompanhamento Erro Envio de mensagens &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_79\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_79&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Erro Envio de mensagens  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:03-02-2025 17:21 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- mario.lopes@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Erro Envio de mensagens &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;mario.lopes@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83993220200&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;This message was created automatically by mail delivery software.&#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;\n&#60;p&#62;A message that you sent could not be delivered to one or more of its recipients. This is a permanent error. The following address(es) failed:&#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;\n&#60;p&#62;  alexcruzfab@hotmail.com&#60;/p&#62;\n&#60;p&#62;    host eig-east.smtp.a.cloudfilter.net [3.228.35.199]&#60;/p&#62;\n&#60;p&#62;    SMTP error from remote mail server after end of data:&#60;/p&#62;\n&#60;p&#62;    550 Connection Rejected - see &#60;a href=\"http://www.spamhaus.org/query/ip/168.196.197.55\" target=\"_blank\"&#62;http://www.spamhaus.org/query/ip/168.196.197.55&#60;/a&#62; AUP#BL&#60;/p&#62;\n&#60;p&#62;  alexcruzfab@gmail.com&#60;/p&#62;\n&#60;p&#62;    host eig-east.smtp.a.cloudfilter.net [18.215.58.191]&#60;/p&#62;\n&#60;p&#62;    SMTP error from remote mail server after end of data:&#60;/p&#62;\n&#60;p&#62;    550 Connection Rejected - see &#60;a href=\"http://www.spamhaus.org/query/ip/168.196.197.55\" target=\"_blank\"&#62;http://www.spamhaus.org/query/ip/168.196.197.55&#60;/a&#62; AUP#BL&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [03-02-2025 18:01]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Problema solucionado em chamado anterior. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;03-02-2025 18:01&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_79 \n\n Chamado: Descrição\n\n Título : Erro Envio de mensagens \n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 17:21\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - mario.lopes@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Erro Envio de mensagens \n2) E-MAIL : mario.lopes@tecnomulti.com\n3) TELEFONE : 83993220200\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nThis message was created automatically by mail delivery software.\n\n \n\nA message that you sent could not be delivered to one or more of its recipients. This is a permanent error. The following address(es) failed:\n\n \n\n  alexcruzfab@hotmail.com\n\n    host eig-east.smtp.a.cloudfilter.net [3.228.35.199]\n\n    SMTP error from remote mail server after end of data:\n\n    550 Connection Rejected - see http://www.spamhaus.org/query/ip/168.196.197.55 AUP#BL\n\n  alexcruzfab@gmail.com\n\n    host eig-east.smtp.a.cloudfilter.net [18.215.58.191]\n\n    SMTP error from remote mail server after end of data:\n\n    550 Connection Rejected - see http://www.spamhaus.org/query/ip/168.196.197.55 AUP#BL\n \n\n\n[03-02-2025 18:01]\nAutor Alexsandro Cruz\nDescrição Problema solucionado em chamado anterior. \nData de abertura 03-02-2025 18:01\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-79/add_followup.1738616474.84631031@oswintech.ddns.net','','mailing','add_followup'),
(960,'Ticket',79,4,2,0,1,'2025-02-03 21:01:14','2025-02-18 18:15:34',NULL,'[GLPI #0000079] Novo acompanhamento Erro Envio de mensagens ','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000079] Novo acompanhamento Erro Envio de mensagens &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_79\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_79&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Erro Envio de mensagens  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:03-02-2025 17:21 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- mario.lopes@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Erro Envio de mensagens &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;mario.lopes@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83993220200&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;This message was created automatically by mail delivery software.&#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;\n&#60;p&#62;A message that you sent could not be delivered to one or more of its recipients. This is a permanent error. The following address(es) failed:&#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;\n&#60;p&#62;  alexcruzfab@hotmail.com&#60;/p&#62;\n&#60;p&#62;    host eig-east.smtp.a.cloudfilter.net [3.228.35.199]&#60;/p&#62;\n&#60;p&#62;    SMTP error from remote mail server after end of data:&#60;/p&#62;\n&#60;p&#62;    550 Connection Rejected - see &#60;a href=\"http://www.spamhaus.org/query/ip/168.196.197.55\" target=\"_blank\"&#62;http://www.spamhaus.org/query/ip/168.196.197.55&#60;/a&#62; AUP#BL&#60;/p&#62;\n&#60;p&#62;  alexcruzfab@gmail.com&#60;/p&#62;\n&#60;p&#62;    host eig-east.smtp.a.cloudfilter.net [18.215.58.191]&#60;/p&#62;\n&#60;p&#62;    SMTP error from remote mail server after end of data:&#60;/p&#62;\n&#60;p&#62;    550 Connection Rejected - see &#60;a href=\"http://www.spamhaus.org/query/ip/168.196.197.55\" target=\"_blank\"&#62;http://www.spamhaus.org/query/ip/168.196.197.55&#60;/a&#62; AUP#BL&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [03-02-2025 18:01]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Problema solucionado em chamado anterior. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;03-02-2025 18:01&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_79 \n\n Chamado: Descrição\n\n Título : Erro Envio de mensagens \n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 17:21\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - mario.lopes@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Erro Envio de mensagens \n2) E-MAIL : mario.lopes@tecnomulti.com\n3) TELEFONE : 83993220200\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nThis message was created automatically by mail delivery software.\n\n \n\nA message that you sent could not be delivered to one or more of its recipients. This is a permanent error. The following address(es) failed:\n\n \n\n  alexcruzfab@hotmail.com\n\n    host eig-east.smtp.a.cloudfilter.net [3.228.35.199]\n\n    SMTP error from remote mail server after end of data:\n\n    550 Connection Rejected - see http://www.spamhaus.org/query/ip/168.196.197.55 AUP#BL\n\n  alexcruzfab@gmail.com\n\n    host eig-east.smtp.a.cloudfilter.net [18.215.58.191]\n\n    SMTP error from remote mail server after end of data:\n\n    550 Connection Rejected - see http://www.spamhaus.org/query/ip/168.196.197.55 AUP#BL\n \n\n\n[03-02-2025 18:01]\nAutor Alexsandro Cruz\nDescrição Problema solucionado em chamado anterior. \nData de abertura 03-02-2025 18:01\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-79/add_followup.1738616474.1021743649@oswintech.ddns.net','','mailing','add_followup'),
(961,'Ticket',79,4,2,0,1,'2025-02-03 21:01:14','2025-02-18 18:15:34',NULL,'[GLPI #0000079] Novo acompanhamento Erro Envio de mensagens ','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000079] Novo acompanhamento Erro Envio de mensagens &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_79\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_79&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Erro Envio de mensagens  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:03-02-2025 17:21 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- mario.lopes@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Erro Envio de mensagens &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;mario.lopes@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83993220200&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;This message was created automatically by mail delivery software.&#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;\n&#60;p&#62;A message that you sent could not be delivered to one or more of its recipients. This is a permanent error. The following address(es) failed:&#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;\n&#60;p&#62;  alexcruzfab@hotmail.com&#60;/p&#62;\n&#60;p&#62;    host eig-east.smtp.a.cloudfilter.net [3.228.35.199]&#60;/p&#62;\n&#60;p&#62;    SMTP error from remote mail server after end of data:&#60;/p&#62;\n&#60;p&#62;    550 Connection Rejected - see &#60;a href=\"http://www.spamhaus.org/query/ip/168.196.197.55\" target=\"_blank\"&#62;http://www.spamhaus.org/query/ip/168.196.197.55&#60;/a&#62; AUP#BL&#60;/p&#62;\n&#60;p&#62;  alexcruzfab@gmail.com&#60;/p&#62;\n&#60;p&#62;    host eig-east.smtp.a.cloudfilter.net [18.215.58.191]&#60;/p&#62;\n&#60;p&#62;    SMTP error from remote mail server after end of data:&#60;/p&#62;\n&#60;p&#62;    550 Connection Rejected - see &#60;a href=\"http://www.spamhaus.org/query/ip/168.196.197.55\" target=\"_blank\"&#62;http://www.spamhaus.org/query/ip/168.196.197.55&#60;/a&#62; AUP#BL&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [03-02-2025 18:01]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Problema solucionado em chamado anterior. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;03-02-2025 18:01&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_79 \n\n Chamado: Descrição\n\n Título : Erro Envio de mensagens \n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 17:21\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - mario.lopes@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Erro Envio de mensagens \n2) E-MAIL : mario.lopes@tecnomulti.com\n3) TELEFONE : 83993220200\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nThis message was created automatically by mail delivery software.\n\n \n\nA message that you sent could not be delivered to one or more of its recipients. This is a permanent error. The following address(es) failed:\n\n \n\n  alexcruzfab@hotmail.com\n\n    host eig-east.smtp.a.cloudfilter.net [3.228.35.199]\n\n    SMTP error from remote mail server after end of data:\n\n    550 Connection Rejected - see http://www.spamhaus.org/query/ip/168.196.197.55 AUP#BL\n\n  alexcruzfab@gmail.com\n\n    host eig-east.smtp.a.cloudfilter.net [18.215.58.191]\n\n    SMTP error from remote mail server after end of data:\n\n    550 Connection Rejected - see http://www.spamhaus.org/query/ip/168.196.197.55 AUP#BL\n \n\n\n[03-02-2025 18:01]\nAutor Alexsandro Cruz\nDescrição Problema solucionado em chamado anterior. \nData de abertura 03-02-2025 18:01\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-79/add_followup.1738616475.278386825@oswintech.ddns.net','','mailing','add_followup'),
(962,'Ticket',79,4,2,0,1,'2025-02-03 21:01:20','2025-02-18 18:15:34',NULL,'[GLPI #0000079] Encerramento do chamado Erro Envio de mensagens ','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000079] Encerramento do chamado Erro Envio de mensagens &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_79\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_79&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Erro Envio de mensagens  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:03-02-2025 17:21 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:03-02-2025 18:01 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- mario.lopes@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Erro Envio de mensagens &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;mario.lopes@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83993220200&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;This message was created automatically by mail delivery software.&#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;\n&#60;p&#62;A message that you sent could not be delivered to one or more of its recipients. This is a permanent error. The following address(es) failed:&#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;\n&#60;p&#62;  alexcruzfab@hotmail.com&#60;/p&#62;\n&#60;p&#62;    host eig-east.smtp.a.cloudfilter.net [3.228.35.199]&#60;/p&#62;\n&#60;p&#62;    SMTP error from remote mail server after end of data:&#60;/p&#62;\n&#60;p&#62;    550 Connection Rejected - see &#60;a href=\"http://www.spamhaus.org/query/ip/168.196.197.55\" target=\"_blank\"&#62;http://www.spamhaus.org/query/ip/168.196.197.55&#60;/a&#62; AUP#BL&#60;/p&#62;\n&#60;p&#62;  alexcruzfab@gmail.com&#60;/p&#62;\n&#60;p&#62;    host eig-east.smtp.a.cloudfilter.net [18.215.58.191]&#60;/p&#62;\n&#60;p&#62;    SMTP error from remote mail server after end of data:&#60;/p&#62;\n&#60;p&#62;    550 Connection Rejected - see &#60;a href=\"http://www.spamhaus.org/query/ip/168.196.197.55\" target=\"_blank\"&#62;http://www.spamhaus.org/query/ip/168.196.197.55&#60;/a&#62; AUP#BL&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 03-02-2025 18:01&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [03-02-2025 18:01]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Problema solucionado em chamado anterior. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;03-02-2025 18:01&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_79 \n\n Chamado: Descrição\n\n Título : Erro Envio de mensagens \n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 17:21\n Data de fechamento : 03-02-2025 18:01\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - mario.lopes@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Erro Envio de mensagens \n2) E-MAIL : mario.lopes@tecnomulti.com\n3) TELEFONE : 83993220200\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nThis message was created automatically by mail delivery software.\n\n \n\nA message that you sent could not be delivered to one or more of its recipients. This is a permanent error. The following address(es) failed:\n\n \n\n  alexcruzfab@hotmail.com\n\n    host eig-east.smtp.a.cloudfilter.net [3.228.35.199]\n\n    SMTP error from remote mail server after end of data:\n\n    550 Connection Rejected - see http://www.spamhaus.org/query/ip/168.196.197.55 AUP#BL\n\n  alexcruzfab@gmail.com\n\n    host eig-east.smtp.a.cloudfilter.net [18.215.58.191]\n\n    SMTP error from remote mail server after end of data:\n\n    550 Connection Rejected - see http://www.spamhaus.org/query/ip/168.196.197.55 AUP#BL\n \n\n Data da solução : 03-02-2025 18:01\n Tipo de solução : \n Solução : \n \n\n\n[03-02-2025 18:01]\nAutor Alexsandro Cruz\nDescrição Problema solucionado em chamado anterior. \nData de abertura 03-02-2025 18:01\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-79/closed.1738616480.1282328053@oswintech.ddns.net','','mailing','closed'),
(963,'Ticket',79,4,2,0,1,'2025-02-03 21:01:20','2025-02-18 18:15:34',NULL,'[GLPI #0000079] Encerramento do chamado Erro Envio de mensagens ','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000079] Encerramento do chamado Erro Envio de mensagens &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_79\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_79&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Erro Envio de mensagens  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:03-02-2025 17:21 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:03-02-2025 18:01 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- mario.lopes@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Erro Envio de mensagens &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;mario.lopes@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83993220200&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;This message was created automatically by mail delivery software.&#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;\n&#60;p&#62;A message that you sent could not be delivered to one or more of its recipients. This is a permanent error. The following address(es) failed:&#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;\n&#60;p&#62;  alexcruzfab@hotmail.com&#60;/p&#62;\n&#60;p&#62;    host eig-east.smtp.a.cloudfilter.net [3.228.35.199]&#60;/p&#62;\n&#60;p&#62;    SMTP error from remote mail server after end of data:&#60;/p&#62;\n&#60;p&#62;    550 Connection Rejected - see &#60;a href=\"http://www.spamhaus.org/query/ip/168.196.197.55\" target=\"_blank\"&#62;http://www.spamhaus.org/query/ip/168.196.197.55&#60;/a&#62; AUP#BL&#60;/p&#62;\n&#60;p&#62;  alexcruzfab@gmail.com&#60;/p&#62;\n&#60;p&#62;    host eig-east.smtp.a.cloudfilter.net [18.215.58.191]&#60;/p&#62;\n&#60;p&#62;    SMTP error from remote mail server after end of data:&#60;/p&#62;\n&#60;p&#62;    550 Connection Rejected - see &#60;a href=\"http://www.spamhaus.org/query/ip/168.196.197.55\" target=\"_blank\"&#62;http://www.spamhaus.org/query/ip/168.196.197.55&#60;/a&#62; AUP#BL&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 03-02-2025 18:01&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [03-02-2025 18:01]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Problema solucionado em chamado anterior. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;03-02-2025 18:01&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_79 \n\n Chamado: Descrição\n\n Título : Erro Envio de mensagens \n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 17:21\n Data de fechamento : 03-02-2025 18:01\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - mario.lopes@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Erro Envio de mensagens \n2) E-MAIL : mario.lopes@tecnomulti.com\n3) TELEFONE : 83993220200\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nThis message was created automatically by mail delivery software.\n\n \n\nA message that you sent could not be delivered to one or more of its recipients. This is a permanent error. The following address(es) failed:\n\n \n\n  alexcruzfab@hotmail.com\n\n    host eig-east.smtp.a.cloudfilter.net [3.228.35.199]\n\n    SMTP error from remote mail server after end of data:\n\n    550 Connection Rejected - see http://www.spamhaus.org/query/ip/168.196.197.55 AUP#BL\n\n  alexcruzfab@gmail.com\n\n    host eig-east.smtp.a.cloudfilter.net [18.215.58.191]\n\n    SMTP error from remote mail server after end of data:\n\n    550 Connection Rejected - see http://www.spamhaus.org/query/ip/168.196.197.55 AUP#BL\n \n\n Data da solução : 03-02-2025 18:01\n Tipo de solução : \n Solução : \n \n\n\n[03-02-2025 18:01]\nAutor Alexsandro Cruz\nDescrição Problema solucionado em chamado anterior. \nData de abertura 03-02-2025 18:01\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-79/closed.1738616480.435459853@oswintech.ddns.net','','mailing','closed'),
(964,'Ticket',77,4,2,1,0,'2025-02-04 11:22:32','2025-02-04 11:22:32','2025-02-11 12:00:47','[GLPI #0000077] Novo acompanhamento VPN FIBRASIL',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_77 \n\n Chamado: Descrição\n\n Título : VPN FIBRASIL\n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 14:21\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - danielle.silva@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : VPN FIBRASIL\n2) E-MAIL : danielle.silva@tecnomulti.com\n3) TELEFONE : 81 99256-9899\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nA VPN da Fibrasil aprensentando erro ao acesso . \n \n\n\n[04-02-2025 08:22]\nAutor Alexsandro Cruz\nDescrição Acesso normalizado sem auxilio do suporte tecnomulti. \nData de abertura 04-02-2025 08:22\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(965,'Ticket',77,4,2,1,0,'2025-02-04 11:22:32','2025-02-04 11:22:32','2025-02-04 11:22:38','[GLPI #0000077] Novo acompanhamento VPN FIBRASIL',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_77 \n\n Chamado: Descrição\n\n Título : VPN FIBRASIL\n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 14:21\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - danielle.silva@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : VPN FIBRASIL\n2) E-MAIL : danielle.silva@tecnomulti.com\n3) TELEFONE : 81 99256-9899\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nA VPN da Fibrasil aprensentando erro ao acesso . \n \n\n\n[04-02-2025 08:22]\nAutor Alexsandro Cruz\nDescrição Acesso normalizado sem auxilio do suporte tecnomulti. \nData de abertura 04-02-2025 08:22\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(966,'Ticket',77,4,2,0,0,'2025-02-04 11:22:32','2025-02-04 11:22:32',NULL,'[GLPI #0000077] Novo acompanhamento VPN FIBRASIL',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_77 \n\n Chamado: Descrição\n\n Título : VPN FIBRASIL\n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 14:21\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - danielle.silva@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : VPN FIBRASIL\n2) E-MAIL : danielle.silva@tecnomulti.com\n3) TELEFONE : 81 99256-9899\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nA VPN da Fibrasil aprensentando erro ao acesso . \n \n\n\n[04-02-2025 08:22]\nAutor Alexsandro Cruz\nDescrição Acesso normalizado sem auxilio do suporte tecnomulti. \nData de abertura 04-02-2025 08:22\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(967,'Ticket',77,4,2,1,0,'2025-02-04 11:22:32','2025-02-04 11:22:32','2025-02-04 16:37:44','[GLPI #0000077] Novo acompanhamento VPN FIBRASIL',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_77 \n\n Chamado: Descrição\n\n Título : VPN FIBRASIL\n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 14:21\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - danielle.silva@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : VPN FIBRASIL\n2) E-MAIL : danielle.silva@tecnomulti.com\n3) TELEFONE : 81 99256-9899\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nA VPN da Fibrasil aprensentando erro ao acesso . \n \n\n\n[04-02-2025 08:22]\nAutor Alexsandro Cruz\nDescrição Acesso normalizado sem auxilio do suporte tecnomulti. \nData de abertura 04-02-2025 08:22\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup');
INSERT INTO `glpi_queuednotifications` VALUES
(968,'Ticket',77,4,2,0,1,'2025-02-04 11:22:32','2025-02-18 18:15:34',NULL,'[GLPI #0000077] Novo acompanhamento VPN FIBRASIL','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000077] Novo acompanhamento VPN FIBRASIL&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_77\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_77&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:VPN FIBRASIL &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:03-02-2025 14:21 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- danielle.silva@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;VPN FIBRASIL&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;danielle.silva@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62; 81 99256-9899&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;A VPN da Fibrasil aprensentando erro ao acesso . &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [04-02-2025 08:22]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Acesso normalizado sem auxilio do suporte tecnomulti. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;04-02-2025 08:22&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_77 \n\n Chamado: Descrição\n\n Título : VPN FIBRASIL\n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 14:21\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - danielle.silva@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : VPN FIBRASIL\n2) E-MAIL : danielle.silva@tecnomulti.com\n3) TELEFONE : 81 99256-9899\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nA VPN da Fibrasil aprensentando erro ao acesso . \n \n\n\n[04-02-2025 08:22]\nAutor Alexsandro Cruz\nDescrição Acesso normalizado sem auxilio do suporte tecnomulti. \nData de abertura 04-02-2025 08:22\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-77/add_followup.1738668152.1411904917@oswintech.ddns.net','','mailing','add_followup'),
(969,'Ticket',77,4,2,0,1,'2025-02-04 11:22:32','2025-02-18 18:15:34',NULL,'[GLPI #0000077] Novo acompanhamento VPN FIBRASIL','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000077] Novo acompanhamento VPN FIBRASIL&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_77\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_77&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:VPN FIBRASIL &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:03-02-2025 14:21 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- danielle.silva@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;VPN FIBRASIL&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;danielle.silva@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62; 81 99256-9899&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;A VPN da Fibrasil aprensentando erro ao acesso . &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [04-02-2025 08:22]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Acesso normalizado sem auxilio do suporte tecnomulti. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;04-02-2025 08:22&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_77 \n\n Chamado: Descrição\n\n Título : VPN FIBRASIL\n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 14:21\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - danielle.silva@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : VPN FIBRASIL\n2) E-MAIL : danielle.silva@tecnomulti.com\n3) TELEFONE : 81 99256-9899\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nA VPN da Fibrasil aprensentando erro ao acesso . \n \n\n\n[04-02-2025 08:22]\nAutor Alexsandro Cruz\nDescrição Acesso normalizado sem auxilio do suporte tecnomulti. \nData de abertura 04-02-2025 08:22\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-77/add_followup.1738668152.285146687@oswintech.ddns.net','','mailing','add_followup'),
(970,'Ticket',77,4,2,0,1,'2025-02-04 11:22:32','2025-02-18 18:15:34',NULL,'[GLPI #0000077] Novo acompanhamento VPN FIBRASIL','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000077] Novo acompanhamento VPN FIBRASIL&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_77\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_77&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:VPN FIBRASIL &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:03-02-2025 14:21 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- danielle.silva@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;VPN FIBRASIL&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;danielle.silva@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62; 81 99256-9899&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;A VPN da Fibrasil aprensentando erro ao acesso . &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [04-02-2025 08:22]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Acesso normalizado sem auxilio do suporte tecnomulti. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;04-02-2025 08:22&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_77 \n\n Chamado: Descrição\n\n Título : VPN FIBRASIL\n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 14:21\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - danielle.silva@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : VPN FIBRASIL\n2) E-MAIL : danielle.silva@tecnomulti.com\n3) TELEFONE : 81 99256-9899\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nA VPN da Fibrasil aprensentando erro ao acesso . \n \n\n\n[04-02-2025 08:22]\nAutor Alexsandro Cruz\nDescrição Acesso normalizado sem auxilio do suporte tecnomulti. \nData de abertura 04-02-2025 08:22\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-77/add_followup.1738668152.448107900@oswintech.ddns.net','','mailing','add_followup'),
(971,'Ticket',77,4,2,0,1,'2025-02-04 11:22:32','2025-02-18 18:15:34',NULL,'[GLPI #0000077] Novo acompanhamento VPN FIBRASIL','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000077] Novo acompanhamento VPN FIBRASIL&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_77\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_77&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:VPN FIBRASIL &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:03-02-2025 14:21 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- danielle.silva@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;VPN FIBRASIL&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;danielle.silva@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62; 81 99256-9899&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;A VPN da Fibrasil aprensentando erro ao acesso . &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [04-02-2025 08:22]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Acesso normalizado sem auxilio do suporte tecnomulti. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;04-02-2025 08:22&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_77 \n\n Chamado: Descrição\n\n Título : VPN FIBRASIL\n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 14:21\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - danielle.silva@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : VPN FIBRASIL\n2) E-MAIL : danielle.silva@tecnomulti.com\n3) TELEFONE : 81 99256-9899\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nA VPN da Fibrasil aprensentando erro ao acesso . \n \n\n\n[04-02-2025 08:22]\nAutor Alexsandro Cruz\nDescrição Acesso normalizado sem auxilio do suporte tecnomulti. \nData de abertura 04-02-2025 08:22\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-77/add_followup.1738668152.297450809@oswintech.ddns.net','','mailing','add_followup'),
(972,'Ticket',77,4,2,0,1,'2025-02-04 11:22:37','2025-02-18 18:15:34',NULL,'[GLPI #0000077] Encerramento do chamado VPN FIBRASIL','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000077] Encerramento do chamado VPN FIBRASIL&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_77\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_77&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:VPN FIBRASIL &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:03-02-2025 14:21 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:04-02-2025 08:22 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- danielle.silva@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;VPN FIBRASIL&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;danielle.silva@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62; 81 99256-9899&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;A VPN da Fibrasil aprensentando erro ao acesso . &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 04-02-2025 08:22&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [04-02-2025 08:22]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Acesso normalizado sem auxilio do suporte tecnomulti. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;04-02-2025 08:22&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_77 \n\n Chamado: Descrição\n\n Título : VPN FIBRASIL\n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 14:21\n Data de fechamento : 04-02-2025 08:22\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - danielle.silva@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : VPN FIBRASIL\n2) E-MAIL : danielle.silva@tecnomulti.com\n3) TELEFONE : 81 99256-9899\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nA VPN da Fibrasil aprensentando erro ao acesso . \n \n\n Data da solução : 04-02-2025 08:22\n Tipo de solução : \n Solução : \n \n\n\n[04-02-2025 08:22]\nAutor Alexsandro Cruz\nDescrição Acesso normalizado sem auxilio do suporte tecnomulti. \nData de abertura 04-02-2025 08:22\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-77/closed.1738668157.803380707@oswintech.ddns.net','','mailing','closed'),
(973,'Ticket',77,4,2,0,1,'2025-02-04 11:22:37','2025-02-18 18:15:34',NULL,'[GLPI #0000077] Encerramento do chamado VPN FIBRASIL','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000077] Encerramento do chamado VPN FIBRASIL&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_77\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_77&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:VPN FIBRASIL &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:03-02-2025 14:21 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:04-02-2025 08:22 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- danielle.silva@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;VPN FIBRASIL&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;danielle.silva@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62; 81 99256-9899&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;A VPN da Fibrasil aprensentando erro ao acesso . &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 04-02-2025 08:22&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [04-02-2025 08:22]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Acesso normalizado sem auxilio do suporte tecnomulti. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;04-02-2025 08:22&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_77 \n\n Chamado: Descrição\n\n Título : VPN FIBRASIL\n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 14:21\n Data de fechamento : 04-02-2025 08:22\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - danielle.silva@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : VPN FIBRASIL\n2) E-MAIL : danielle.silva@tecnomulti.com\n3) TELEFONE : 81 99256-9899\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nA VPN da Fibrasil aprensentando erro ao acesso . \n \n\n Data da solução : 04-02-2025 08:22\n Tipo de solução : \n Solução : \n \n\n\n[04-02-2025 08:22]\nAutor Alexsandro Cruz\nDescrição Acesso normalizado sem auxilio do suporte tecnomulti. \nData de abertura 04-02-2025 08:22\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-77/closed.1738668157.1117763197@oswintech.ddns.net','','mailing','closed'),
(974,'Ticket',76,4,2,0,1,'2025-02-04 11:49:55','2025-02-18 18:53:01',NULL,'[GLPI #0000076] Encerramento do chamado VPN com problema','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000076] Encerramento do chamado VPN com problema&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_76\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_76&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:VPN com problema &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:03-02-2025 10:18 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:04-02-2025 08:49 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- arthur.ulisses@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;VPN com problema&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;arthur.ulisses@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;85992155440&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;VPN aparenta estar muito lento, impossibilitando o trabalho.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 04-02-2025 08:49&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [03-02-2025 10:51]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;1800374098&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;03-02-2025 10:51&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [03-02-2025 10:49]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Me passa teu anydesk. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;03-02-2025 10:49&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_76 \n\n Chamado: Descrição\n\n Título : VPN com problema\n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 10:18\n Data de fechamento : 04-02-2025 08:49\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - arthur.ulisses@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : VPN com problema\n2) E-MAIL : arthur.ulisses@tecnomulti.com\n3) TELEFONE : 85992155440\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nVPN aparenta estar muito lento, impossibilitando o trabalho.\n \n\n Data da solução : 04-02-2025 08:49\n Tipo de solução : \n Solução : \n \n\n\n[03-02-2025 10:51]\nAutor tecnomulti\nDescrição 1800374098\nData de abertura 03-02-2025 10:51\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[03-02-2025 10:49]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nMe passa teu anydesk. \nData de abertura 03-02-2025 10:49\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-76/closed.1738669796.1690700141@oswintech.ddns.net','','mailing','closed'),
(975,'Ticket',76,4,2,0,1,'2025-02-04 11:49:55','2025-02-18 18:53:01',NULL,'[GLPI #0000076] Encerramento do chamado VPN com problema','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000076] Encerramento do chamado VPN com problema&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_76\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_76&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:VPN com problema &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:03-02-2025 10:18 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:04-02-2025 08:49 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- arthur.ulisses@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;VPN com problema&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;arthur.ulisses@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;85992155440&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;VPN aparenta estar muito lento, impossibilitando o trabalho.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 04-02-2025 08:49&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [03-02-2025 10:51]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;1800374098&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;03-02-2025 10:51&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [03-02-2025 10:49]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Me passa teu anydesk. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;03-02-2025 10:49&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_76 \n\n Chamado: Descrição\n\n Título : VPN com problema\n Requerentes :  tecnomulti  \n Data de abertura : 03-02-2025 10:18\n Data de fechamento : 04-02-2025 08:49\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - arthur.ulisses@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : VPN com problema\n2) E-MAIL : arthur.ulisses@tecnomulti.com\n3) TELEFONE : 85992155440\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nVPN aparenta estar muito lento, impossibilitando o trabalho.\n \n\n Data da solução : 04-02-2025 08:49\n Tipo de solução : \n Solução : \n \n\n\n[03-02-2025 10:51]\nAutor tecnomulti\nDescrição 1800374098\nData de abertura 03-02-2025 10:51\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[03-02-2025 10:49]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nMe passa teu anydesk. \nData de abertura 03-02-2025 10:49\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-76/closed.1738669796.1352065839@oswintech.ddns.net','','mailing','closed'),
(976,'PluginFormcreatorFormAnswer',44,29,2,0,1,'2025-02-04 18:37:10','2025-02-18 18:53:01',NULL,'[GLPI] Sua requisição foi salva','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI] Sua requisi&#38;ccedil;&#38;atilde;o foi salva&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;p&#62;Olá,&#60;br /&#62;Sua requisição do GLPI foi salva com sucesso com o número 44 e transmitido para a equipe de helpdesk.&#60;br /&#62;Você pode ver suas respostas no seguinte link:&#60;br /&#62;https://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=44&#60;/p&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;','Olá,\nSua requisição do GLPI foi salva com sucesso com o número 44 e transmitido para a equipe de helpdesk.\nVocê pode ver suas respostas no seguinte link:\nhttps://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=44\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-PluginFormcreatorFormAnswer-44/plugin_formcreator_form_created.1738694230.1042816566@oswintech.ddns.net','','mailing','plugin_formcreator_form_created'),
(977,'Ticket',80,4,2,1,0,'2025-02-04 18:37:10','2025-02-04 18:37:10','2025-02-11 12:00:47','[GLPI #0000080] Novo chamado VPN',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_80 \n\n Chamado: Descrição\n\n Título : VPN\n Requerentes :  tecnomulti  \n Data de abertura : 04-02-2025 15:37\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : VPN\n2) E-MAIL : fabiano.melo@tecnomulti.com\n3) TELEFONE : 81988187688\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nACESSO A VPN \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(978,'Ticket',80,4,2,1,0,'2025-02-04 18:37:10','2025-02-04 18:37:10','2025-02-10 11:18:46','[GLPI #0000080] Novo chamado VPN',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_80 \n\n Chamado: Descrição\n\n Título : VPN\n Requerentes :  tecnomulti  \n Data de abertura : 04-02-2025 15:37\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : VPN\n2) E-MAIL : fabiano.melo@tecnomulti.com\n3) TELEFONE : 81988187688\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nACESSO A VPN \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(979,'Ticket',80,4,2,0,0,'2025-02-04 18:37:10','2025-02-04 18:37:10',NULL,'[GLPI #0000080] Novo chamado VPN',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_80 \n\n Chamado: Descrição\n\n Título : VPN\n Requerentes :  tecnomulti  \n Data de abertura : 04-02-2025 15:37\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : VPN\n2) E-MAIL : fabiano.melo@tecnomulti.com\n3) TELEFONE : 81988187688\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nACESSO A VPN \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(980,'Ticket',80,4,2,1,0,'2025-02-04 18:37:10','2025-02-04 18:37:10','2025-02-08 01:42:02','[GLPI #0000080] Novo chamado VPN',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_80 \n\n Chamado: Descrição\n\n Título : VPN\n Requerentes :  tecnomulti  \n Data de abertura : 04-02-2025 15:37\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : VPN\n2) E-MAIL : fabiano.melo@tecnomulti.com\n3) TELEFONE : 81988187688\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nACESSO A VPN \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(981,'Ticket',80,4,2,0,1,'2025-02-04 18:37:10','2025-02-18 18:53:01',NULL,'[GLPI #0000080] Novo chamado VPN','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000080] Novo chamado VPN&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_80\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_80&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:VPN &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:04-02-2025 15:37 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;VPN&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;fabiano.melo@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81988187688&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;ACESSO A VPN &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_80 \n\n Chamado: Descrição\n\n Título : VPN\n Requerentes :  tecnomulti  \n Data de abertura : 04-02-2025 15:37\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : VPN\n2) E-MAIL : fabiano.melo@tecnomulti.com\n3) TELEFONE : 81988187688\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nACESSO A VPN \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-80/new@oswintech.ddns.net','','mailing','new'),
(982,'Ticket',80,4,2,0,1,'2025-02-04 18:37:10','2025-02-18 18:53:01',NULL,'[GLPI #0000080] Novo chamado VPN','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000080] Novo chamado VPN&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_80\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_80&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:VPN &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:04-02-2025 15:37 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;VPN&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;fabiano.melo@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81988187688&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;ACESSO A VPN &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_80 \n\n Chamado: Descrição\n\n Título : VPN\n Requerentes :  tecnomulti  \n Data de abertura : 04-02-2025 15:37\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : VPN\n2) E-MAIL : fabiano.melo@tecnomulti.com\n3) TELEFONE : 81988187688\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nACESSO A VPN \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-80/new@oswintech.ddns.net','','mailing','new'),
(983,'Ticket',80,4,2,0,1,'2025-02-04 18:37:10','2025-02-18 18:53:01',NULL,'[GLPI #0000080] Novo chamado VPN','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000080] Novo chamado VPN&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_80\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_80&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:VPN &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:04-02-2025 15:37 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;VPN&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;fabiano.melo@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81988187688&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;ACESSO A VPN &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_80 \n\n Chamado: Descrição\n\n Título : VPN\n Requerentes :  tecnomulti  \n Data de abertura : 04-02-2025 15:37\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : VPN\n2) E-MAIL : fabiano.melo@tecnomulti.com\n3) TELEFONE : 81988187688\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nACESSO A VPN \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-80/new@oswintech.ddns.net','','mailing','new'),
(984,'Ticket',80,4,2,0,0,'2025-02-04 18:37:10','2025-02-04 18:37:10',NULL,'[GLPI #0000080] Novo chamado VPN','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000080] Novo chamado VPN&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_80\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_80&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:VPN &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:04-02-2025 15:37 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;VPN&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;fabiano.melo@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81988187688&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;ACESSO A VPN &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_80 \n\n Chamado: Descrição\n\n Título : VPN\n Requerentes :  tecnomulti  \n Data de abertura : 04-02-2025 15:37\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : VPN\n2) E-MAIL : fabiano.melo@tecnomulti.com\n3) TELEFONE : 81988187688\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nACESSO A VPN \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-80/new@oswintech.ddns.net','','mailing','new'),
(985,'Ticket',80,4,2,1,0,'2025-02-04 18:41:05','2025-02-04 18:41:05','2025-02-11 12:00:47','[GLPI #0000080] Novo acompanhamento VPN',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_80 \n\n Chamado: Descrição\n\n Título : VPN\n Requerentes :  tecnomulti  \n Data de abertura : 04-02-2025 15:37\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - fabiano.melo@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : VPN\n2) E-MAIL : fabiano.melo@tecnomulti.com\n3) TELEFONE : 81988187688\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nACESSO A VPN \n \n\n\n[04-02-2025 15:41]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nIrei realizar o acesso para a configuração.\nData de abertura 04-02-2025 15:41\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(986,'Ticket',80,4,2,1,0,'2025-02-04 18:41:05','2025-02-04 18:41:05','2025-02-10 11:18:46','[GLPI #0000080] Novo acompanhamento VPN',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_80 \n\n Chamado: Descrição\n\n Título : VPN\n Requerentes :  tecnomulti  \n Data de abertura : 04-02-2025 15:37\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - fabiano.melo@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : VPN\n2) E-MAIL : fabiano.melo@tecnomulti.com\n3) TELEFONE : 81988187688\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nACESSO A VPN \n \n\n\n[04-02-2025 15:41]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nIrei realizar o acesso para a configuração.\nData de abertura 04-02-2025 15:41\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(987,'Ticket',80,4,2,0,0,'2025-02-04 18:41:05','2025-02-04 18:41:05',NULL,'[GLPI #0000080] Novo acompanhamento VPN',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_80 \n\n Chamado: Descrição\n\n Título : VPN\n Requerentes :  tecnomulti  \n Data de abertura : 04-02-2025 15:37\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - fabiano.melo@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : VPN\n2) E-MAIL : fabiano.melo@tecnomulti.com\n3) TELEFONE : 81988187688\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nACESSO A VPN \n \n\n\n[04-02-2025 15:41]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nIrei realizar o acesso para a configuração.\nData de abertura 04-02-2025 15:41\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(988,'Ticket',80,4,2,1,0,'2025-02-04 18:41:05','2025-02-04 18:41:05','2025-02-08 01:42:02','[GLPI #0000080] Novo acompanhamento VPN',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_80 \n\n Chamado: Descrição\n\n Título : VPN\n Requerentes :  tecnomulti  \n Data de abertura : 04-02-2025 15:37\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - fabiano.melo@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : VPN\n2) E-MAIL : fabiano.melo@tecnomulti.com\n3) TELEFONE : 81988187688\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nACESSO A VPN \n \n\n\n[04-02-2025 15:41]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nIrei realizar o acesso para a configuração.\nData de abertura 04-02-2025 15:41\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(989,'Ticket',80,4,2,0,0,'2025-02-04 18:41:05','2025-02-04 18:41:05',NULL,'[GLPI #0000080] Novo acompanhamento VPN','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000080] Novo acompanhamento VPN&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_80\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_80&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:VPN &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:04-02-2025 15:37 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- fabiano.melo@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;VPN&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;fabiano.melo@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81988187688&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;ACESSO A VPN &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [04-02-2025 15:41]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, &#60;/p&#62;\r\n&#60;p&#62;Irei realizar o acesso para a configuração.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;04-02-2025 15:41&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_80 \n\n Chamado: Descrição\n\n Título : VPN\n Requerentes :  tecnomulti  \n Data de abertura : 04-02-2025 15:37\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - fabiano.melo@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : VPN\n2) E-MAIL : fabiano.melo@tecnomulti.com\n3) TELEFONE : 81988187688\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nACESSO A VPN \n \n\n\n[04-02-2025 15:41]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nIrei realizar o acesso para a configuração.\nData de abertura 04-02-2025 15:41\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-80/add_followup.1738694465.1463140241@oswintech.ddns.net','','mailing','add_followup'),
(990,'Ticket',80,4,2,0,0,'2025-02-04 18:41:05','2025-02-04 18:41:05',NULL,'[GLPI #0000080] Novo acompanhamento VPN','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000080] Novo acompanhamento VPN&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_80\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_80&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:VPN &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:04-02-2025 15:37 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- fabiano.melo@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;VPN&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;fabiano.melo@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81988187688&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;ACESSO A VPN &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [04-02-2025 15:41]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, &#60;/p&#62;\r\n&#60;p&#62;Irei realizar o acesso para a configuração.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;04-02-2025 15:41&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_80 \n\n Chamado: Descrição\n\n Título : VPN\n Requerentes :  tecnomulti  \n Data de abertura : 04-02-2025 15:37\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - fabiano.melo@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : VPN\n2) E-MAIL : fabiano.melo@tecnomulti.com\n3) TELEFONE : 81988187688\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nACESSO A VPN \n \n\n\n[04-02-2025 15:41]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nIrei realizar o acesso para a configuração.\nData de abertura 04-02-2025 15:41\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-80/add_followup.1738694465.1443594226@oswintech.ddns.net','','mailing','add_followup'),
(991,'Ticket',80,4,2,0,0,'2025-02-04 18:41:05','2025-02-04 18:41:05',NULL,'[GLPI #0000080] Novo acompanhamento VPN','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000080] Novo acompanhamento VPN&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_80\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_80&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:VPN &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:04-02-2025 15:37 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- fabiano.melo@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;VPN&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;fabiano.melo@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81988187688&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;ACESSO A VPN &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [04-02-2025 15:41]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, &#60;/p&#62;\r\n&#60;p&#62;Irei realizar o acesso para a configuração.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;04-02-2025 15:41&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_80 \n\n Chamado: Descrição\n\n Título : VPN\n Requerentes :  tecnomulti  \n Data de abertura : 04-02-2025 15:37\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - fabiano.melo@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : VPN\n2) E-MAIL : fabiano.melo@tecnomulti.com\n3) TELEFONE : 81988187688\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nACESSO A VPN \n \n\n\n[04-02-2025 15:41]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nIrei realizar o acesso para a configuração.\nData de abertura 04-02-2025 15:41\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-80/add_followup.1738694465.199119259@oswintech.ddns.net','','mailing','add_followup'),
(992,'Ticket',80,4,2,0,0,'2025-02-04 18:41:05','2025-02-04 18:41:05',NULL,'[GLPI #0000080] Novo acompanhamento VPN','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000080] Novo acompanhamento VPN&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_80\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_80&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:VPN &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:04-02-2025 15:37 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- fabiano.melo@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;VPN&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;fabiano.melo@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81988187688&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;ACESSO A VPN &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [04-02-2025 15:41]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, &#60;/p&#62;\r\n&#60;p&#62;Irei realizar o acesso para a configuração.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;04-02-2025 15:41&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_80 \n\n Chamado: Descrição\n\n Título : VPN\n Requerentes :  tecnomulti  \n Data de abertura : 04-02-2025 15:37\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - fabiano.melo@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : VPN\n2) E-MAIL : fabiano.melo@tecnomulti.com\n3) TELEFONE : 81988187688\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nACESSO A VPN \n \n\n\n[04-02-2025 15:41]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nIrei realizar o acesso para a configuração.\nData de abertura 04-02-2025 15:41\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-80/add_followup.1738694465.657046418@oswintech.ddns.net','','mailing','add_followup'),
(993,'Ticket',80,4,2,1,0,'2025-02-04 18:41:11','2025-02-04 18:41:11','2025-02-11 12:00:47','[GLPI #0000080] Atualização de um chamado VPN',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_80 \n\n Chamado: Descrição\n\n Título : VPN\n Requerentes :  tecnomulti  \n Data de abertura : 04-02-2025 15:37\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - fabiano.melo@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : VPN\n2) E-MAIL : fabiano.melo@tecnomulti.com\n3) TELEFONE : 81988187688\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nACESSO A VPN \n \n\n\n[04-02-2025 15:41]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nIrei realizar o acesso para a configuração.\nData de abertura 04-02-2025 15:41\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','update'),
(994,'Ticket',80,4,2,0,0,'2025-02-04 18:41:11','2025-02-04 18:41:11',NULL,'[GLPI #0000080] Atualização de um chamado VPN','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000080] Atualiza&#38;ccedil;&#38;atilde;o de um chamado VPN&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_80\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_80&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:VPN &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:04-02-2025 15:37 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- fabiano.melo@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;VPN&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;fabiano.melo@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81988187688&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;ACESSO A VPN &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [04-02-2025 15:41]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, &#60;/p&#62;\r\n&#60;p&#62;Irei realizar o acesso para a configuração.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;04-02-2025 15:41&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_80 \n\n Chamado: Descrição\n\n Título : VPN\n Requerentes :  tecnomulti  \n Data de abertura : 04-02-2025 15:37\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - fabiano.melo@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : VPN\n2) E-MAIL : fabiano.melo@tecnomulti.com\n3) TELEFONE : 81988187688\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nACESSO A VPN \n \n\n\n[04-02-2025 15:41]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nIrei realizar o acesso para a configuração.\nData de abertura 04-02-2025 15:41\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-80/update.1738694471.1757284493@oswintech.ddns.net','','mailing','update'),
(995,'Ticket',80,4,2,0,0,'2025-02-04 18:41:11','2025-02-04 18:41:11',NULL,'[GLPI #0000080] Atualização de um chamado VPN','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000080] Atualiza&#38;ccedil;&#38;atilde;o de um chamado VPN&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_80\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_80&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:VPN &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:04-02-2025 15:37 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- fabiano.melo@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;VPN&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;fabiano.melo@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81988187688&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;ACESSO A VPN &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [04-02-2025 15:41]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, &#60;/p&#62;\r\n&#60;p&#62;Irei realizar o acesso para a configuração.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;04-02-2025 15:41&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_80 \n\n Chamado: Descrição\n\n Título : VPN\n Requerentes :  tecnomulti  \n Data de abertura : 04-02-2025 15:37\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - fabiano.melo@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : VPN\n2) E-MAIL : fabiano.melo@tecnomulti.com\n3) TELEFONE : 81988187688\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nACESSO A VPN \n \n\n\n[04-02-2025 15:41]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nIrei realizar o acesso para a configuração.\nData de abertura 04-02-2025 15:41\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-80/update.1738694471.1566945219@oswintech.ddns.net','','mailing','update'),
(996,'PluginFormcreatorFormAnswer',45,29,2,0,0,'2025-02-04 18:43:15','2025-02-04 18:43:15',NULL,'[GLPI] Sua requisição foi salva','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI] Sua requisi&#38;ccedil;&#38;atilde;o foi salva&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;p&#62;Olá,&#60;br /&#62;Sua requisição do GLPI foi salva com sucesso com o número 45 e transmitido para a equipe de helpdesk.&#60;br /&#62;Você pode ver suas respostas no seguinte link:&#60;br /&#62;https://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=45&#60;/p&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;','Olá,\nSua requisição do GLPI foi salva com sucesso com o número 45 e transmitido para a equipe de helpdesk.\nVocê pode ver suas respostas no seguinte link:\nhttps://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=45\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-PluginFormcreatorFormAnswer-45/plugin_formcreator_form_created.1738694595.1432419241@oswintech.ddns.net','','mailing','plugin_formcreator_form_created'),
(997,'Ticket',81,4,2,1,0,'2025-02-04 18:43:15','2025-02-04 18:43:15','2025-02-11 12:00:47','[GLPI #0000081] Novo chamado INSTALAÇÃO VPN TECNOMULTI',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_81 \n\n Chamado: Descrição\n\n Título : INSTALAÇÃO VPN TECNOMULTI\n Requerentes :  tecnomulti  \n Data de abertura : 04-02-2025 15:43\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : INSTALAÇÃO VPN TECNOMULTI\n2) E-MAIL : danielle.silva@tecnomulti.com\n3) TELEFONE : 81 99293-6741\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nInstalação da VPN Tecnomulti. \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(998,'Ticket',81,4,2,1,0,'2025-02-04 18:43:15','2025-02-04 18:43:15','2025-02-10 11:18:46','[GLPI #0000081] Novo chamado INSTALAÇÃO VPN TECNOMULTI',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_81 \n\n Chamado: Descrição\n\n Título : INSTALAÇÃO VPN TECNOMULTI\n Requerentes :  tecnomulti  \n Data de abertura : 04-02-2025 15:43\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : INSTALAÇÃO VPN TECNOMULTI\n2) E-MAIL : danielle.silva@tecnomulti.com\n3) TELEFONE : 81 99293-6741\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nInstalação da VPN Tecnomulti. \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(999,'Ticket',81,4,2,0,0,'2025-02-04 18:43:15','2025-02-04 18:43:15',NULL,'[GLPI #0000081] Novo chamado INSTALAÇÃO VPN TECNOMULTI',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_81 \n\n Chamado: Descrição\n\n Título : INSTALAÇÃO VPN TECNOMULTI\n Requerentes :  tecnomulti  \n Data de abertura : 04-02-2025 15:43\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : INSTALAÇÃO VPN TECNOMULTI\n2) E-MAIL : danielle.silva@tecnomulti.com\n3) TELEFONE : 81 99293-6741\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nInstalação da VPN Tecnomulti. \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(1000,'Ticket',81,4,2,1,0,'2025-02-04 18:43:15','2025-02-04 18:43:15','2025-02-08 01:42:02','[GLPI #0000081] Novo chamado INSTALAÇÃO VPN TECNOMULTI',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_81 \n\n Chamado: Descrição\n\n Título : INSTALAÇÃO VPN TECNOMULTI\n Requerentes :  tecnomulti  \n Data de abertura : 04-02-2025 15:43\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : INSTALAÇÃO VPN TECNOMULTI\n2) E-MAIL : danielle.silva@tecnomulti.com\n3) TELEFONE : 81 99293-6741\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nInstalação da VPN Tecnomulti. \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(1001,'Ticket',81,4,2,0,0,'2025-02-04 18:43:15','2025-02-04 18:43:15',NULL,'[GLPI #0000081] Novo chamado INSTALAÇÃO VPN TECNOMULTI','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000081] Novo chamado INSTALA&#38;Ccedil;&#38;Atilde;O VPN TECNOMULTI&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_81\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_81&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:INSTALA&#38;Ccedil;&#38;Atilde;O VPN TECNOMULTI &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:04-02-2025 15:43 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;INSTALAÇÃO VPN TECNOMULTI&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;danielle.silva@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 99293-6741&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Instalação da VPN Tecnomulti. &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_81 \n\n Chamado: Descrição\n\n Título : INSTALAÇÃO VPN TECNOMULTI\n Requerentes :  tecnomulti  \n Data de abertura : 04-02-2025 15:43\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : INSTALAÇÃO VPN TECNOMULTI\n2) E-MAIL : danielle.silva@tecnomulti.com\n3) TELEFONE : 81 99293-6741\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nInstalação da VPN Tecnomulti. \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-81/new@oswintech.ddns.net','','mailing','new'),
(1002,'Ticket',81,4,2,0,0,'2025-02-04 18:43:15','2025-02-04 18:43:15',NULL,'[GLPI #0000081] Novo chamado INSTALAÇÃO VPN TECNOMULTI','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000081] Novo chamado INSTALA&#38;Ccedil;&#38;Atilde;O VPN TECNOMULTI&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_81\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_81&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:INSTALA&#38;Ccedil;&#38;Atilde;O VPN TECNOMULTI &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:04-02-2025 15:43 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;INSTALAÇÃO VPN TECNOMULTI&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;danielle.silva@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 99293-6741&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Instalação da VPN Tecnomulti. &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_81 \n\n Chamado: Descrição\n\n Título : INSTALAÇÃO VPN TECNOMULTI\n Requerentes :  tecnomulti  \n Data de abertura : 04-02-2025 15:43\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : INSTALAÇÃO VPN TECNOMULTI\n2) E-MAIL : danielle.silva@tecnomulti.com\n3) TELEFONE : 81 99293-6741\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nInstalação da VPN Tecnomulti. \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-81/new@oswintech.ddns.net','','mailing','new'),
(1003,'Ticket',81,4,2,0,0,'2025-02-04 18:43:15','2025-02-04 18:43:15',NULL,'[GLPI #0000081] Novo chamado INSTALAÇÃO VPN TECNOMULTI','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000081] Novo chamado INSTALA&#38;Ccedil;&#38;Atilde;O VPN TECNOMULTI&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_81\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_81&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:INSTALA&#38;Ccedil;&#38;Atilde;O VPN TECNOMULTI &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:04-02-2025 15:43 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;INSTALAÇÃO VPN TECNOMULTI&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;danielle.silva@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 99293-6741&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Instalação da VPN Tecnomulti. &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_81 \n\n Chamado: Descrição\n\n Título : INSTALAÇÃO VPN TECNOMULTI\n Requerentes :  tecnomulti  \n Data de abertura : 04-02-2025 15:43\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : INSTALAÇÃO VPN TECNOMULTI\n2) E-MAIL : danielle.silva@tecnomulti.com\n3) TELEFONE : 81 99293-6741\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nInstalação da VPN Tecnomulti. \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-81/new@oswintech.ddns.net','','mailing','new'),
(1004,'Ticket',81,4,2,0,0,'2025-02-04 18:43:15','2025-02-04 18:43:15',NULL,'[GLPI #0000081] Novo chamado INSTALAÇÃO VPN TECNOMULTI','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000081] Novo chamado INSTALA&#38;Ccedil;&#38;Atilde;O VPN TECNOMULTI&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_81\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_81&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:INSTALA&#38;Ccedil;&#38;Atilde;O VPN TECNOMULTI &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:04-02-2025 15:43 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;INSTALAÇÃO VPN TECNOMULTI&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;danielle.silva@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 99293-6741&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Instalação da VPN Tecnomulti. &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_81 \n\n Chamado: Descrição\n\n Título : INSTALAÇÃO VPN TECNOMULTI\n Requerentes :  tecnomulti  \n Data de abertura : 04-02-2025 15:43\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : INSTALAÇÃO VPN TECNOMULTI\n2) E-MAIL : danielle.silva@tecnomulti.com\n3) TELEFONE : 81 99293-6741\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nInstalação da VPN Tecnomulti. \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-81/new@oswintech.ddns.net','','mailing','new'),
(1005,'Ticket',80,4,2,1,0,'2025-02-04 19:15:51','2025-02-04 19:15:51','2025-02-11 12:00:47','[GLPI #0000080] Novo acompanhamento VPN',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_80 \n\n Chamado: Descrição\n\n Título : VPN\n Requerentes :  tecnomulti  \n Data de abertura : 04-02-2025 15:37\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - fabiano.melo@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : VPN\n2) E-MAIL : fabiano.melo@tecnomulti.com\n3) TELEFONE : 81988187688\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nACESSO A VPN \n \n\n\n[04-02-2025 16:15]\nAutor Alexsandro Cruz\nDescrição Foi realizado a configuração da VPN WIRE GUARD, a vpn tradicional do windows não conectou. Ficou combinado de ser testado em outra rede sem ser a da casa de Fabiano.\nData de abertura 04-02-2025 16:15\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[04-02-2025 15:41]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nIrei realizar o acesso para a configuração.\nData de abertura 04-02-2025 15:41\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1006,'Ticket',80,4,2,1,0,'2025-02-04 19:15:51','2025-02-04 19:15:51','2025-02-10 11:18:46','[GLPI #0000080] Novo acompanhamento VPN',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_80 \n\n Chamado: Descrição\n\n Título : VPN\n Requerentes :  tecnomulti  \n Data de abertura : 04-02-2025 15:37\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - fabiano.melo@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : VPN\n2) E-MAIL : fabiano.melo@tecnomulti.com\n3) TELEFONE : 81988187688\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nACESSO A VPN \n \n\n\n[04-02-2025 16:15]\nAutor Alexsandro Cruz\nDescrição Foi realizado a configuração da VPN WIRE GUARD, a vpn tradicional do windows não conectou. Ficou combinado de ser testado em outra rede sem ser a da casa de Fabiano.\nData de abertura 04-02-2025 16:15\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[04-02-2025 15:41]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nIrei realizar o acesso para a configuração.\nData de abertura 04-02-2025 15:41\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1007,'Ticket',80,4,2,0,0,'2025-02-04 19:15:51','2025-02-04 19:15:51',NULL,'[GLPI #0000080] Novo acompanhamento VPN',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_80 \n\n Chamado: Descrição\n\n Título : VPN\n Requerentes :  tecnomulti  \n Data de abertura : 04-02-2025 15:37\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - fabiano.melo@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : VPN\n2) E-MAIL : fabiano.melo@tecnomulti.com\n3) TELEFONE : 81988187688\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nACESSO A VPN \n \n\n\n[04-02-2025 16:15]\nAutor Alexsandro Cruz\nDescrição Foi realizado a configuração da VPN WIRE GUARD, a vpn tradicional do windows não conectou. Ficou combinado de ser testado em outra rede sem ser a da casa de Fabiano.\nData de abertura 04-02-2025 16:15\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[04-02-2025 15:41]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nIrei realizar o acesso para a configuração.\nData de abertura 04-02-2025 15:41\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1008,'Ticket',80,4,2,1,0,'2025-02-04 19:15:51','2025-02-04 19:15:51','2025-02-08 01:42:02','[GLPI #0000080] Novo acompanhamento VPN',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_80 \n\n Chamado: Descrição\n\n Título : VPN\n Requerentes :  tecnomulti  \n Data de abertura : 04-02-2025 15:37\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - fabiano.melo@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : VPN\n2) E-MAIL : fabiano.melo@tecnomulti.com\n3) TELEFONE : 81988187688\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nACESSO A VPN \n \n\n\n[04-02-2025 16:15]\nAutor Alexsandro Cruz\nDescrição Foi realizado a configuração da VPN WIRE GUARD, a vpn tradicional do windows não conectou. Ficou combinado de ser testado em outra rede sem ser a da casa de Fabiano.\nData de abertura 04-02-2025 16:15\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[04-02-2025 15:41]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nIrei realizar o acesso para a configuração.\nData de abertura 04-02-2025 15:41\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1009,'Ticket',80,4,2,0,0,'2025-02-04 19:15:51','2025-02-04 19:15:51',NULL,'[GLPI #0000080] Novo acompanhamento VPN','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000080] Novo acompanhamento VPN&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_80\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_80&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:VPN &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:04-02-2025 15:37 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- fabiano.melo@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;VPN&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;fabiano.melo@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81988187688&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;ACESSO A VPN &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [04-02-2025 16:15]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Foi realizado a configuração da VPN WIRE GUARD, a vpn tradicional do windows não conectou. Ficou combinado de ser testado em outra rede sem ser a da casa de Fabiano.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;04-02-2025 16:15&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [04-02-2025 15:41]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, &#60;/p&#62;\r\n&#60;p&#62;Irei realizar o acesso para a configuração.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;04-02-2025 15:41&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_80 \n\n Chamado: Descrição\n\n Título : VPN\n Requerentes :  tecnomulti  \n Data de abertura : 04-02-2025 15:37\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - fabiano.melo@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : VPN\n2) E-MAIL : fabiano.melo@tecnomulti.com\n3) TELEFONE : 81988187688\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nACESSO A VPN \n \n\n\n[04-02-2025 16:15]\nAutor Alexsandro Cruz\nDescrição Foi realizado a configuração da VPN WIRE GUARD, a vpn tradicional do windows não conectou. Ficou combinado de ser testado em outra rede sem ser a da casa de Fabiano.\nData de abertura 04-02-2025 16:15\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[04-02-2025 15:41]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nIrei realizar o acesso para a configuração.\nData de abertura 04-02-2025 15:41\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-80/add_followup.1738696551.182294120@oswintech.ddns.net','','mailing','add_followup'),
(1010,'Ticket',80,4,2,0,0,'2025-02-04 19:15:51','2025-02-04 19:15:51',NULL,'[GLPI #0000080] Novo acompanhamento VPN','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000080] Novo acompanhamento VPN&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_80\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_80&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:VPN &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:04-02-2025 15:37 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- fabiano.melo@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;VPN&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;fabiano.melo@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81988187688&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;ACESSO A VPN &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [04-02-2025 16:15]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Foi realizado a configuração da VPN WIRE GUARD, a vpn tradicional do windows não conectou. Ficou combinado de ser testado em outra rede sem ser a da casa de Fabiano.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;04-02-2025 16:15&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [04-02-2025 15:41]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, &#60;/p&#62;\r\n&#60;p&#62;Irei realizar o acesso para a configuração.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;04-02-2025 15:41&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_80 \n\n Chamado: Descrição\n\n Título : VPN\n Requerentes :  tecnomulti  \n Data de abertura : 04-02-2025 15:37\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - fabiano.melo@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : VPN\n2) E-MAIL : fabiano.melo@tecnomulti.com\n3) TELEFONE : 81988187688\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nACESSO A VPN \n \n\n\n[04-02-2025 16:15]\nAutor Alexsandro Cruz\nDescrição Foi realizado a configuração da VPN WIRE GUARD, a vpn tradicional do windows não conectou. Ficou combinado de ser testado em outra rede sem ser a da casa de Fabiano.\nData de abertura 04-02-2025 16:15\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[04-02-2025 15:41]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nIrei realizar o acesso para a configuração.\nData de abertura 04-02-2025 15:41\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-80/add_followup.1738696552.1337038622@oswintech.ddns.net','','mailing','add_followup'),
(1011,'Ticket',80,4,2,0,0,'2025-02-04 19:15:51','2025-02-04 19:15:51',NULL,'[GLPI #0000080] Novo acompanhamento VPN','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000080] Novo acompanhamento VPN&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_80\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_80&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:VPN &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:04-02-2025 15:37 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- fabiano.melo@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;VPN&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;fabiano.melo@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81988187688&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;ACESSO A VPN &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [04-02-2025 16:15]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Foi realizado a configuração da VPN WIRE GUARD, a vpn tradicional do windows não conectou. Ficou combinado de ser testado em outra rede sem ser a da casa de Fabiano.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;04-02-2025 16:15&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [04-02-2025 15:41]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, &#60;/p&#62;\r\n&#60;p&#62;Irei realizar o acesso para a configuração.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;04-02-2025 15:41&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_80 \n\n Chamado: Descrição\n\n Título : VPN\n Requerentes :  tecnomulti  \n Data de abertura : 04-02-2025 15:37\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - fabiano.melo@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : VPN\n2) E-MAIL : fabiano.melo@tecnomulti.com\n3) TELEFONE : 81988187688\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nACESSO A VPN \n \n\n\n[04-02-2025 16:15]\nAutor Alexsandro Cruz\nDescrição Foi realizado a configuração da VPN WIRE GUARD, a vpn tradicional do windows não conectou. Ficou combinado de ser testado em outra rede sem ser a da casa de Fabiano.\nData de abertura 04-02-2025 16:15\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[04-02-2025 15:41]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nIrei realizar o acesso para a configuração.\nData de abertura 04-02-2025 15:41\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-80/add_followup.1738696552.529188411@oswintech.ddns.net','','mailing','add_followup'),
(1012,'Ticket',80,4,2,0,0,'2025-02-04 19:15:51','2025-02-04 19:15:51',NULL,'[GLPI #0000080] Novo acompanhamento VPN','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000080] Novo acompanhamento VPN&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_80\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_80&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:VPN &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:04-02-2025 15:37 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- fabiano.melo@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;VPN&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;fabiano.melo@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81988187688&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;ACESSO A VPN &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [04-02-2025 16:15]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Foi realizado a configuração da VPN WIRE GUARD, a vpn tradicional do windows não conectou. Ficou combinado de ser testado em outra rede sem ser a da casa de Fabiano.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;04-02-2025 16:15&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [04-02-2025 15:41]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, &#60;/p&#62;\r\n&#60;p&#62;Irei realizar o acesso para a configuração.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;04-02-2025 15:41&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_80 \n\n Chamado: Descrição\n\n Título : VPN\n Requerentes :  tecnomulti  \n Data de abertura : 04-02-2025 15:37\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - fabiano.melo@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : VPN\n2) E-MAIL : fabiano.melo@tecnomulti.com\n3) TELEFONE : 81988187688\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nACESSO A VPN \n \n\n\n[04-02-2025 16:15]\nAutor Alexsandro Cruz\nDescrição Foi realizado a configuração da VPN WIRE GUARD, a vpn tradicional do windows não conectou. Ficou combinado de ser testado em outra rede sem ser a da casa de Fabiano.\nData de abertura 04-02-2025 16:15\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[04-02-2025 15:41]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nIrei realizar o acesso para a configuração.\nData de abertura 04-02-2025 15:41\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-80/add_followup.1738696552.147388156@oswintech.ddns.net','','mailing','add_followup'),
(1013,'Ticket',80,4,2,0,0,'2025-02-04 19:15:58','2025-02-04 19:15:58',NULL,'[GLPI #0000080] Chamado solucionado VPN','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000080] Chamado solucionado VPN&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62;URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_80_Ticket%241\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_80_Ticket%241&#60;/a&#62; &#60;strong&#62;&#38;#160;&#60;/strong&#62;&#60;/div&#62;\n&#60;div&#62;&#60;strong&#62;&#60;/strong&#62;&#60;/div&#62;\n&#60;div&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 04-02-2025 16:15&#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; :  &#60;/div&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:VPN &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:04-02-2025 15:37 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- fabiano.melo@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Solucionado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;VPN&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;fabiano.melo@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81988187688&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;ACESSO A VPN &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [04-02-2025 16:15]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Foi realizado a configuração da VPN WIRE GUARD, a vpn tradicional do windows não conectou. Ficou combinado de ser testado em outra rede sem ser a da casa de Fabiano.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;04-02-2025 16:15&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [04-02-2025 15:41]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, &#60;/p&#62;\r\n&#60;p&#62;Irei realizar o acesso para a configuração.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;04-02-2025 15:41&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n URL : https://oswintech.ddns.net/index.php?redirect=ticket_80_Ticket%241\n \n Data da solução : 04-02-2025 16:15\n Tipo de solução : \n Solução :  \n \n\n Chamado: Descrição\n\n Título : VPN\n Requerentes :  tecnomulti  \n Data de abertura : 04-02-2025 15:37\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - fabiano.melo@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Solucionado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : VPN\n2) E-MAIL : fabiano.melo@tecnomulti.com\n3) TELEFONE : 81988187688\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nACESSO A VPN \n \n\n\n[04-02-2025 16:15]\nAutor Alexsandro Cruz\nDescrição Foi realizado a configuração da VPN WIRE GUARD, a vpn tradicional do windows não conectou. Ficou combinado de ser testado em outra rede sem ser a da casa de Fabiano.\nData de abertura 04-02-2025 16:15\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[04-02-2025 15:41]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nIrei realizar o acesso para a configuração.\nData de abertura 04-02-2025 15:41\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-80/solved.1738696558.789755904@oswintech.ddns.net','','mailing','solved'),
(1014,'Ticket',80,4,2,0,0,'2025-02-04 19:15:58','2025-02-04 19:15:58',NULL,'[GLPI #0000080] Chamado solucionado VPN','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000080] Chamado solucionado VPN&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62;URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_80_Ticket%241\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_80_Ticket%241&#60;/a&#62; &#60;strong&#62;&#38;#160;&#60;/strong&#62;&#60;/div&#62;\n&#60;div&#62;&#60;strong&#62;&#60;/strong&#62;&#60;/div&#62;\n&#60;div&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 04-02-2025 16:15&#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; :  &#60;/div&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:VPN &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:04-02-2025 15:37 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- fabiano.melo@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Solucionado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;VPN&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;fabiano.melo@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81988187688&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;ACESSO A VPN &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [04-02-2025 16:15]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Foi realizado a configuração da VPN WIRE GUARD, a vpn tradicional do windows não conectou. Ficou combinado de ser testado em outra rede sem ser a da casa de Fabiano.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;04-02-2025 16:15&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [04-02-2025 15:41]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, &#60;/p&#62;\r\n&#60;p&#62;Irei realizar o acesso para a configuração.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;04-02-2025 15:41&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n URL : https://oswintech.ddns.net/index.php?redirect=ticket_80_Ticket%241\n \n Data da solução : 04-02-2025 16:15\n Tipo de solução : \n Solução :  \n \n\n Chamado: Descrição\n\n Título : VPN\n Requerentes :  tecnomulti  \n Data de abertura : 04-02-2025 15:37\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - fabiano.melo@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Solucionado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : VPN\n2) E-MAIL : fabiano.melo@tecnomulti.com\n3) TELEFONE : 81988187688\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nACESSO A VPN \n \n\n\n[04-02-2025 16:15]\nAutor Alexsandro Cruz\nDescrição Foi realizado a configuração da VPN WIRE GUARD, a vpn tradicional do windows não conectou. Ficou combinado de ser testado em outra rede sem ser a da casa de Fabiano.\nData de abertura 04-02-2025 16:15\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[04-02-2025 15:41]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nIrei realizar o acesso para a configuração.\nData de abertura 04-02-2025 15:41\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-80/solved.1738696558.1244890045@oswintech.ddns.net','','mailing','solved'),
(1015,'Ticket',81,4,2,1,0,'2025-02-04 19:16:38','2025-02-04 19:16:38','2025-02-11 12:00:47','[GLPI #0000081] Novo acompanhamento INSTALAÇÃO VPN TECNOMULTI',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_81 \n\n Chamado: Descrição\n\n Título : INSTALAÇÃO VPN TECNOMULTI\n Requerentes :  tecnomulti  \n Data de abertura : 04-02-2025 15:43\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - danielle.silva@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : INSTALAÇÃO VPN TECNOMULTI\n2) E-MAIL : danielle.silva@tecnomulti.com\n3) TELEFONE : 81 99293-6741\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nInstalação da VPN Tecnomulti. \n \n\n\n[04-02-2025 16:16]\nAutor Alexsandro Cruz\nDescrição Boa tarde, Dani.\n\nEssa configuração seria a de Fabiano?\nData de abertura 04-02-2025 16:16\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1016,'Ticket',81,4,2,1,0,'2025-02-04 19:16:38','2025-02-04 19:16:38','2025-02-10 11:18:46','[GLPI #0000081] Novo acompanhamento INSTALAÇÃO VPN TECNOMULTI',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_81 \n\n Chamado: Descrição\n\n Título : INSTALAÇÃO VPN TECNOMULTI\n Requerentes :  tecnomulti  \n Data de abertura : 04-02-2025 15:43\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - danielle.silva@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : INSTALAÇÃO VPN TECNOMULTI\n2) E-MAIL : danielle.silva@tecnomulti.com\n3) TELEFONE : 81 99293-6741\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nInstalação da VPN Tecnomulti. \n \n\n\n[04-02-2025 16:16]\nAutor Alexsandro Cruz\nDescrição Boa tarde, Dani.\n\nEssa configuração seria a de Fabiano?\nData de abertura 04-02-2025 16:16\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1017,'Ticket',81,4,2,0,0,'2025-02-04 19:16:38','2025-02-04 19:16:38',NULL,'[GLPI #0000081] Novo acompanhamento INSTALAÇÃO VPN TECNOMULTI',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_81 \n\n Chamado: Descrição\n\n Título : INSTALAÇÃO VPN TECNOMULTI\n Requerentes :  tecnomulti  \n Data de abertura : 04-02-2025 15:43\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - danielle.silva@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : INSTALAÇÃO VPN TECNOMULTI\n2) E-MAIL : danielle.silva@tecnomulti.com\n3) TELEFONE : 81 99293-6741\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nInstalação da VPN Tecnomulti. \n \n\n\n[04-02-2025 16:16]\nAutor Alexsandro Cruz\nDescrição Boa tarde, Dani.\n\nEssa configuração seria a de Fabiano?\nData de abertura 04-02-2025 16:16\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1018,'Ticket',81,4,2,1,0,'2025-02-04 19:16:38','2025-02-04 19:16:38','2025-02-08 01:42:02','[GLPI #0000081] Novo acompanhamento INSTALAÇÃO VPN TECNOMULTI',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_81 \n\n Chamado: Descrição\n\n Título : INSTALAÇÃO VPN TECNOMULTI\n Requerentes :  tecnomulti  \n Data de abertura : 04-02-2025 15:43\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - danielle.silva@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : INSTALAÇÃO VPN TECNOMULTI\n2) E-MAIL : danielle.silva@tecnomulti.com\n3) TELEFONE : 81 99293-6741\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nInstalação da VPN Tecnomulti. \n \n\n\n[04-02-2025 16:16]\nAutor Alexsandro Cruz\nDescrição Boa tarde, Dani.\n\nEssa configuração seria a de Fabiano?\nData de abertura 04-02-2025 16:16\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1019,'Ticket',81,4,2,0,0,'2025-02-04 19:16:38','2025-02-04 19:16:38',NULL,'[GLPI #0000081] Novo acompanhamento INSTALAÇÃO VPN TECNOMULTI','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000081] Novo acompanhamento INSTALA&#38;Ccedil;&#38;Atilde;O VPN TECNOMULTI&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_81\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_81&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:INSTALA&#38;Ccedil;&#38;Atilde;O VPN TECNOMULTI &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:04-02-2025 15:43 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- danielle.silva@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;INSTALAÇÃO VPN TECNOMULTI&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;danielle.silva@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 99293-6741&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Instalação da VPN Tecnomulti. &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [04-02-2025 16:16]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, Dani.&#60;/p&#62;\r\n&#60;p&#62;Essa configuração seria a de Fabiano?&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;04-02-2025 16:16&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_81 \n\n Chamado: Descrição\n\n Título : INSTALAÇÃO VPN TECNOMULTI\n Requerentes :  tecnomulti  \n Data de abertura : 04-02-2025 15:43\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - danielle.silva@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : INSTALAÇÃO VPN TECNOMULTI\n2) E-MAIL : danielle.silva@tecnomulti.com\n3) TELEFONE : 81 99293-6741\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nInstalação da VPN Tecnomulti. \n \n\n\n[04-02-2025 16:16]\nAutor Alexsandro Cruz\nDescrição Boa tarde, Dani.\n\nEssa configuração seria a de Fabiano?\nData de abertura 04-02-2025 16:16\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-81/add_followup.1738696598.56823218@oswintech.ddns.net','','mailing','add_followup'),
(1020,'Ticket',81,4,2,0,0,'2025-02-04 19:16:38','2025-02-04 19:16:38',NULL,'[GLPI #0000081] Novo acompanhamento INSTALAÇÃO VPN TECNOMULTI','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000081] Novo acompanhamento INSTALA&#38;Ccedil;&#38;Atilde;O VPN TECNOMULTI&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_81\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_81&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:INSTALA&#38;Ccedil;&#38;Atilde;O VPN TECNOMULTI &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:04-02-2025 15:43 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- danielle.silva@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;INSTALAÇÃO VPN TECNOMULTI&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;danielle.silva@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 99293-6741&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Instalação da VPN Tecnomulti. &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [04-02-2025 16:16]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, Dani.&#60;/p&#62;\r\n&#60;p&#62;Essa configuração seria a de Fabiano?&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;04-02-2025 16:16&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_81 \n\n Chamado: Descrição\n\n Título : INSTALAÇÃO VPN TECNOMULTI\n Requerentes :  tecnomulti  \n Data de abertura : 04-02-2025 15:43\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - danielle.silva@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : INSTALAÇÃO VPN TECNOMULTI\n2) E-MAIL : danielle.silva@tecnomulti.com\n3) TELEFONE : 81 99293-6741\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nInstalação da VPN Tecnomulti. \n \n\n\n[04-02-2025 16:16]\nAutor Alexsandro Cruz\nDescrição Boa tarde, Dani.\n\nEssa configuração seria a de Fabiano?\nData de abertura 04-02-2025 16:16\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-81/add_followup.1738696598.1072020049@oswintech.ddns.net','','mailing','add_followup'),
(1021,'Ticket',81,4,2,0,0,'2025-02-04 19:16:38','2025-02-04 19:16:38',NULL,'[GLPI #0000081] Novo acompanhamento INSTALAÇÃO VPN TECNOMULTI','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000081] Novo acompanhamento INSTALA&#38;Ccedil;&#38;Atilde;O VPN TECNOMULTI&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_81\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_81&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:INSTALA&#38;Ccedil;&#38;Atilde;O VPN TECNOMULTI &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:04-02-2025 15:43 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- danielle.silva@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;INSTALAÇÃO VPN TECNOMULTI&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;danielle.silva@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 99293-6741&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Instalação da VPN Tecnomulti. &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [04-02-2025 16:16]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, Dani.&#60;/p&#62;\r\n&#60;p&#62;Essa configuração seria a de Fabiano?&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;04-02-2025 16:16&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_81 \n\n Chamado: Descrição\n\n Título : INSTALAÇÃO VPN TECNOMULTI\n Requerentes :  tecnomulti  \n Data de abertura : 04-02-2025 15:43\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - danielle.silva@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : INSTALAÇÃO VPN TECNOMULTI\n2) E-MAIL : danielle.silva@tecnomulti.com\n3) TELEFONE : 81 99293-6741\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nInstalação da VPN Tecnomulti. \n \n\n\n[04-02-2025 16:16]\nAutor Alexsandro Cruz\nDescrição Boa tarde, Dani.\n\nEssa configuração seria a de Fabiano?\nData de abertura 04-02-2025 16:16\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-81/add_followup.1738696598.1544883282@oswintech.ddns.net','','mailing','add_followup'),
(1022,'Ticket',81,4,2,0,0,'2025-02-04 19:16:38','2025-02-04 19:16:38',NULL,'[GLPI #0000081] Novo acompanhamento INSTALAÇÃO VPN TECNOMULTI','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000081] Novo acompanhamento INSTALA&#38;Ccedil;&#38;Atilde;O VPN TECNOMULTI&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_81\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_81&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:INSTALA&#38;Ccedil;&#38;Atilde;O VPN TECNOMULTI &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:04-02-2025 15:43 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- danielle.silva@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;INSTALAÇÃO VPN TECNOMULTI&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;danielle.silva@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 99293-6741&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Instalação da VPN Tecnomulti. &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [04-02-2025 16:16]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, Dani.&#60;/p&#62;\r\n&#60;p&#62;Essa configuração seria a de Fabiano?&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;04-02-2025 16:16&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_81 \n\n Chamado: Descrição\n\n Título : INSTALAÇÃO VPN TECNOMULTI\n Requerentes :  tecnomulti  \n Data de abertura : 04-02-2025 15:43\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - danielle.silva@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : INSTALAÇÃO VPN TECNOMULTI\n2) E-MAIL : danielle.silva@tecnomulti.com\n3) TELEFONE : 81 99293-6741\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nInstalação da VPN Tecnomulti. \n \n\n\n[04-02-2025 16:16]\nAutor Alexsandro Cruz\nDescrição Boa tarde, Dani.\n\nEssa configuração seria a de Fabiano?\nData de abertura 04-02-2025 16:16\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-81/add_followup.1738696598.263283696@oswintech.ddns.net','','mailing','add_followup'),
(1023,'Ticket',81,4,2,1,0,'2025-02-04 19:16:42','2025-02-04 19:16:42','2025-02-11 12:00:47','[GLPI #0000081] Atualização de um chamado INSTALAÇÃO VPN TECNOMULTI',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_81 \n\n Chamado: Descrição\n\n Título : INSTALAÇÃO VPN TECNOMULTI\n Requerentes :  tecnomulti  \n Data de abertura : 04-02-2025 15:43\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - danielle.silva@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : INSTALAÇÃO VPN TECNOMULTI\n2) E-MAIL : danielle.silva@tecnomulti.com\n3) TELEFONE : 81 99293-6741\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nInstalação da VPN Tecnomulti. \n \n\n\n[04-02-2025 16:16]\nAutor Alexsandro Cruz\nDescrição Boa tarde, Dani.\n\nEssa configuração seria a de Fabiano?\nData de abertura 04-02-2025 16:16\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','update'),
(1024,'Ticket',81,4,2,0,0,'2025-02-04 19:16:42','2025-02-04 19:16:42',NULL,'[GLPI #0000081] Atualização de um chamado INSTALAÇÃO VPN TECNOMULTI','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000081] Atualiza&#38;ccedil;&#38;atilde;o de um chamado INSTALA&#38;Ccedil;&#38;Atilde;O VPN TECNOMULTI&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_81\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_81&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:INSTALA&#38;Ccedil;&#38;Atilde;O VPN TECNOMULTI &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:04-02-2025 15:43 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- danielle.silva@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;INSTALAÇÃO VPN TECNOMULTI&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;danielle.silva@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 99293-6741&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Instalação da VPN Tecnomulti. &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [04-02-2025 16:16]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, Dani.&#60;/p&#62;\r\n&#60;p&#62;Essa configuração seria a de Fabiano?&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;04-02-2025 16:16&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_81 \n\n Chamado: Descrição\n\n Título : INSTALAÇÃO VPN TECNOMULTI\n Requerentes :  tecnomulti  \n Data de abertura : 04-02-2025 15:43\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - danielle.silva@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : INSTALAÇÃO VPN TECNOMULTI\n2) E-MAIL : danielle.silva@tecnomulti.com\n3) TELEFONE : 81 99293-6741\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nInstalação da VPN Tecnomulti. \n \n\n\n[04-02-2025 16:16]\nAutor Alexsandro Cruz\nDescrição Boa tarde, Dani.\n\nEssa configuração seria a de Fabiano?\nData de abertura 04-02-2025 16:16\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-81/update.1738696602.944497862@oswintech.ddns.net','','mailing','update'),
(1025,'Ticket',81,4,2,0,0,'2025-02-04 19:16:42','2025-02-04 19:16:42',NULL,'[GLPI #0000081] Atualização de um chamado INSTALAÇÃO VPN TECNOMULTI','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000081] Atualiza&#38;ccedil;&#38;atilde;o de um chamado INSTALA&#38;Ccedil;&#38;Atilde;O VPN TECNOMULTI&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_81\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_81&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:INSTALA&#38;Ccedil;&#38;Atilde;O VPN TECNOMULTI &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:04-02-2025 15:43 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- danielle.silva@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;INSTALAÇÃO VPN TECNOMULTI&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;danielle.silva@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 99293-6741&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Instalação da VPN Tecnomulti. &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [04-02-2025 16:16]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, Dani.&#60;/p&#62;\r\n&#60;p&#62;Essa configuração seria a de Fabiano?&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;04-02-2025 16:16&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_81 \n\n Chamado: Descrição\n\n Título : INSTALAÇÃO VPN TECNOMULTI\n Requerentes :  tecnomulti  \n Data de abertura : 04-02-2025 15:43\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - danielle.silva@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : INSTALAÇÃO VPN TECNOMULTI\n2) E-MAIL : danielle.silva@tecnomulti.com\n3) TELEFONE : 81 99293-6741\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nInstalação da VPN Tecnomulti. \n \n\n\n[04-02-2025 16:16]\nAutor Alexsandro Cruz\nDescrição Boa tarde, Dani.\n\nEssa configuração seria a de Fabiano?\nData de abertura 04-02-2025 16:16\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-81/update.1738696602.368327361@oswintech.ddns.net','','mailing','update'),
(1026,'Ticket',81,4,2,1,0,'2025-02-06 14:39:43','2025-02-06 14:39:43','2025-02-11 12:00:47','[GLPI #0000081] Novo acompanhamento INSTALAÇÃO VPN TECNOMULTI',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_81 \n\n Chamado: Descrição\n\n Título : INSTALAÇÃO VPN TECNOMULTI\n Requerentes :  tecnomulti  \n Data de abertura : 04-02-2025 15:43\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - danielle.silva@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : INSTALAÇÃO VPN TECNOMULTI\n2) E-MAIL : danielle.silva@tecnomulti.com\n3) TELEFONE : 81 99293-6741\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nInstalação da VPN Tecnomulti. \n \n\n\n[06-02-2025 11:39]\nAutor Alexsandro Cruz\nDescrição Atendimento realizado. \nData de abertura 06-02-2025 11:39\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[04-02-2025 16:16]\nAutor Alexsandro Cruz\nDescrição Boa tarde, Dani.\n\nEssa configuração seria a de Fabiano?\nData de abertura 04-02-2025 16:16\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1027,'Ticket',81,4,2,1,0,'2025-02-06 14:39:43','2025-02-06 14:39:43','2025-02-10 11:18:47','[GLPI #0000081] Novo acompanhamento INSTALAÇÃO VPN TECNOMULTI',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_81 \n\n Chamado: Descrição\n\n Título : INSTALAÇÃO VPN TECNOMULTI\n Requerentes :  tecnomulti  \n Data de abertura : 04-02-2025 15:43\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - danielle.silva@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : INSTALAÇÃO VPN TECNOMULTI\n2) E-MAIL : danielle.silva@tecnomulti.com\n3) TELEFONE : 81 99293-6741\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nInstalação da VPN Tecnomulti. \n \n\n\n[06-02-2025 11:39]\nAutor Alexsandro Cruz\nDescrição Atendimento realizado. \nData de abertura 06-02-2025 11:39\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[04-02-2025 16:16]\nAutor Alexsandro Cruz\nDescrição Boa tarde, Dani.\n\nEssa configuração seria a de Fabiano?\nData de abertura 04-02-2025 16:16\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1028,'Ticket',81,4,2,0,0,'2025-02-06 14:39:43','2025-02-06 14:39:43',NULL,'[GLPI #0000081] Novo acompanhamento INSTALAÇÃO VPN TECNOMULTI',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_81 \n\n Chamado: Descrição\n\n Título : INSTALAÇÃO VPN TECNOMULTI\n Requerentes :  tecnomulti  \n Data de abertura : 04-02-2025 15:43\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - danielle.silva@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : INSTALAÇÃO VPN TECNOMULTI\n2) E-MAIL : danielle.silva@tecnomulti.com\n3) TELEFONE : 81 99293-6741\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nInstalação da VPN Tecnomulti. \n \n\n\n[06-02-2025 11:39]\nAutor Alexsandro Cruz\nDescrição Atendimento realizado. \nData de abertura 06-02-2025 11:39\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[04-02-2025 16:16]\nAutor Alexsandro Cruz\nDescrição Boa tarde, Dani.\n\nEssa configuração seria a de Fabiano?\nData de abertura 04-02-2025 16:16\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1029,'Ticket',81,4,2,1,0,'2025-02-06 14:39:43','2025-02-06 14:39:43','2025-02-08 01:42:04','[GLPI #0000081] Novo acompanhamento INSTALAÇÃO VPN TECNOMULTI',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_81 \n\n Chamado: Descrição\n\n Título : INSTALAÇÃO VPN TECNOMULTI\n Requerentes :  tecnomulti  \n Data de abertura : 04-02-2025 15:43\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - danielle.silva@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : INSTALAÇÃO VPN TECNOMULTI\n2) E-MAIL : danielle.silva@tecnomulti.com\n3) TELEFONE : 81 99293-6741\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nInstalação da VPN Tecnomulti. \n \n\n\n[06-02-2025 11:39]\nAutor Alexsandro Cruz\nDescrição Atendimento realizado. \nData de abertura 06-02-2025 11:39\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[04-02-2025 16:16]\nAutor Alexsandro Cruz\nDescrição Boa tarde, Dani.\n\nEssa configuração seria a de Fabiano?\nData de abertura 04-02-2025 16:16\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1030,'Ticket',81,4,2,0,0,'2025-02-06 14:39:43','2025-02-06 14:39:43',NULL,'[GLPI #0000081] Novo acompanhamento INSTALAÇÃO VPN TECNOMULTI','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000081] Novo acompanhamento INSTALA&#38;Ccedil;&#38;Atilde;O VPN TECNOMULTI&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_81\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_81&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:INSTALA&#38;Ccedil;&#38;Atilde;O VPN TECNOMULTI &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:04-02-2025 15:43 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- danielle.silva@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;INSTALAÇÃO VPN TECNOMULTI&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;danielle.silva@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 99293-6741&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Instalação da VPN Tecnomulti. &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [06-02-2025 11:39]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Atendimento realizado. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;06-02-2025 11:39&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [04-02-2025 16:16]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, Dani.&#60;/p&#62;\r\n&#60;p&#62;Essa configuração seria a de Fabiano?&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;04-02-2025 16:16&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_81 \n\n Chamado: Descrição\n\n Título : INSTALAÇÃO VPN TECNOMULTI\n Requerentes :  tecnomulti  \n Data de abertura : 04-02-2025 15:43\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - danielle.silva@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : INSTALAÇÃO VPN TECNOMULTI\n2) E-MAIL : danielle.silva@tecnomulti.com\n3) TELEFONE : 81 99293-6741\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nInstalação da VPN Tecnomulti. \n \n\n\n[06-02-2025 11:39]\nAutor Alexsandro Cruz\nDescrição Atendimento realizado. \nData de abertura 06-02-2025 11:39\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[04-02-2025 16:16]\nAutor Alexsandro Cruz\nDescrição Boa tarde, Dani.\n\nEssa configuração seria a de Fabiano?\nData de abertura 04-02-2025 16:16\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-81/add_followup.1738852784.1035440416@oswintech.ddns.net','','mailing','add_followup'),
(1031,'Ticket',81,4,2,0,0,'2025-02-06 14:39:43','2025-02-06 14:39:43',NULL,'[GLPI #0000081] Novo acompanhamento INSTALAÇÃO VPN TECNOMULTI','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000081] Novo acompanhamento INSTALA&#38;Ccedil;&#38;Atilde;O VPN TECNOMULTI&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_81\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_81&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:INSTALA&#38;Ccedil;&#38;Atilde;O VPN TECNOMULTI &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:04-02-2025 15:43 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- danielle.silva@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;INSTALAÇÃO VPN TECNOMULTI&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;danielle.silva@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 99293-6741&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Instalação da VPN Tecnomulti. &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [06-02-2025 11:39]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Atendimento realizado. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;06-02-2025 11:39&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [04-02-2025 16:16]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, Dani.&#60;/p&#62;\r\n&#60;p&#62;Essa configuração seria a de Fabiano?&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;04-02-2025 16:16&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_81 \n\n Chamado: Descrição\n\n Título : INSTALAÇÃO VPN TECNOMULTI\n Requerentes :  tecnomulti  \n Data de abertura : 04-02-2025 15:43\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - danielle.silva@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : INSTALAÇÃO VPN TECNOMULTI\n2) E-MAIL : danielle.silva@tecnomulti.com\n3) TELEFONE : 81 99293-6741\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nInstalação da VPN Tecnomulti. \n \n\n\n[06-02-2025 11:39]\nAutor Alexsandro Cruz\nDescrição Atendimento realizado. \nData de abertura 06-02-2025 11:39\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[04-02-2025 16:16]\nAutor Alexsandro Cruz\nDescrição Boa tarde, Dani.\n\nEssa configuração seria a de Fabiano?\nData de abertura 04-02-2025 16:16\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-81/add_followup.1738852784.474028545@oswintech.ddns.net','','mailing','add_followup'),
(1032,'Ticket',81,4,2,0,0,'2025-02-06 14:39:43','2025-02-06 14:39:43',NULL,'[GLPI #0000081] Novo acompanhamento INSTALAÇÃO VPN TECNOMULTI','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000081] Novo acompanhamento INSTALA&#38;Ccedil;&#38;Atilde;O VPN TECNOMULTI&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_81\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_81&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:INSTALA&#38;Ccedil;&#38;Atilde;O VPN TECNOMULTI &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:04-02-2025 15:43 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- danielle.silva@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;INSTALAÇÃO VPN TECNOMULTI&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;danielle.silva@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 99293-6741&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Instalação da VPN Tecnomulti. &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [06-02-2025 11:39]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Atendimento realizado. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;06-02-2025 11:39&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [04-02-2025 16:16]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, Dani.&#60;/p&#62;\r\n&#60;p&#62;Essa configuração seria a de Fabiano?&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;04-02-2025 16:16&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_81 \n\n Chamado: Descrição\n\n Título : INSTALAÇÃO VPN TECNOMULTI\n Requerentes :  tecnomulti  \n Data de abertura : 04-02-2025 15:43\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - danielle.silva@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : INSTALAÇÃO VPN TECNOMULTI\n2) E-MAIL : danielle.silva@tecnomulti.com\n3) TELEFONE : 81 99293-6741\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nInstalação da VPN Tecnomulti. \n \n\n\n[06-02-2025 11:39]\nAutor Alexsandro Cruz\nDescrição Atendimento realizado. \nData de abertura 06-02-2025 11:39\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[04-02-2025 16:16]\nAutor Alexsandro Cruz\nDescrição Boa tarde, Dani.\n\nEssa configuração seria a de Fabiano?\nData de abertura 04-02-2025 16:16\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-81/add_followup.1738852784.1848211184@oswintech.ddns.net','','mailing','add_followup'),
(1033,'Ticket',81,4,2,0,0,'2025-02-06 14:39:43','2025-02-06 14:39:43',NULL,'[GLPI #0000081] Novo acompanhamento INSTALAÇÃO VPN TECNOMULTI','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000081] Novo acompanhamento INSTALA&#38;Ccedil;&#38;Atilde;O VPN TECNOMULTI&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_81\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_81&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:INSTALA&#38;Ccedil;&#38;Atilde;O VPN TECNOMULTI &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:04-02-2025 15:43 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- danielle.silva@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;INSTALAÇÃO VPN TECNOMULTI&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;danielle.silva@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 99293-6741&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Instalação da VPN Tecnomulti. &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [06-02-2025 11:39]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Atendimento realizado. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;06-02-2025 11:39&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [04-02-2025 16:16]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, Dani.&#60;/p&#62;\r\n&#60;p&#62;Essa configuração seria a de Fabiano?&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;04-02-2025 16:16&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_81 \n\n Chamado: Descrição\n\n Título : INSTALAÇÃO VPN TECNOMULTI\n Requerentes :  tecnomulti  \n Data de abertura : 04-02-2025 15:43\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - danielle.silva@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : INSTALAÇÃO VPN TECNOMULTI\n2) E-MAIL : danielle.silva@tecnomulti.com\n3) TELEFONE : 81 99293-6741\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nInstalação da VPN Tecnomulti. \n \n\n\n[06-02-2025 11:39]\nAutor Alexsandro Cruz\nDescrição Atendimento realizado. \nData de abertura 06-02-2025 11:39\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[04-02-2025 16:16]\nAutor Alexsandro Cruz\nDescrição Boa tarde, Dani.\n\nEssa configuração seria a de Fabiano?\nData de abertura 04-02-2025 16:16\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-81/add_followup.1738852784.444004125@oswintech.ddns.net','','mailing','add_followup'),
(1034,'Ticket',81,4,2,0,0,'2025-02-06 14:39:48','2025-02-06 14:39:48',NULL,'[GLPI #0000081] Encerramento do chamado INSTALAÇÃO VPN TECNOMULTI','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000081] Encerramento do chamado INSTALA&#38;Ccedil;&#38;Atilde;O VPN TECNOMULTI&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_81\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_81&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:INSTALA&#38;Ccedil;&#38;Atilde;O VPN TECNOMULTI &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:04-02-2025 15:43 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:06-02-2025 11:39 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- danielle.silva@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;INSTALAÇÃO VPN TECNOMULTI&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;danielle.silva@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 99293-6741&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Instalação da VPN Tecnomulti. &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 06-02-2025 11:39&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [06-02-2025 11:39]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Atendimento realizado. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;06-02-2025 11:39&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [04-02-2025 16:16]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, Dani.&#60;/p&#62;\r\n&#60;p&#62;Essa configuração seria a de Fabiano?&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;04-02-2025 16:16&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_81 \n\n Chamado: Descrição\n\n Título : INSTALAÇÃO VPN TECNOMULTI\n Requerentes :  tecnomulti  \n Data de abertura : 04-02-2025 15:43\n Data de fechamento : 06-02-2025 11:39\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - danielle.silva@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : INSTALAÇÃO VPN TECNOMULTI\n2) E-MAIL : danielle.silva@tecnomulti.com\n3) TELEFONE : 81 99293-6741\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nInstalação da VPN Tecnomulti. \n \n\n Data da solução : 06-02-2025 11:39\n Tipo de solução : \n Solução : \n \n\n\n[06-02-2025 11:39]\nAutor Alexsandro Cruz\nDescrição Atendimento realizado. \nData de abertura 06-02-2025 11:39\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[04-02-2025 16:16]\nAutor Alexsandro Cruz\nDescrição Boa tarde, Dani.\n\nEssa configuração seria a de Fabiano?\nData de abertura 04-02-2025 16:16\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-81/closed.1738852788.1898686308@oswintech.ddns.net','','mailing','closed'),
(1035,'Ticket',81,4,2,0,0,'2025-02-06 14:39:48','2025-02-06 14:39:48',NULL,'[GLPI #0000081] Encerramento do chamado INSTALAÇÃO VPN TECNOMULTI','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000081] Encerramento do chamado INSTALA&#38;Ccedil;&#38;Atilde;O VPN TECNOMULTI&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_81\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_81&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:INSTALA&#38;Ccedil;&#38;Atilde;O VPN TECNOMULTI &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:04-02-2025 15:43 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:06-02-2025 11:39 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- danielle.silva@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;INSTALAÇÃO VPN TECNOMULTI&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;danielle.silva@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 99293-6741&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Instalação da VPN Tecnomulti. &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 06-02-2025 11:39&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [06-02-2025 11:39]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Atendimento realizado. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;06-02-2025 11:39&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [04-02-2025 16:16]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, Dani.&#60;/p&#62;\r\n&#60;p&#62;Essa configuração seria a de Fabiano?&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;04-02-2025 16:16&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_81 \n\n Chamado: Descrição\n\n Título : INSTALAÇÃO VPN TECNOMULTI\n Requerentes :  tecnomulti  \n Data de abertura : 04-02-2025 15:43\n Data de fechamento : 06-02-2025 11:39\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - danielle.silva@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : INSTALAÇÃO VPN TECNOMULTI\n2) E-MAIL : danielle.silva@tecnomulti.com\n3) TELEFONE : 81 99293-6741\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nInstalação da VPN Tecnomulti. \n \n\n Data da solução : 06-02-2025 11:39\n Tipo de solução : \n Solução : \n \n\n\n[06-02-2025 11:39]\nAutor Alexsandro Cruz\nDescrição Atendimento realizado. \nData de abertura 06-02-2025 11:39\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[04-02-2025 16:16]\nAutor Alexsandro Cruz\nDescrição Boa tarde, Dani.\n\nEssa configuração seria a de Fabiano?\nData de abertura 04-02-2025 16:16\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-81/closed.1738852789.1471910397@oswintech.ddns.net','','mailing','closed'),
(1036,'Ticket',80,4,2,0,0,'2025-02-06 14:41:21','2025-02-06 14:41:21',NULL,'[GLPI #0000080] Encerramento do chamado VPN','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000080] Encerramento do chamado VPN&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_80\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_80&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:VPN &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:04-02-2025 15:37 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:06-02-2025 11:41 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- fabiano.melo@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;VPN&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;fabiano.melo@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81988187688&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;ACESSO A VPN &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 04-02-2025 16:15&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [04-02-2025 16:15]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Foi realizado a configuração da VPN WIRE GUARD, a vpn tradicional do windows não conectou. Ficou combinado de ser testado em outra rede sem ser a da casa de Fabiano.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;04-02-2025 16:15&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [04-02-2025 15:41]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, &#60;/p&#62;\r\n&#60;p&#62;Irei realizar o acesso para a configuração.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;04-02-2025 15:41&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_80 \n\n Chamado: Descrição\n\n Título : VPN\n Requerentes :  tecnomulti  \n Data de abertura : 04-02-2025 15:37\n Data de fechamento : 06-02-2025 11:41\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - fabiano.melo@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : VPN\n2) E-MAIL : fabiano.melo@tecnomulti.com\n3) TELEFONE : 81988187688\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nACESSO A VPN \n \n\n Data da solução : 04-02-2025 16:15\n Tipo de solução : \n Solução : \n \n\n\n[04-02-2025 16:15]\nAutor Alexsandro Cruz\nDescrição Foi realizado a configuração da VPN WIRE GUARD, a vpn tradicional do windows não conectou. Ficou combinado de ser testado em outra rede sem ser a da casa de Fabiano.\nData de abertura 04-02-2025 16:15\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[04-02-2025 15:41]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nIrei realizar o acesso para a configuração.\nData de abertura 04-02-2025 15:41\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-80/closed.1738852881.1446531202@oswintech.ddns.net','','mailing','closed'),
(1037,'Ticket',80,4,2,0,0,'2025-02-06 14:41:21','2025-02-06 14:41:21',NULL,'[GLPI #0000080] Encerramento do chamado VPN','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000080] Encerramento do chamado VPN&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_80\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_80&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:VPN &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:04-02-2025 15:37 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:06-02-2025 11:41 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- fabiano.melo@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;VPN&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;fabiano.melo@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81988187688&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;ACESSO A VPN &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 04-02-2025 16:15&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [04-02-2025 16:15]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Foi realizado a configuração da VPN WIRE GUARD, a vpn tradicional do windows não conectou. Ficou combinado de ser testado em outra rede sem ser a da casa de Fabiano.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;04-02-2025 16:15&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [04-02-2025 15:41]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, &#60;/p&#62;\r\n&#60;p&#62;Irei realizar o acesso para a configuração.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;04-02-2025 15:41&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_80 \n\n Chamado: Descrição\n\n Título : VPN\n Requerentes :  tecnomulti  \n Data de abertura : 04-02-2025 15:37\n Data de fechamento : 06-02-2025 11:41\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - fabiano.melo@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : VPN\n2) E-MAIL : fabiano.melo@tecnomulti.com\n3) TELEFONE : 81988187688\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nACESSO A VPN \n \n\n Data da solução : 04-02-2025 16:15\n Tipo de solução : \n Solução : \n \n\n\n[04-02-2025 16:15]\nAutor Alexsandro Cruz\nDescrição Foi realizado a configuração da VPN WIRE GUARD, a vpn tradicional do windows não conectou. Ficou combinado de ser testado em outra rede sem ser a da casa de Fabiano.\nData de abertura 04-02-2025 16:15\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[04-02-2025 15:41]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nIrei realizar o acesso para a configuração.\nData de abertura 04-02-2025 15:41\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-80/closed.1738852882.908653113@oswintech.ddns.net','','mailing','closed'),
(1038,'PluginFormcreatorFormAnswer',46,29,2,0,0,'2025-02-07 14:16:50','2025-02-07 14:16:50',NULL,'[GLPI] Sua requisição foi salva','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI] Sua requisi&#38;ccedil;&#38;atilde;o foi salva&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;p&#62;Olá,&#60;br /&#62;Sua requisição do GLPI foi salva com sucesso com o número 46 e transmitido para a equipe de helpdesk.&#60;br /&#62;Você pode ver suas respostas no seguinte link:&#60;br /&#62;https://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=46&#60;/p&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;','Olá,\nSua requisição do GLPI foi salva com sucesso com o número 46 e transmitido para a equipe de helpdesk.\nVocê pode ver suas respostas no seguinte link:\nhttps://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=46\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-PluginFormcreatorFormAnswer-46/plugin_formcreator_form_created.1738937810.1017748763@oswintech.ddns.net','','mailing','plugin_formcreator_form_created'),
(1039,'Ticket',82,4,2,1,0,'2025-02-07 14:16:50','2025-02-07 14:16:50','2025-02-11 12:00:48','[GLPI #0000082] Novo chamado PASTA FROTA',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_82 \n\n Chamado: Descrição\n\n Título : PASTA FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 07-02-2025 11:16\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA FROTA\n2) E-MAIL : fabio.jackson@tecnomulti.com\n3) TELEFONE : 83986500039\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nfavor  configurar acesso para Pasta Frotas \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(1040,'Ticket',82,4,2,1,0,'2025-02-07 14:16:50','2025-02-07 14:16:50','2025-02-10 11:18:47','[GLPI #0000082] Novo chamado PASTA FROTA',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_82 \n\n Chamado: Descrição\n\n Título : PASTA FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 07-02-2025 11:16\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA FROTA\n2) E-MAIL : fabio.jackson@tecnomulti.com\n3) TELEFONE : 83986500039\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nfavor  configurar acesso para Pasta Frotas \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(1041,'Ticket',82,4,2,0,0,'2025-02-07 14:16:50','2025-02-07 14:16:50',NULL,'[GLPI #0000082] Novo chamado PASTA FROTA',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_82 \n\n Chamado: Descrição\n\n Título : PASTA FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 07-02-2025 11:16\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA FROTA\n2) E-MAIL : fabio.jackson@tecnomulti.com\n3) TELEFONE : 83986500039\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nfavor  configurar acesso para Pasta Frotas \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(1042,'Ticket',82,4,2,1,0,'2025-02-07 14:16:50','2025-02-07 14:16:50','2025-02-08 01:42:04','[GLPI #0000082] Novo chamado PASTA FROTA',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_82 \n\n Chamado: Descrição\n\n Título : PASTA FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 07-02-2025 11:16\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA FROTA\n2) E-MAIL : fabio.jackson@tecnomulti.com\n3) TELEFONE : 83986500039\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nfavor  configurar acesso para Pasta Frotas \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(1043,'Ticket',82,4,2,0,0,'2025-02-07 14:16:50','2025-02-07 14:16:50',NULL,'[GLPI #0000082] Novo chamado PASTA FROTA','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000082] Novo chamado PASTA FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_82\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_82&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:07-02-2025 11:16 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;fabio.jackson@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83986500039&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;favor  configurar acesso para Pasta Frotas &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_82 \n\n Chamado: Descrição\n\n Título : PASTA FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 07-02-2025 11:16\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA FROTA\n2) E-MAIL : fabio.jackson@tecnomulti.com\n3) TELEFONE : 83986500039\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nfavor  configurar acesso para Pasta Frotas \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-82/new@oswintech.ddns.net','','mailing','new'),
(1044,'Ticket',82,4,2,0,0,'2025-02-07 14:16:50','2025-02-07 14:16:50',NULL,'[GLPI #0000082] Novo chamado PASTA FROTA','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000082] Novo chamado PASTA FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_82\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_82&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:07-02-2025 11:16 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;fabio.jackson@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83986500039&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;favor  configurar acesso para Pasta Frotas &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_82 \n\n Chamado: Descrição\n\n Título : PASTA FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 07-02-2025 11:16\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA FROTA\n2) E-MAIL : fabio.jackson@tecnomulti.com\n3) TELEFONE : 83986500039\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nfavor  configurar acesso para Pasta Frotas \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-82/new@oswintech.ddns.net','','mailing','new'),
(1045,'Ticket',82,4,2,0,0,'2025-02-07 14:16:50','2025-02-07 14:16:50',NULL,'[GLPI #0000082] Novo chamado PASTA FROTA','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000082] Novo chamado PASTA FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_82\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_82&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:07-02-2025 11:16 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;fabio.jackson@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83986500039&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;favor  configurar acesso para Pasta Frotas &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_82 \n\n Chamado: Descrição\n\n Título : PASTA FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 07-02-2025 11:16\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA FROTA\n2) E-MAIL : fabio.jackson@tecnomulti.com\n3) TELEFONE : 83986500039\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nfavor  configurar acesso para Pasta Frotas \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-82/new@oswintech.ddns.net','','mailing','new'),
(1046,'Ticket',82,4,2,0,0,'2025-02-07 14:16:50','2025-02-07 14:16:50',NULL,'[GLPI #0000082] Novo chamado PASTA FROTA','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000082] Novo chamado PASTA FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_82\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_82&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:07-02-2025 11:16 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;fabio.jackson@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83986500039&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;favor  configurar acesso para Pasta Frotas &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_82 \n\n Chamado: Descrição\n\n Título : PASTA FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 07-02-2025 11:16\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA FROTA\n2) E-MAIL : fabio.jackson@tecnomulti.com\n3) TELEFONE : 83986500039\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nfavor  configurar acesso para Pasta Frotas \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-82/new@oswintech.ddns.net','','mailing','new'),
(1047,'PluginFormcreatorFormAnswer',47,29,2,0,0,'2025-02-10 11:16:41','2025-02-10 11:16:41',NULL,'[GLPI] Sua requisição foi salva','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI] Sua requisi&#38;ccedil;&#38;atilde;o foi salva&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;p&#62;Olá,&#60;br /&#62;Sua requisição do GLPI foi salva com sucesso com o número 47 e transmitido para a equipe de helpdesk.&#60;br /&#62;Você pode ver suas respostas no seguinte link:&#60;br /&#62;https://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=47&#60;/p&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;','Olá,\nSua requisição do GLPI foi salva com sucesso com o número 47 e transmitido para a equipe de helpdesk.\nVocê pode ver suas respostas no seguinte link:\nhttps://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=47\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-PluginFormcreatorFormAnswer-47/plugin_formcreator_form_created.1739186201.437380170@oswintech.ddns.net','','mailing','plugin_formcreator_form_created'),
(1048,'Ticket',83,4,2,1,0,'2025-02-10 11:16:41','2025-02-10 11:16:41','2025-02-11 12:00:48','[GLPI #0000083] Novo chamado EMAIL / EXCEL / POWER POINT',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_83 \n\n Chamado: Descrição\n\n Título : EMAIL / EXCEL / POWER POINT\n Requerentes :  tecnomulti  \n Data de abertura : 10-02-2025 08:16\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL / EXCEL / POWER POINT\n2) E-MAIL : amanda.moreira@tecnomulti.com\n3) TELEFONE : (84)98753-9247\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nNão consigo enviar, nem responder emails. Apenas recebo.\n\nExcel, power point e word, apenas abre, não consigo mexer nele. Mostra um aviso informando que \"Está cópia do Microsoft office não está ativada. \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(1049,'Ticket',83,4,2,1,0,'2025-02-10 11:16:41','2025-02-10 11:16:41','2025-02-10 11:18:49','[GLPI #0000083] Novo chamado EMAIL / EXCEL / POWER POINT',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_83 \n\n Chamado: Descrição\n\n Título : EMAIL / EXCEL / POWER POINT\n Requerentes :  tecnomulti  \n Data de abertura : 10-02-2025 08:16\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL / EXCEL / POWER POINT\n2) E-MAIL : amanda.moreira@tecnomulti.com\n3) TELEFONE : (84)98753-9247\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nNão consigo enviar, nem responder emails. Apenas recebo.\n\nExcel, power point e word, apenas abre, não consigo mexer nele. Mostra um aviso informando que \"Está cópia do Microsoft office não está ativada. \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(1050,'Ticket',83,4,2,0,0,'2025-02-10 11:16:41','2025-02-10 11:16:41',NULL,'[GLPI #0000083] Novo chamado EMAIL / EXCEL / POWER POINT',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_83 \n\n Chamado: Descrição\n\n Título : EMAIL / EXCEL / POWER POINT\n Requerentes :  tecnomulti  \n Data de abertura : 10-02-2025 08:16\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL / EXCEL / POWER POINT\n2) E-MAIL : amanda.moreira@tecnomulti.com\n3) TELEFONE : (84)98753-9247\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nNão consigo enviar, nem responder emails. Apenas recebo.\n\nExcel, power point e word, apenas abre, não consigo mexer nele. Mostra um aviso informando que \"Está cópia do Microsoft office não está ativada. \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(1051,'Ticket',83,4,2,1,0,'2025-02-10 11:16:41','2025-02-10 11:16:41','2025-02-10 15:22:23','[GLPI #0000083] Novo chamado EMAIL / EXCEL / POWER POINT',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_83 \n\n Chamado: Descrição\n\n Título : EMAIL / EXCEL / POWER POINT\n Requerentes :  tecnomulti  \n Data de abertura : 10-02-2025 08:16\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL / EXCEL / POWER POINT\n2) E-MAIL : amanda.moreira@tecnomulti.com\n3) TELEFONE : (84)98753-9247\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nNão consigo enviar, nem responder emails. Apenas recebo.\n\nExcel, power point e word, apenas abre, não consigo mexer nele. Mostra um aviso informando que \"Está cópia do Microsoft office não está ativada. \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(1052,'Ticket',83,4,2,0,0,'2025-02-10 11:16:41','2025-02-10 11:16:41',NULL,'[GLPI #0000083] Novo chamado EMAIL / EXCEL / POWER POINT','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000083] Novo chamado EMAIL / EXCEL / POWER POINT&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_83\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_83&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:EMAIL / EXCEL / POWER POINT &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:10-02-2025 08:16 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;EMAIL / EXCEL / POWER POINT&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;amanda.moreira@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;(84)98753-9247&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Não consigo enviar, nem responder emails. Apenas recebo.&#60;/p&#62;\n&#60;p&#62;Excel, power point e word, apenas abre, não consigo mexer nele. Mostra um aviso informando que \"Está cópia do Microsoft office não está ativada. &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_83 \n\n Chamado: Descrição\n\n Título : EMAIL / EXCEL / POWER POINT\n Requerentes :  tecnomulti  \n Data de abertura : 10-02-2025 08:16\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL / EXCEL / POWER POINT\n2) E-MAIL : amanda.moreira@tecnomulti.com\n3) TELEFONE : (84)98753-9247\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nNão consigo enviar, nem responder emails. Apenas recebo.\n\nExcel, power point e word, apenas abre, não consigo mexer nele. Mostra um aviso informando que \"Está cópia do Microsoft office não está ativada. \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-83/new@oswintech.ddns.net','','mailing','new'),
(1053,'Ticket',83,4,2,0,0,'2025-02-10 11:16:41','2025-02-10 11:16:41',NULL,'[GLPI #0000083] Novo chamado EMAIL / EXCEL / POWER POINT','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000083] Novo chamado EMAIL / EXCEL / POWER POINT&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_83\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_83&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:EMAIL / EXCEL / POWER POINT &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:10-02-2025 08:16 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;EMAIL / EXCEL / POWER POINT&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;amanda.moreira@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;(84)98753-9247&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Não consigo enviar, nem responder emails. Apenas recebo.&#60;/p&#62;\n&#60;p&#62;Excel, power point e word, apenas abre, não consigo mexer nele. Mostra um aviso informando que \"Está cópia do Microsoft office não está ativada. &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_83 \n\n Chamado: Descrição\n\n Título : EMAIL / EXCEL / POWER POINT\n Requerentes :  tecnomulti  \n Data de abertura : 10-02-2025 08:16\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL / EXCEL / POWER POINT\n2) E-MAIL : amanda.moreira@tecnomulti.com\n3) TELEFONE : (84)98753-9247\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nNão consigo enviar, nem responder emails. Apenas recebo.\n\nExcel, power point e word, apenas abre, não consigo mexer nele. Mostra um aviso informando que \"Está cópia do Microsoft office não está ativada. \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-83/new@oswintech.ddns.net','','mailing','new'),
(1054,'Ticket',83,4,2,0,0,'2025-02-10 11:16:41','2025-02-10 11:16:41',NULL,'[GLPI #0000083] Novo chamado EMAIL / EXCEL / POWER POINT','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000083] Novo chamado EMAIL / EXCEL / POWER POINT&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_83\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_83&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:EMAIL / EXCEL / POWER POINT &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:10-02-2025 08:16 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;EMAIL / EXCEL / POWER POINT&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;amanda.moreira@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;(84)98753-9247&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Não consigo enviar, nem responder emails. Apenas recebo.&#60;/p&#62;\n&#60;p&#62;Excel, power point e word, apenas abre, não consigo mexer nele. Mostra um aviso informando que \"Está cópia do Microsoft office não está ativada. &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_83 \n\n Chamado: Descrição\n\n Título : EMAIL / EXCEL / POWER POINT\n Requerentes :  tecnomulti  \n Data de abertura : 10-02-2025 08:16\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL / EXCEL / POWER POINT\n2) E-MAIL : amanda.moreira@tecnomulti.com\n3) TELEFONE : (84)98753-9247\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nNão consigo enviar, nem responder emails. Apenas recebo.\n\nExcel, power point e word, apenas abre, não consigo mexer nele. Mostra um aviso informando que \"Está cópia do Microsoft office não está ativada. \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-83/new@oswintech.ddns.net','','mailing','new'),
(1055,'Ticket',83,4,2,0,0,'2025-02-10 11:16:41','2025-02-10 11:16:41',NULL,'[GLPI #0000083] Novo chamado EMAIL / EXCEL / POWER POINT','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000083] Novo chamado EMAIL / EXCEL / POWER POINT&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_83\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_83&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:EMAIL / EXCEL / POWER POINT &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:10-02-2025 08:16 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;EMAIL / EXCEL / POWER POINT&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;amanda.moreira@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;(84)98753-9247&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Não consigo enviar, nem responder emails. Apenas recebo.&#60;/p&#62;\n&#60;p&#62;Excel, power point e word, apenas abre, não consigo mexer nele. Mostra um aviso informando que \"Está cópia do Microsoft office não está ativada. &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_83 \n\n Chamado: Descrição\n\n Título : EMAIL / EXCEL / POWER POINT\n Requerentes :  tecnomulti  \n Data de abertura : 10-02-2025 08:16\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL / EXCEL / POWER POINT\n2) E-MAIL : amanda.moreira@tecnomulti.com\n3) TELEFONE : (84)98753-9247\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nNão consigo enviar, nem responder emails. Apenas recebo.\n\nExcel, power point e word, apenas abre, não consigo mexer nele. Mostra um aviso informando que \"Está cópia do Microsoft office não está ativada. \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-83/new@oswintech.ddns.net','','mailing','new'),
(1056,'Ticket',83,4,2,1,0,'2025-02-10 11:19:29','2025-02-10 11:19:29','2025-02-11 12:00:48','[GLPI #0000083] Novo acompanhamento EMAIL / EXCEL / POWER POINT',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_83 \n\n Chamado: Descrição\n\n Título : EMAIL / EXCEL / POWER POINT\n Requerentes :  tecnomulti  \n Data de abertura : 10-02-2025 08:16\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - amanda.moreira@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL / EXCEL / POWER POINT\n2) E-MAIL : amanda.moreira@tecnomulti.com\n3) TELEFONE : (84)98753-9247\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nNão consigo enviar, nem responder emails. Apenas recebo.\n\nExcel, power point e word, apenas abre, não consigo mexer nele. Mostra um aviso informando que \"Está cópia do Microsoft office não está ativada. \n \n\n\n[10-02-2025 08:19]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nMe passe o anydesk, por gentileza. \nData de abertura 10-02-2025 08:19\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1057,'Ticket',83,4,2,1,0,'2025-02-10 11:19:29','2025-02-10 11:19:29','2025-02-10 11:19:36','[GLPI #0000083] Novo acompanhamento EMAIL / EXCEL / POWER POINT',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_83 \n\n Chamado: Descrição\n\n Título : EMAIL / EXCEL / POWER POINT\n Requerentes :  tecnomulti  \n Data de abertura : 10-02-2025 08:16\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - amanda.moreira@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL / EXCEL / POWER POINT\n2) E-MAIL : amanda.moreira@tecnomulti.com\n3) TELEFONE : (84)98753-9247\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nNão consigo enviar, nem responder emails. Apenas recebo.\n\nExcel, power point e word, apenas abre, não consigo mexer nele. Mostra um aviso informando que \"Está cópia do Microsoft office não está ativada. \n \n\n\n[10-02-2025 08:19]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nMe passe o anydesk, por gentileza. \nData de abertura 10-02-2025 08:19\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1058,'Ticket',83,4,2,0,0,'2025-02-10 11:19:29','2025-02-10 11:19:29',NULL,'[GLPI #0000083] Novo acompanhamento EMAIL / EXCEL / POWER POINT',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_83 \n\n Chamado: Descrição\n\n Título : EMAIL / EXCEL / POWER POINT\n Requerentes :  tecnomulti  \n Data de abertura : 10-02-2025 08:16\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - amanda.moreira@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL / EXCEL / POWER POINT\n2) E-MAIL : amanda.moreira@tecnomulti.com\n3) TELEFONE : (84)98753-9247\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nNão consigo enviar, nem responder emails. Apenas recebo.\n\nExcel, power point e word, apenas abre, não consigo mexer nele. Mostra um aviso informando que \"Está cópia do Microsoft office não está ativada. \n \n\n\n[10-02-2025 08:19]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nMe passe o anydesk, por gentileza. \nData de abertura 10-02-2025 08:19\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1059,'Ticket',83,4,2,1,0,'2025-02-10 11:19:29','2025-02-10 11:19:29','2025-02-10 15:22:24','[GLPI #0000083] Novo acompanhamento EMAIL / EXCEL / POWER POINT',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_83 \n\n Chamado: Descrição\n\n Título : EMAIL / EXCEL / POWER POINT\n Requerentes :  tecnomulti  \n Data de abertura : 10-02-2025 08:16\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - amanda.moreira@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL / EXCEL / POWER POINT\n2) E-MAIL : amanda.moreira@tecnomulti.com\n3) TELEFONE : (84)98753-9247\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nNão consigo enviar, nem responder emails. Apenas recebo.\n\nExcel, power point e word, apenas abre, não consigo mexer nele. Mostra um aviso informando que \"Está cópia do Microsoft office não está ativada. \n \n\n\n[10-02-2025 08:19]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nMe passe o anydesk, por gentileza. \nData de abertura 10-02-2025 08:19\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1060,'Ticket',83,4,2,0,0,'2025-02-10 11:19:29','2025-02-10 11:19:29',NULL,'[GLPI #0000083] Novo acompanhamento EMAIL / EXCEL / POWER POINT','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000083] Novo acompanhamento EMAIL / EXCEL / POWER POINT&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_83\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_83&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:EMAIL / EXCEL / POWER POINT &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:10-02-2025 08:16 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- amanda.moreira@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;EMAIL / EXCEL / POWER POINT&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;amanda.moreira@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;(84)98753-9247&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Não consigo enviar, nem responder emails. Apenas recebo.&#60;/p&#62;\n&#60;p&#62;Excel, power point e word, apenas abre, não consigo mexer nele. Mostra um aviso informando que \"Está cópia do Microsoft office não está ativada. &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [10-02-2025 08:19]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, &#60;/p&#62;\r\n&#60;p&#62;Me passe o anydesk, por gentileza. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;10-02-2025 08:19&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_83 \n\n Chamado: Descrição\n\n Título : EMAIL / EXCEL / POWER POINT\n Requerentes :  tecnomulti  \n Data de abertura : 10-02-2025 08:16\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - amanda.moreira@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL / EXCEL / POWER POINT\n2) E-MAIL : amanda.moreira@tecnomulti.com\n3) TELEFONE : (84)98753-9247\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nNão consigo enviar, nem responder emails. Apenas recebo.\n\nExcel, power point e word, apenas abre, não consigo mexer nele. Mostra um aviso informando que \"Está cópia do Microsoft office não está ativada. \n \n\n\n[10-02-2025 08:19]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nMe passe o anydesk, por gentileza. \nData de abertura 10-02-2025 08:19\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-83/add_followup.1739186369.1659672518@oswintech.ddns.net','','mailing','add_followup'),
(1061,'Ticket',83,4,2,0,0,'2025-02-10 11:19:29','2025-02-10 11:19:29',NULL,'[GLPI #0000083] Novo acompanhamento EMAIL / EXCEL / POWER POINT','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000083] Novo acompanhamento EMAIL / EXCEL / POWER POINT&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_83\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_83&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:EMAIL / EXCEL / POWER POINT &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:10-02-2025 08:16 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- amanda.moreira@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;EMAIL / EXCEL / POWER POINT&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;amanda.moreira@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;(84)98753-9247&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Não consigo enviar, nem responder emails. Apenas recebo.&#60;/p&#62;\n&#60;p&#62;Excel, power point e word, apenas abre, não consigo mexer nele. Mostra um aviso informando que \"Está cópia do Microsoft office não está ativada. &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [10-02-2025 08:19]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, &#60;/p&#62;\r\n&#60;p&#62;Me passe o anydesk, por gentileza. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;10-02-2025 08:19&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_83 \n\n Chamado: Descrição\n\n Título : EMAIL / EXCEL / POWER POINT\n Requerentes :  tecnomulti  \n Data de abertura : 10-02-2025 08:16\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - amanda.moreira@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL / EXCEL / POWER POINT\n2) E-MAIL : amanda.moreira@tecnomulti.com\n3) TELEFONE : (84)98753-9247\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nNão consigo enviar, nem responder emails. Apenas recebo.\n\nExcel, power point e word, apenas abre, não consigo mexer nele. Mostra um aviso informando que \"Está cópia do Microsoft office não está ativada. \n \n\n\n[10-02-2025 08:19]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nMe passe o anydesk, por gentileza. \nData de abertura 10-02-2025 08:19\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-83/add_followup.1739186370.2003674995@oswintech.ddns.net','','mailing','add_followup'),
(1062,'Ticket',83,4,2,0,0,'2025-02-10 11:19:29','2025-02-10 11:19:29',NULL,'[GLPI #0000083] Novo acompanhamento EMAIL / EXCEL / POWER POINT','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000083] Novo acompanhamento EMAIL / EXCEL / POWER POINT&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_83\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_83&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:EMAIL / EXCEL / POWER POINT &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:10-02-2025 08:16 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- amanda.moreira@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;EMAIL / EXCEL / POWER POINT&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;amanda.moreira@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;(84)98753-9247&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Não consigo enviar, nem responder emails. Apenas recebo.&#60;/p&#62;\n&#60;p&#62;Excel, power point e word, apenas abre, não consigo mexer nele. Mostra um aviso informando que \"Está cópia do Microsoft office não está ativada. &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [10-02-2025 08:19]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, &#60;/p&#62;\r\n&#60;p&#62;Me passe o anydesk, por gentileza. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;10-02-2025 08:19&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_83 \n\n Chamado: Descrição\n\n Título : EMAIL / EXCEL / POWER POINT\n Requerentes :  tecnomulti  \n Data de abertura : 10-02-2025 08:16\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - amanda.moreira@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL / EXCEL / POWER POINT\n2) E-MAIL : amanda.moreira@tecnomulti.com\n3) TELEFONE : (84)98753-9247\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nNão consigo enviar, nem responder emails. Apenas recebo.\n\nExcel, power point e word, apenas abre, não consigo mexer nele. Mostra um aviso informando que \"Está cópia do Microsoft office não está ativada. \n \n\n\n[10-02-2025 08:19]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nMe passe o anydesk, por gentileza. \nData de abertura 10-02-2025 08:19\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-83/add_followup.1739186370.1038848891@oswintech.ddns.net','','mailing','add_followup'),
(1063,'Ticket',83,4,2,0,0,'2025-02-10 11:19:29','2025-02-10 11:19:29',NULL,'[GLPI #0000083] Novo acompanhamento EMAIL / EXCEL / POWER POINT','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000083] Novo acompanhamento EMAIL / EXCEL / POWER POINT&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_83\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_83&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:EMAIL / EXCEL / POWER POINT &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:10-02-2025 08:16 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- amanda.moreira@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;EMAIL / EXCEL / POWER POINT&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;amanda.moreira@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;(84)98753-9247&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Não consigo enviar, nem responder emails. Apenas recebo.&#60;/p&#62;\n&#60;p&#62;Excel, power point e word, apenas abre, não consigo mexer nele. Mostra um aviso informando que \"Está cópia do Microsoft office não está ativada. &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [10-02-2025 08:19]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, &#60;/p&#62;\r\n&#60;p&#62;Me passe o anydesk, por gentileza. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;10-02-2025 08:19&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_83 \n\n Chamado: Descrição\n\n Título : EMAIL / EXCEL / POWER POINT\n Requerentes :  tecnomulti  \n Data de abertura : 10-02-2025 08:16\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - amanda.moreira@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL / EXCEL / POWER POINT\n2) E-MAIL : amanda.moreira@tecnomulti.com\n3) TELEFONE : (84)98753-9247\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nNão consigo enviar, nem responder emails. Apenas recebo.\n\nExcel, power point e word, apenas abre, não consigo mexer nele. Mostra um aviso informando que \"Está cópia do Microsoft office não está ativada. \n \n\n\n[10-02-2025 08:19]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nMe passe o anydesk, por gentileza. \nData de abertura 10-02-2025 08:19\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-83/add_followup.1739186370.625512234@oswintech.ddns.net','','mailing','add_followup'),
(1064,'Ticket',83,4,2,1,0,'2025-02-10 11:19:35','2025-02-10 11:19:35','2025-02-11 12:00:48','[GLPI #0000083] Atualização de um chamado EMAIL / EXCEL / POWER POINT',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_83 \n\n Chamado: Descrição\n\n Título : EMAIL / EXCEL / POWER POINT\n Requerentes :  tecnomulti  \n Data de abertura : 10-02-2025 08:16\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - amanda.moreira@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL / EXCEL / POWER POINT\n2) E-MAIL : amanda.moreira@tecnomulti.com\n3) TELEFONE : (84)98753-9247\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nNão consigo enviar, nem responder emails. Apenas recebo.\n\nExcel, power point e word, apenas abre, não consigo mexer nele. Mostra um aviso informando que \"Está cópia do Microsoft office não está ativada. \n \n\n\n[10-02-2025 08:19]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nMe passe o anydesk, por gentileza. \nData de abertura 10-02-2025 08:19\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','update'),
(1065,'Ticket',83,4,2,0,0,'2025-02-10 11:19:35','2025-02-10 11:19:35',NULL,'[GLPI #0000083] Atualização de um chamado EMAIL / EXCEL / POWER POINT','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000083] Atualiza&#38;ccedil;&#38;atilde;o de um chamado EMAIL / EXCEL / POWER POINT&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_83\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_83&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:EMAIL / EXCEL / POWER POINT &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:10-02-2025 08:16 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- amanda.moreira@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;EMAIL / EXCEL / POWER POINT&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;amanda.moreira@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;(84)98753-9247&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Não consigo enviar, nem responder emails. Apenas recebo.&#60;/p&#62;\n&#60;p&#62;Excel, power point e word, apenas abre, não consigo mexer nele. Mostra um aviso informando que \"Está cópia do Microsoft office não está ativada. &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [10-02-2025 08:19]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, &#60;/p&#62;\r\n&#60;p&#62;Me passe o anydesk, por gentileza. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;10-02-2025 08:19&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_83 \n\n Chamado: Descrição\n\n Título : EMAIL / EXCEL / POWER POINT\n Requerentes :  tecnomulti  \n Data de abertura : 10-02-2025 08:16\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - amanda.moreira@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL / EXCEL / POWER POINT\n2) E-MAIL : amanda.moreira@tecnomulti.com\n3) TELEFONE : (84)98753-9247\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nNão consigo enviar, nem responder emails. Apenas recebo.\n\nExcel, power point e word, apenas abre, não consigo mexer nele. Mostra um aviso informando que \"Está cópia do Microsoft office não está ativada. \n \n\n\n[10-02-2025 08:19]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nMe passe o anydesk, por gentileza. \nData de abertura 10-02-2025 08:19\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-83/update.1739186375.1857343044@oswintech.ddns.net','','mailing','update'),
(1066,'Ticket',83,4,2,0,0,'2025-02-10 11:19:35','2025-02-10 11:19:35',NULL,'[GLPI #0000083] Atualização de um chamado EMAIL / EXCEL / POWER POINT','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000083] Atualiza&#38;ccedil;&#38;atilde;o de um chamado EMAIL / EXCEL / POWER POINT&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_83\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_83&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:EMAIL / EXCEL / POWER POINT &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:10-02-2025 08:16 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- amanda.moreira@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;EMAIL / EXCEL / POWER POINT&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;amanda.moreira@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;(84)98753-9247&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Não consigo enviar, nem responder emails. Apenas recebo.&#60;/p&#62;\n&#60;p&#62;Excel, power point e word, apenas abre, não consigo mexer nele. Mostra um aviso informando que \"Está cópia do Microsoft office não está ativada. &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [10-02-2025 08:19]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, &#60;/p&#62;\r\n&#60;p&#62;Me passe o anydesk, por gentileza. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;10-02-2025 08:19&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_83 \n\n Chamado: Descrição\n\n Título : EMAIL / EXCEL / POWER POINT\n Requerentes :  tecnomulti  \n Data de abertura : 10-02-2025 08:16\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - amanda.moreira@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL / EXCEL / POWER POINT\n2) E-MAIL : amanda.moreira@tecnomulti.com\n3) TELEFONE : (84)98753-9247\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nNão consigo enviar, nem responder emails. Apenas recebo.\n\nExcel, power point e word, apenas abre, não consigo mexer nele. Mostra um aviso informando que \"Está cópia do Microsoft office não está ativada. \n \n\n\n[10-02-2025 08:19]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nMe passe o anydesk, por gentileza. \nData de abertura 10-02-2025 08:19\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-83/update.1739186375.1126959600@oswintech.ddns.net','','mailing','update'),
(1067,'Ticket',83,4,2,1,0,'2025-02-10 11:41:39','2025-02-10 11:41:39','2025-02-11 12:00:48','[GLPI #0000083] Novo acompanhamento EMAIL / EXCEL / POWER POINT',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_83 \n\n Chamado: Descrição\n\n Título : EMAIL / EXCEL / POWER POINT\n Requerentes :  tecnomulti  \n Data de abertura : 10-02-2025 08:16\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - amanda.moreira@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL / EXCEL / POWER POINT\n2) E-MAIL : amanda.moreira@tecnomulti.com\n3) TELEFONE : (84)98753-9247\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nNão consigo enviar, nem responder emails. Apenas recebo.\n\nExcel, power point e word, apenas abre, não consigo mexer nele. Mostra um aviso informando que \"Está cópia do Microsoft office não está ativada. \n \n\n\n[10-02-2025 08:41]\nAutor tecnomulti\nDescrição 155531041\n\n \nData de abertura 10-02-2025 08:41\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[10-02-2025 08:19]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nMe passe o anydesk, por gentileza. \nData de abertura 10-02-2025 08:19\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1068,'Ticket',83,4,2,1,0,'2025-02-10 11:41:39','2025-02-10 11:41:39','2025-02-10 11:41:43','[GLPI #0000083] Novo acompanhamento EMAIL / EXCEL / POWER POINT',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_83 \n\n Chamado: Descrição\n\n Título : EMAIL / EXCEL / POWER POINT\n Requerentes :  tecnomulti  \n Data de abertura : 10-02-2025 08:16\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - amanda.moreira@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL / EXCEL / POWER POINT\n2) E-MAIL : amanda.moreira@tecnomulti.com\n3) TELEFONE : (84)98753-9247\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nNão consigo enviar, nem responder emails. Apenas recebo.\n\nExcel, power point e word, apenas abre, não consigo mexer nele. Mostra um aviso informando que \"Está cópia do Microsoft office não está ativada. \n \n\n\n[10-02-2025 08:41]\nAutor tecnomulti\nDescrição 155531041\n\n \nData de abertura 10-02-2025 08:41\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[10-02-2025 08:19]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nMe passe o anydesk, por gentileza. \nData de abertura 10-02-2025 08:19\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1069,'Ticket',83,4,2,0,0,'2025-02-10 11:41:39','2025-02-10 11:41:39',NULL,'[GLPI #0000083] Novo acompanhamento EMAIL / EXCEL / POWER POINT',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_83 \n\n Chamado: Descrição\n\n Título : EMAIL / EXCEL / POWER POINT\n Requerentes :  tecnomulti  \n Data de abertura : 10-02-2025 08:16\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - amanda.moreira@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL / EXCEL / POWER POINT\n2) E-MAIL : amanda.moreira@tecnomulti.com\n3) TELEFONE : (84)98753-9247\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nNão consigo enviar, nem responder emails. Apenas recebo.\n\nExcel, power point e word, apenas abre, não consigo mexer nele. Mostra um aviso informando que \"Está cópia do Microsoft office não está ativada. \n \n\n\n[10-02-2025 08:41]\nAutor tecnomulti\nDescrição 155531041\n\n \nData de abertura 10-02-2025 08:41\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[10-02-2025 08:19]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nMe passe o anydesk, por gentileza. \nData de abertura 10-02-2025 08:19\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1070,'Ticket',83,4,2,1,0,'2025-02-10 11:41:39','2025-02-10 11:41:39','2025-02-10 15:22:25','[GLPI #0000083] Novo acompanhamento EMAIL / EXCEL / POWER POINT',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_83 \n\n Chamado: Descrição\n\n Título : EMAIL / EXCEL / POWER POINT\n Requerentes :  tecnomulti  \n Data de abertura : 10-02-2025 08:16\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - amanda.moreira@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL / EXCEL / POWER POINT\n2) E-MAIL : amanda.moreira@tecnomulti.com\n3) TELEFONE : (84)98753-9247\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nNão consigo enviar, nem responder emails. Apenas recebo.\n\nExcel, power point e word, apenas abre, não consigo mexer nele. Mostra um aviso informando que \"Está cópia do Microsoft office não está ativada. \n \n\n\n[10-02-2025 08:41]\nAutor tecnomulti\nDescrição 155531041\n\n \nData de abertura 10-02-2025 08:41\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[10-02-2025 08:19]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nMe passe o anydesk, por gentileza. \nData de abertura 10-02-2025 08:19\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1071,'Ticket',83,4,2,0,0,'2025-02-10 11:41:39','2025-02-10 11:41:39',NULL,'[GLPI #0000083] Novo acompanhamento EMAIL / EXCEL / POWER POINT','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000083] Novo acompanhamento EMAIL / EXCEL / POWER POINT&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_83\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_83&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:EMAIL / EXCEL / POWER POINT &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:10-02-2025 08:16 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- amanda.moreira@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;EMAIL / EXCEL / POWER POINT&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;amanda.moreira@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;(84)98753-9247&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Não consigo enviar, nem responder emails. Apenas recebo.&#60;/p&#62;\n&#60;p&#62;Excel, power point e word, apenas abre, não consigo mexer nele. Mostra um aviso informando que \"Está cópia do Microsoft office não está ativada. &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [10-02-2025 08:41]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;155531041&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;10-02-2025 08:41&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [10-02-2025 08:19]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, &#60;/p&#62;\r\n&#60;p&#62;Me passe o anydesk, por gentileza. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;10-02-2025 08:19&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_83 \n\n Chamado: Descrição\n\n Título : EMAIL / EXCEL / POWER POINT\n Requerentes :  tecnomulti  \n Data de abertura : 10-02-2025 08:16\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - amanda.moreira@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL / EXCEL / POWER POINT\n2) E-MAIL : amanda.moreira@tecnomulti.com\n3) TELEFONE : (84)98753-9247\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nNão consigo enviar, nem responder emails. Apenas recebo.\n\nExcel, power point e word, apenas abre, não consigo mexer nele. Mostra um aviso informando que \"Está cópia do Microsoft office não está ativada. \n \n\n\n[10-02-2025 08:41]\nAutor tecnomulti\nDescrição 155531041\n\n \nData de abertura 10-02-2025 08:41\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[10-02-2025 08:19]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nMe passe o anydesk, por gentileza. \nData de abertura 10-02-2025 08:19\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-83/add_followup.1739187699.137162874@oswintech.ddns.net','','mailing','add_followup'),
(1072,'Ticket',83,4,2,0,0,'2025-02-10 11:41:39','2025-02-10 11:41:39',NULL,'[GLPI #0000083] Novo acompanhamento EMAIL / EXCEL / POWER POINT','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000083] Novo acompanhamento EMAIL / EXCEL / POWER POINT&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_83\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_83&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:EMAIL / EXCEL / POWER POINT &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:10-02-2025 08:16 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- amanda.moreira@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;EMAIL / EXCEL / POWER POINT&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;amanda.moreira@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;(84)98753-9247&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Não consigo enviar, nem responder emails. Apenas recebo.&#60;/p&#62;\n&#60;p&#62;Excel, power point e word, apenas abre, não consigo mexer nele. Mostra um aviso informando que \"Está cópia do Microsoft office não está ativada. &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [10-02-2025 08:41]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;155531041&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;10-02-2025 08:41&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [10-02-2025 08:19]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, &#60;/p&#62;\r\n&#60;p&#62;Me passe o anydesk, por gentileza. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;10-02-2025 08:19&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_83 \n\n Chamado: Descrição\n\n Título : EMAIL / EXCEL / POWER POINT\n Requerentes :  tecnomulti  \n Data de abertura : 10-02-2025 08:16\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - amanda.moreira@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL / EXCEL / POWER POINT\n2) E-MAIL : amanda.moreira@tecnomulti.com\n3) TELEFONE : (84)98753-9247\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nNão consigo enviar, nem responder emails. Apenas recebo.\n\nExcel, power point e word, apenas abre, não consigo mexer nele. Mostra um aviso informando que \"Está cópia do Microsoft office não está ativada. \n \n\n\n[10-02-2025 08:41]\nAutor tecnomulti\nDescrição 155531041\n\n \nData de abertura 10-02-2025 08:41\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[10-02-2025 08:19]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nMe passe o anydesk, por gentileza. \nData de abertura 10-02-2025 08:19\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-83/add_followup.1739187699.1310706756@oswintech.ddns.net','','mailing','add_followup'),
(1073,'Ticket',83,4,2,0,0,'2025-02-10 11:41:39','2025-02-10 11:41:39',NULL,'[GLPI #0000083] Novo acompanhamento EMAIL / EXCEL / POWER POINT','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000083] Novo acompanhamento EMAIL / EXCEL / POWER POINT&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_83\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_83&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:EMAIL / EXCEL / POWER POINT &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:10-02-2025 08:16 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- amanda.moreira@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;EMAIL / EXCEL / POWER POINT&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;amanda.moreira@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;(84)98753-9247&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Não consigo enviar, nem responder emails. Apenas recebo.&#60;/p&#62;\n&#60;p&#62;Excel, power point e word, apenas abre, não consigo mexer nele. Mostra um aviso informando que \"Está cópia do Microsoft office não está ativada. &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [10-02-2025 08:41]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;155531041&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;10-02-2025 08:41&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [10-02-2025 08:19]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, &#60;/p&#62;\r\n&#60;p&#62;Me passe o anydesk, por gentileza. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;10-02-2025 08:19&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_83 \n\n Chamado: Descrição\n\n Título : EMAIL / EXCEL / POWER POINT\n Requerentes :  tecnomulti  \n Data de abertura : 10-02-2025 08:16\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - amanda.moreira@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL / EXCEL / POWER POINT\n2) E-MAIL : amanda.moreira@tecnomulti.com\n3) TELEFONE : (84)98753-9247\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nNão consigo enviar, nem responder emails. Apenas recebo.\n\nExcel, power point e word, apenas abre, não consigo mexer nele. Mostra um aviso informando que \"Está cópia do Microsoft office não está ativada. \n \n\n\n[10-02-2025 08:41]\nAutor tecnomulti\nDescrição 155531041\n\n \nData de abertura 10-02-2025 08:41\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[10-02-2025 08:19]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nMe passe o anydesk, por gentileza. \nData de abertura 10-02-2025 08:19\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-83/add_followup.1739187699.1686001414@oswintech.ddns.net','','mailing','add_followup'),
(1074,'Ticket',83,4,2,0,0,'2025-02-10 11:41:39','2025-02-10 11:41:39',NULL,'[GLPI #0000083] Novo acompanhamento EMAIL / EXCEL / POWER POINT','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000083] Novo acompanhamento EMAIL / EXCEL / POWER POINT&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_83\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_83&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:EMAIL / EXCEL / POWER POINT &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:10-02-2025 08:16 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- amanda.moreira@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;EMAIL / EXCEL / POWER POINT&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;amanda.moreira@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;(84)98753-9247&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Não consigo enviar, nem responder emails. Apenas recebo.&#60;/p&#62;\n&#60;p&#62;Excel, power point e word, apenas abre, não consigo mexer nele. Mostra um aviso informando que \"Está cópia do Microsoft office não está ativada. &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [10-02-2025 08:41]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;155531041&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;10-02-2025 08:41&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [10-02-2025 08:19]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, &#60;/p&#62;\r\n&#60;p&#62;Me passe o anydesk, por gentileza. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;10-02-2025 08:19&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_83 \n\n Chamado: Descrição\n\n Título : EMAIL / EXCEL / POWER POINT\n Requerentes :  tecnomulti  \n Data de abertura : 10-02-2025 08:16\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - amanda.moreira@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL / EXCEL / POWER POINT\n2) E-MAIL : amanda.moreira@tecnomulti.com\n3) TELEFONE : (84)98753-9247\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nNão consigo enviar, nem responder emails. Apenas recebo.\n\nExcel, power point e word, apenas abre, não consigo mexer nele. Mostra um aviso informando que \"Está cópia do Microsoft office não está ativada. \n \n\n\n[10-02-2025 08:41]\nAutor tecnomulti\nDescrição 155531041\n\n \nData de abertura 10-02-2025 08:41\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[10-02-2025 08:19]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nMe passe o anydesk, por gentileza. \nData de abertura 10-02-2025 08:19\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-83/add_followup.1739187699.509924347@oswintech.ddns.net','','mailing','add_followup'),
(1075,'Ticket',83,4,2,1,0,'2025-02-10 11:46:47','2025-02-10 11:46:47','2025-02-11 12:00:48','[GLPI #0000083] Novo acompanhamento EMAIL / EXCEL / POWER POINT',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_83 \n\n Chamado: Descrição\n\n Título : EMAIL / EXCEL / POWER POINT\n Requerentes :  tecnomulti  \n Data de abertura : 10-02-2025 08:16\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - amanda.moreira@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL / EXCEL / POWER POINT\n2) E-MAIL : amanda.moreira@tecnomulti.com\n3) TELEFONE : (84)98753-9247\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nNão consigo enviar, nem responder emails. Apenas recebo.\n\nExcel, power point e word, apenas abre, não consigo mexer nele. Mostra um aviso informando que \"Está cópia do Microsoft office não está ativada. \n \n\n\n[10-02-2025 08:46]\nAutor Alexsandro Cruz\nDescrição Problema solucionado. \nData de abertura 10-02-2025 08:46\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[10-02-2025 08:41]\nAutor tecnomulti\nDescrição 155531041\n\n \nData de abertura 10-02-2025 08:41\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[10-02-2025 08:19]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nMe passe o anydesk, por gentileza. \nData de abertura 10-02-2025 08:19\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1076,'Ticket',83,4,2,1,0,'2025-02-10 11:46:47','2025-02-10 11:46:47','2025-02-10 11:46:53','[GLPI #0000083] Novo acompanhamento EMAIL / EXCEL / POWER POINT',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_83 \n\n Chamado: Descrição\n\n Título : EMAIL / EXCEL / POWER POINT\n Requerentes :  tecnomulti  \n Data de abertura : 10-02-2025 08:16\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - amanda.moreira@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL / EXCEL / POWER POINT\n2) E-MAIL : amanda.moreira@tecnomulti.com\n3) TELEFONE : (84)98753-9247\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nNão consigo enviar, nem responder emails. Apenas recebo.\n\nExcel, power point e word, apenas abre, não consigo mexer nele. Mostra um aviso informando que \"Está cópia do Microsoft office não está ativada. \n \n\n\n[10-02-2025 08:46]\nAutor Alexsandro Cruz\nDescrição Problema solucionado. \nData de abertura 10-02-2025 08:46\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[10-02-2025 08:41]\nAutor tecnomulti\nDescrição 155531041\n\n \nData de abertura 10-02-2025 08:41\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[10-02-2025 08:19]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nMe passe o anydesk, por gentileza. \nData de abertura 10-02-2025 08:19\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1077,'Ticket',83,4,2,0,0,'2025-02-10 11:46:47','2025-02-10 11:46:47',NULL,'[GLPI #0000083] Novo acompanhamento EMAIL / EXCEL / POWER POINT',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_83 \n\n Chamado: Descrição\n\n Título : EMAIL / EXCEL / POWER POINT\n Requerentes :  tecnomulti  \n Data de abertura : 10-02-2025 08:16\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - amanda.moreira@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL / EXCEL / POWER POINT\n2) E-MAIL : amanda.moreira@tecnomulti.com\n3) TELEFONE : (84)98753-9247\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nNão consigo enviar, nem responder emails. Apenas recebo.\n\nExcel, power point e word, apenas abre, não consigo mexer nele. Mostra um aviso informando que \"Está cópia do Microsoft office não está ativada. \n \n\n\n[10-02-2025 08:46]\nAutor Alexsandro Cruz\nDescrição Problema solucionado. \nData de abertura 10-02-2025 08:46\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[10-02-2025 08:41]\nAutor tecnomulti\nDescrição 155531041\n\n \nData de abertura 10-02-2025 08:41\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[10-02-2025 08:19]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nMe passe o anydesk, por gentileza. \nData de abertura 10-02-2025 08:19\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1078,'Ticket',83,4,2,1,0,'2025-02-10 11:46:47','2025-02-10 11:46:47','2025-02-10 15:22:25','[GLPI #0000083] Novo acompanhamento EMAIL / EXCEL / POWER POINT',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_83 \n\n Chamado: Descrição\n\n Título : EMAIL / EXCEL / POWER POINT\n Requerentes :  tecnomulti  \n Data de abertura : 10-02-2025 08:16\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - amanda.moreira@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL / EXCEL / POWER POINT\n2) E-MAIL : amanda.moreira@tecnomulti.com\n3) TELEFONE : (84)98753-9247\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nNão consigo enviar, nem responder emails. Apenas recebo.\n\nExcel, power point e word, apenas abre, não consigo mexer nele. Mostra um aviso informando que \"Está cópia do Microsoft office não está ativada. \n \n\n\n[10-02-2025 08:46]\nAutor Alexsandro Cruz\nDescrição Problema solucionado. \nData de abertura 10-02-2025 08:46\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[10-02-2025 08:41]\nAutor tecnomulti\nDescrição 155531041\n\n \nData de abertura 10-02-2025 08:41\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[10-02-2025 08:19]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nMe passe o anydesk, por gentileza. \nData de abertura 10-02-2025 08:19\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1079,'Ticket',83,4,2,0,0,'2025-02-10 11:46:47','2025-02-10 11:46:47',NULL,'[GLPI #0000083] Novo acompanhamento EMAIL / EXCEL / POWER POINT','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000083] Novo acompanhamento EMAIL / EXCEL / POWER POINT&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_83\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_83&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:EMAIL / EXCEL / POWER POINT &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:10-02-2025 08:16 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- amanda.moreira@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;EMAIL / EXCEL / POWER POINT&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;amanda.moreira@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;(84)98753-9247&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Não consigo enviar, nem responder emails. Apenas recebo.&#60;/p&#62;\n&#60;p&#62;Excel, power point e word, apenas abre, não consigo mexer nele. Mostra um aviso informando que \"Está cópia do Microsoft office não está ativada. &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [10-02-2025 08:46]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Problema solucionado. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;10-02-2025 08:46&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [10-02-2025 08:41]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;155531041&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;10-02-2025 08:41&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [10-02-2025 08:19]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, &#60;/p&#62;\r\n&#60;p&#62;Me passe o anydesk, por gentileza. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;10-02-2025 08:19&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 3&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_83 \n\n Chamado: Descrição\n\n Título : EMAIL / EXCEL / POWER POINT\n Requerentes :  tecnomulti  \n Data de abertura : 10-02-2025 08:16\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - amanda.moreira@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL / EXCEL / POWER POINT\n2) E-MAIL : amanda.moreira@tecnomulti.com\n3) TELEFONE : (84)98753-9247\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nNão consigo enviar, nem responder emails. Apenas recebo.\n\nExcel, power point e word, apenas abre, não consigo mexer nele. Mostra um aviso informando que \"Está cópia do Microsoft office não está ativada. \n \n\n\n[10-02-2025 08:46]\nAutor Alexsandro Cruz\nDescrição Problema solucionado. \nData de abertura 10-02-2025 08:46\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[10-02-2025 08:41]\nAutor tecnomulti\nDescrição 155531041\n\n \nData de abertura 10-02-2025 08:41\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[10-02-2025 08:19]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nMe passe o anydesk, por gentileza. \nData de abertura 10-02-2025 08:19\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-83/add_followup.1739188008.698067182@oswintech.ddns.net','','mailing','add_followup'),
(1080,'Ticket',83,4,2,0,0,'2025-02-10 11:46:47','2025-02-10 11:46:47',NULL,'[GLPI #0000083] Novo acompanhamento EMAIL / EXCEL / POWER POINT','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000083] Novo acompanhamento EMAIL / EXCEL / POWER POINT&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_83\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_83&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:EMAIL / EXCEL / POWER POINT &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:10-02-2025 08:16 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- amanda.moreira@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;EMAIL / EXCEL / POWER POINT&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;amanda.moreira@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;(84)98753-9247&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Não consigo enviar, nem responder emails. Apenas recebo.&#60;/p&#62;\n&#60;p&#62;Excel, power point e word, apenas abre, não consigo mexer nele. Mostra um aviso informando que \"Está cópia do Microsoft office não está ativada. &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [10-02-2025 08:46]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Problema solucionado. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;10-02-2025 08:46&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [10-02-2025 08:41]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;155531041&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;10-02-2025 08:41&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [10-02-2025 08:19]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, &#60;/p&#62;\r\n&#60;p&#62;Me passe o anydesk, por gentileza. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;10-02-2025 08:19&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 3&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_83 \n\n Chamado: Descrição\n\n Título : EMAIL / EXCEL / POWER POINT\n Requerentes :  tecnomulti  \n Data de abertura : 10-02-2025 08:16\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - amanda.moreira@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL / EXCEL / POWER POINT\n2) E-MAIL : amanda.moreira@tecnomulti.com\n3) TELEFONE : (84)98753-9247\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nNão consigo enviar, nem responder emails. Apenas recebo.\n\nExcel, power point e word, apenas abre, não consigo mexer nele. Mostra um aviso informando que \"Está cópia do Microsoft office não está ativada. \n \n\n\n[10-02-2025 08:46]\nAutor Alexsandro Cruz\nDescrição Problema solucionado. \nData de abertura 10-02-2025 08:46\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[10-02-2025 08:41]\nAutor tecnomulti\nDescrição 155531041\n\n \nData de abertura 10-02-2025 08:41\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[10-02-2025 08:19]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nMe passe o anydesk, por gentileza. \nData de abertura 10-02-2025 08:19\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-83/add_followup.1739188008.1683278414@oswintech.ddns.net','','mailing','add_followup'),
(1081,'Ticket',83,4,2,0,0,'2025-02-10 11:46:47','2025-02-10 11:46:47',NULL,'[GLPI #0000083] Novo acompanhamento EMAIL / EXCEL / POWER POINT','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000083] Novo acompanhamento EMAIL / EXCEL / POWER POINT&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_83\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_83&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:EMAIL / EXCEL / POWER POINT &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:10-02-2025 08:16 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- amanda.moreira@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;EMAIL / EXCEL / POWER POINT&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;amanda.moreira@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;(84)98753-9247&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Não consigo enviar, nem responder emails. Apenas recebo.&#60;/p&#62;\n&#60;p&#62;Excel, power point e word, apenas abre, não consigo mexer nele. Mostra um aviso informando que \"Está cópia do Microsoft office não está ativada. &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [10-02-2025 08:46]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Problema solucionado. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;10-02-2025 08:46&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [10-02-2025 08:41]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;155531041&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;10-02-2025 08:41&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [10-02-2025 08:19]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, &#60;/p&#62;\r\n&#60;p&#62;Me passe o anydesk, por gentileza. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;10-02-2025 08:19&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 3&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_83 \n\n Chamado: Descrição\n\n Título : EMAIL / EXCEL / POWER POINT\n Requerentes :  tecnomulti  \n Data de abertura : 10-02-2025 08:16\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - amanda.moreira@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL / EXCEL / POWER POINT\n2) E-MAIL : amanda.moreira@tecnomulti.com\n3) TELEFONE : (84)98753-9247\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nNão consigo enviar, nem responder emails. Apenas recebo.\n\nExcel, power point e word, apenas abre, não consigo mexer nele. Mostra um aviso informando que \"Está cópia do Microsoft office não está ativada. \n \n\n\n[10-02-2025 08:46]\nAutor Alexsandro Cruz\nDescrição Problema solucionado. \nData de abertura 10-02-2025 08:46\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[10-02-2025 08:41]\nAutor tecnomulti\nDescrição 155531041\n\n \nData de abertura 10-02-2025 08:41\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[10-02-2025 08:19]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nMe passe o anydesk, por gentileza. \nData de abertura 10-02-2025 08:19\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-83/add_followup.1739188008.923835424@oswintech.ddns.net','','mailing','add_followup'),
(1082,'Ticket',83,4,2,0,0,'2025-02-10 11:46:47','2025-02-10 11:46:47',NULL,'[GLPI #0000083] Novo acompanhamento EMAIL / EXCEL / POWER POINT','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000083] Novo acompanhamento EMAIL / EXCEL / POWER POINT&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_83\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_83&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:EMAIL / EXCEL / POWER POINT &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:10-02-2025 08:16 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- amanda.moreira@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;EMAIL / EXCEL / POWER POINT&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;amanda.moreira@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;(84)98753-9247&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Não consigo enviar, nem responder emails. Apenas recebo.&#60;/p&#62;\n&#60;p&#62;Excel, power point e word, apenas abre, não consigo mexer nele. Mostra um aviso informando que \"Está cópia do Microsoft office não está ativada. &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [10-02-2025 08:46]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Problema solucionado. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;10-02-2025 08:46&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [10-02-2025 08:41]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;155531041&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;10-02-2025 08:41&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [10-02-2025 08:19]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, &#60;/p&#62;\r\n&#60;p&#62;Me passe o anydesk, por gentileza. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;10-02-2025 08:19&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 3&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_83 \n\n Chamado: Descrição\n\n Título : EMAIL / EXCEL / POWER POINT\n Requerentes :  tecnomulti  \n Data de abertura : 10-02-2025 08:16\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - amanda.moreira@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL / EXCEL / POWER POINT\n2) E-MAIL : amanda.moreira@tecnomulti.com\n3) TELEFONE : (84)98753-9247\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nNão consigo enviar, nem responder emails. Apenas recebo.\n\nExcel, power point e word, apenas abre, não consigo mexer nele. Mostra um aviso informando que \"Está cópia do Microsoft office não está ativada. \n \n\n\n[10-02-2025 08:46]\nAutor Alexsandro Cruz\nDescrição Problema solucionado. \nData de abertura 10-02-2025 08:46\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[10-02-2025 08:41]\nAutor tecnomulti\nDescrição 155531041\n\n \nData de abertura 10-02-2025 08:41\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[10-02-2025 08:19]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nMe passe o anydesk, por gentileza. \nData de abertura 10-02-2025 08:19\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-83/add_followup.1739188008.1443256407@oswintech.ddns.net','','mailing','add_followup'),
(1083,'Ticket',83,4,2,0,0,'2025-02-10 11:46:54','2025-02-10 11:46:54',NULL,'[GLPI #0000083] Encerramento do chamado EMAIL / EXCEL / POWER POINT','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000083] Encerramento do chamado EMAIL / EXCEL / POWER POINT&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_83\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_83&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:EMAIL / EXCEL / POWER POINT &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:10-02-2025 08:16 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:10-02-2025 08:46 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- amanda.moreira@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;EMAIL / EXCEL / POWER POINT&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;amanda.moreira@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;(84)98753-9247&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Não consigo enviar, nem responder emails. Apenas recebo.&#60;/p&#62;\n&#60;p&#62;Excel, power point e word, apenas abre, não consigo mexer nele. Mostra um aviso informando que \"Está cópia do Microsoft office não está ativada. &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 10-02-2025 08:46&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [10-02-2025 08:46]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Problema solucionado. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;10-02-2025 08:46&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [10-02-2025 08:41]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;155531041&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;10-02-2025 08:41&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [10-02-2025 08:19]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, &#60;/p&#62;\r\n&#60;p&#62;Me passe o anydesk, por gentileza. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;10-02-2025 08:19&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 3&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_83 \n\n Chamado: Descrição\n\n Título : EMAIL / EXCEL / POWER POINT\n Requerentes :  tecnomulti  \n Data de abertura : 10-02-2025 08:16\n Data de fechamento : 10-02-2025 08:46\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - amanda.moreira@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL / EXCEL / POWER POINT\n2) E-MAIL : amanda.moreira@tecnomulti.com\n3) TELEFONE : (84)98753-9247\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nNão consigo enviar, nem responder emails. Apenas recebo.\n\nExcel, power point e word, apenas abre, não consigo mexer nele. Mostra um aviso informando que \"Está cópia do Microsoft office não está ativada. \n \n\n Data da solução : 10-02-2025 08:46\n Tipo de solução : \n Solução : \n \n\n\n[10-02-2025 08:46]\nAutor Alexsandro Cruz\nDescrição Problema solucionado. \nData de abertura 10-02-2025 08:46\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[10-02-2025 08:41]\nAutor tecnomulti\nDescrição 155531041\n\n \nData de abertura 10-02-2025 08:41\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[10-02-2025 08:19]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nMe passe o anydesk, por gentileza. \nData de abertura 10-02-2025 08:19\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-83/closed.1739188014.1367773781@oswintech.ddns.net','','mailing','closed'),
(1084,'Ticket',83,4,2,0,0,'2025-02-10 11:46:54','2025-02-10 11:46:54',NULL,'[GLPI #0000083] Encerramento do chamado EMAIL / EXCEL / POWER POINT','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000083] Encerramento do chamado EMAIL / EXCEL / POWER POINT&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_83\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_83&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:EMAIL / EXCEL / POWER POINT &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:10-02-2025 08:16 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:10-02-2025 08:46 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- amanda.moreira@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;EMAIL / EXCEL / POWER POINT&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;amanda.moreira@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;(84)98753-9247&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Não consigo enviar, nem responder emails. Apenas recebo.&#60;/p&#62;\n&#60;p&#62;Excel, power point e word, apenas abre, não consigo mexer nele. Mostra um aviso informando que \"Está cópia do Microsoft office não está ativada. &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 10-02-2025 08:46&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [10-02-2025 08:46]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Problema solucionado. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;10-02-2025 08:46&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [10-02-2025 08:41]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;155531041&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;10-02-2025 08:41&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [10-02-2025 08:19]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, &#60;/p&#62;\r\n&#60;p&#62;Me passe o anydesk, por gentileza. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;10-02-2025 08:19&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 3&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_83 \n\n Chamado: Descrição\n\n Título : EMAIL / EXCEL / POWER POINT\n Requerentes :  tecnomulti  \n Data de abertura : 10-02-2025 08:16\n Data de fechamento : 10-02-2025 08:46\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - amanda.moreira@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : EMAIL / EXCEL / POWER POINT\n2) E-MAIL : amanda.moreira@tecnomulti.com\n3) TELEFONE : (84)98753-9247\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nNão consigo enviar, nem responder emails. Apenas recebo.\n\nExcel, power point e word, apenas abre, não consigo mexer nele. Mostra um aviso informando que \"Está cópia do Microsoft office não está ativada. \n \n\n Data da solução : 10-02-2025 08:46\n Tipo de solução : \n Solução : \n \n\n\n[10-02-2025 08:46]\nAutor Alexsandro Cruz\nDescrição Problema solucionado. \nData de abertura 10-02-2025 08:46\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[10-02-2025 08:41]\nAutor tecnomulti\nDescrição 155531041\n\n \nData de abertura 10-02-2025 08:41\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[10-02-2025 08:19]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nMe passe o anydesk, por gentileza. \nData de abertura 10-02-2025 08:19\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-83/closed.1739188014.1922930017@oswintech.ddns.net','','mailing','closed'),
(1085,'Ticket',82,4,2,1,0,'2025-02-10 11:47:57','2025-02-10 11:47:57','2025-02-11 12:00:48','[GLPI #0000082] Novo acompanhamento PASTA FROTA',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_82 \n\n Chamado: Descrição\n\n Título : PASTA FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 07-02-2025 11:16\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - fabio.jackson@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA FROTA\n2) E-MAIL : fabio.jackson@tecnomulti.com\n3) TELEFONE : 83986500039\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nfavor  configurar acesso para Pasta Frotas \n \n\n\n[10-02-2025 08:47]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nMe passar o anydesk para acessar e configurar.  Entrar em contato via whatsapp para facilitar o atendimento. \nData de abertura 10-02-2025 08:47\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1086,'Ticket',82,4,2,1,0,'2025-02-10 11:47:57','2025-02-10 11:47:57','2025-02-10 11:48:03','[GLPI #0000082] Novo acompanhamento PASTA FROTA',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_82 \n\n Chamado: Descrição\n\n Título : PASTA FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 07-02-2025 11:16\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - fabio.jackson@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA FROTA\n2) E-MAIL : fabio.jackson@tecnomulti.com\n3) TELEFONE : 83986500039\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nfavor  configurar acesso para Pasta Frotas \n \n\n\n[10-02-2025 08:47]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nMe passar o anydesk para acessar e configurar.  Entrar em contato via whatsapp para facilitar o atendimento. \nData de abertura 10-02-2025 08:47\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1087,'Ticket',82,4,2,0,0,'2025-02-10 11:47:57','2025-02-10 11:47:57',NULL,'[GLPI #0000082] Novo acompanhamento PASTA FROTA',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_82 \n\n Chamado: Descrição\n\n Título : PASTA FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 07-02-2025 11:16\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - fabio.jackson@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA FROTA\n2) E-MAIL : fabio.jackson@tecnomulti.com\n3) TELEFONE : 83986500039\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nfavor  configurar acesso para Pasta Frotas \n \n\n\n[10-02-2025 08:47]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nMe passar o anydesk para acessar e configurar.  Entrar em contato via whatsapp para facilitar o atendimento. \nData de abertura 10-02-2025 08:47\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1088,'Ticket',82,4,2,1,0,'2025-02-10 11:47:57','2025-02-10 11:47:57','2025-02-10 15:22:25','[GLPI #0000082] Novo acompanhamento PASTA FROTA',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_82 \n\n Chamado: Descrição\n\n Título : PASTA FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 07-02-2025 11:16\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - fabio.jackson@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA FROTA\n2) E-MAIL : fabio.jackson@tecnomulti.com\n3) TELEFONE : 83986500039\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nfavor  configurar acesso para Pasta Frotas \n \n\n\n[10-02-2025 08:47]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nMe passar o anydesk para acessar e configurar.  Entrar em contato via whatsapp para facilitar o atendimento. \nData de abertura 10-02-2025 08:47\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1089,'Ticket',82,4,2,0,0,'2025-02-10 11:47:57','2025-02-10 11:47:57',NULL,'[GLPI #0000082] Novo acompanhamento PASTA FROTA','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000082] Novo acompanhamento PASTA FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_82\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_82&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:07-02-2025 11:16 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- fabio.jackson@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;fabio.jackson@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83986500039&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;favor  configurar acesso para Pasta Frotas &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [10-02-2025 08:47]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, &#60;/p&#62;\r\n&#60;p&#62;Me passar o anydesk para acessar e configurar.  Entrar em contato via whatsapp para facilitar o atendimento. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;10-02-2025 08:47&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_82 \n\n Chamado: Descrição\n\n Título : PASTA FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 07-02-2025 11:16\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - fabio.jackson@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA FROTA\n2) E-MAIL : fabio.jackson@tecnomulti.com\n3) TELEFONE : 83986500039\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nfavor  configurar acesso para Pasta Frotas \n \n\n\n[10-02-2025 08:47]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nMe passar o anydesk para acessar e configurar.  Entrar em contato via whatsapp para facilitar o atendimento. \nData de abertura 10-02-2025 08:47\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-82/add_followup.1739188077.2110514270@oswintech.ddns.net','','mailing','add_followup'),
(1090,'Ticket',82,4,2,0,0,'2025-02-10 11:47:57','2025-02-10 11:47:57',NULL,'[GLPI #0000082] Novo acompanhamento PASTA FROTA','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000082] Novo acompanhamento PASTA FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_82\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_82&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:07-02-2025 11:16 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- fabio.jackson@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;fabio.jackson@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83986500039&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;favor  configurar acesso para Pasta Frotas &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [10-02-2025 08:47]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, &#60;/p&#62;\r\n&#60;p&#62;Me passar o anydesk para acessar e configurar.  Entrar em contato via whatsapp para facilitar o atendimento. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;10-02-2025 08:47&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_82 \n\n Chamado: Descrição\n\n Título : PASTA FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 07-02-2025 11:16\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - fabio.jackson@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA FROTA\n2) E-MAIL : fabio.jackson@tecnomulti.com\n3) TELEFONE : 83986500039\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nfavor  configurar acesso para Pasta Frotas \n \n\n\n[10-02-2025 08:47]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nMe passar o anydesk para acessar e configurar.  Entrar em contato via whatsapp para facilitar o atendimento. \nData de abertura 10-02-2025 08:47\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-82/add_followup.1739188077.1201345068@oswintech.ddns.net','','mailing','add_followup'),
(1091,'Ticket',82,4,2,0,0,'2025-02-10 11:47:57','2025-02-10 11:47:57',NULL,'[GLPI #0000082] Novo acompanhamento PASTA FROTA','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000082] Novo acompanhamento PASTA FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_82\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_82&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:07-02-2025 11:16 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- fabio.jackson@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;fabio.jackson@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83986500039&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;favor  configurar acesso para Pasta Frotas &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [10-02-2025 08:47]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, &#60;/p&#62;\r\n&#60;p&#62;Me passar o anydesk para acessar e configurar.  Entrar em contato via whatsapp para facilitar o atendimento. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;10-02-2025 08:47&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_82 \n\n Chamado: Descrição\n\n Título : PASTA FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 07-02-2025 11:16\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - fabio.jackson@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA FROTA\n2) E-MAIL : fabio.jackson@tecnomulti.com\n3) TELEFONE : 83986500039\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nfavor  configurar acesso para Pasta Frotas \n \n\n\n[10-02-2025 08:47]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nMe passar o anydesk para acessar e configurar.  Entrar em contato via whatsapp para facilitar o atendimento. \nData de abertura 10-02-2025 08:47\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-82/add_followup.1739188078.1860144532@oswintech.ddns.net','','mailing','add_followup'),
(1092,'Ticket',82,4,2,0,0,'2025-02-10 11:47:57','2025-02-10 11:47:57',NULL,'[GLPI #0000082] Novo acompanhamento PASTA FROTA','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000082] Novo acompanhamento PASTA FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_82\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_82&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:07-02-2025 11:16 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- fabio.jackson@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;fabio.jackson@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83986500039&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;favor  configurar acesso para Pasta Frotas &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [10-02-2025 08:47]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, &#60;/p&#62;\r\n&#60;p&#62;Me passar o anydesk para acessar e configurar.  Entrar em contato via whatsapp para facilitar o atendimento. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;10-02-2025 08:47&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_82 \n\n Chamado: Descrição\n\n Título : PASTA FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 07-02-2025 11:16\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - fabio.jackson@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA FROTA\n2) E-MAIL : fabio.jackson@tecnomulti.com\n3) TELEFONE : 83986500039\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nfavor  configurar acesso para Pasta Frotas \n \n\n\n[10-02-2025 08:47]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nMe passar o anydesk para acessar e configurar.  Entrar em contato via whatsapp para facilitar o atendimento. \nData de abertura 10-02-2025 08:47\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-82/add_followup.1739188078.1281043666@oswintech.ddns.net','','mailing','add_followup'),
(1093,'Ticket',82,4,2,1,0,'2025-02-10 11:48:02','2025-02-10 11:48:02','2025-02-11 12:00:48','[GLPI #0000082] Atualização de um chamado PASTA FROTA',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_82 \n\n Chamado: Descrição\n\n Título : PASTA FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 07-02-2025 11:16\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - fabio.jackson@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA FROTA\n2) E-MAIL : fabio.jackson@tecnomulti.com\n3) TELEFONE : 83986500039\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nfavor  configurar acesso para Pasta Frotas \n \n\n\n[10-02-2025 08:47]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nMe passar o anydesk para acessar e configurar.  Entrar em contato via whatsapp para facilitar o atendimento. \nData de abertura 10-02-2025 08:47\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','update'),
(1094,'Ticket',82,4,2,0,0,'2025-02-10 11:48:02','2025-02-10 11:48:02',NULL,'[GLPI #0000082] Atualização de um chamado PASTA FROTA','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000082] Atualiza&#38;ccedil;&#38;atilde;o de um chamado PASTA FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_82\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_82&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:07-02-2025 11:16 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- fabio.jackson@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;fabio.jackson@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83986500039&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;favor  configurar acesso para Pasta Frotas &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [10-02-2025 08:47]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, &#60;/p&#62;\r\n&#60;p&#62;Me passar o anydesk para acessar e configurar.  Entrar em contato via whatsapp para facilitar o atendimento. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;10-02-2025 08:47&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_82 \n\n Chamado: Descrição\n\n Título : PASTA FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 07-02-2025 11:16\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - fabio.jackson@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA FROTA\n2) E-MAIL : fabio.jackson@tecnomulti.com\n3) TELEFONE : 83986500039\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nfavor  configurar acesso para Pasta Frotas \n \n\n\n[10-02-2025 08:47]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nMe passar o anydesk para acessar e configurar.  Entrar em contato via whatsapp para facilitar o atendimento. \nData de abertura 10-02-2025 08:47\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-82/update.1739188082.274545823@oswintech.ddns.net','','mailing','update'),
(1095,'Ticket',82,4,2,0,0,'2025-02-10 11:48:02','2025-02-10 11:48:02',NULL,'[GLPI #0000082] Atualização de um chamado PASTA FROTA','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000082] Atualiza&#38;ccedil;&#38;atilde;o de um chamado PASTA FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_82\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_82&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:07-02-2025 11:16 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- fabio.jackson@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;fabio.jackson@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83986500039&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;favor  configurar acesso para Pasta Frotas &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [10-02-2025 08:47]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, &#60;/p&#62;\r\n&#60;p&#62;Me passar o anydesk para acessar e configurar.  Entrar em contato via whatsapp para facilitar o atendimento. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;10-02-2025 08:47&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_82 \n\n Chamado: Descrição\n\n Título : PASTA FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 07-02-2025 11:16\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - fabio.jackson@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA FROTA\n2) E-MAIL : fabio.jackson@tecnomulti.com\n3) TELEFONE : 83986500039\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nfavor  configurar acesso para Pasta Frotas \n \n\n\n[10-02-2025 08:47]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nMe passar o anydesk para acessar e configurar.  Entrar em contato via whatsapp para facilitar o atendimento. \nData de abertura 10-02-2025 08:47\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-82/update.1739188082.1795776760@oswintech.ddns.net','','mailing','update'),
(1096,'PluginFormcreatorFormAnswer',48,29,2,0,0,'2025-02-11 12:02:54','2025-02-11 12:02:54',NULL,'[GLPI] Sua requisição foi salva','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI] Sua requisi&#38;ccedil;&#38;atilde;o foi salva&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;p&#62;Olá,&#60;br /&#62;Sua requisição do GLPI foi salva com sucesso com o número 48 e transmitido para a equipe de helpdesk.&#60;br /&#62;Você pode ver suas respostas no seguinte link:&#60;br /&#62;https://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=48&#60;/p&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;','Olá,\nSua requisição do GLPI foi salva com sucesso com o número 48 e transmitido para a equipe de helpdesk.\nVocê pode ver suas respostas no seguinte link:\nhttps://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=48\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-PluginFormcreatorFormAnswer-48/plugin_formcreator_form_created.1739275374.811198444@oswintech.ddns.net','','mailing','plugin_formcreator_form_created'),
(1097,'Ticket',84,4,2,1,0,'2025-02-11 12:02:54','2025-02-11 12:02:54','2025-02-11 12:03:01','[GLPI #0000084] Novo chamado sistema sap não fica com o acesso',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_84 \n\n Chamado: Descrição\n\n Título : sistema sap não fica com o acesso\n Requerentes :  tecnomulti  \n Data de abertura : 11-02-2025 09:02\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : sistema sap não fica com o acesso\n2) E-MAIL : lorenalarissa88@gmail.com\n3) TELEFONE : 81988648578\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nnão consigo usar o sistema funciona em outro e no  meu a senha e login não fica.\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(1098,'Ticket',84,4,2,1,0,'2025-02-11 12:02:54','2025-02-11 12:02:54','2025-02-11 12:03:02','[GLPI #0000084] Novo chamado sistema sap não fica com o acesso',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_84 \n\n Chamado: Descrição\n\n Título : sistema sap não fica com o acesso\n Requerentes :  tecnomulti  \n Data de abertura : 11-02-2025 09:02\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : sistema sap não fica com o acesso\n2) E-MAIL : lorenalarissa88@gmail.com\n3) TELEFONE : 81988648578\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nnão consigo usar o sistema funciona em outro e no  meu a senha e login não fica.\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(1099,'Ticket',84,4,2,0,0,'2025-02-11 12:02:54','2025-02-11 12:02:54',NULL,'[GLPI #0000084] Novo chamado sistema sap não fica com o acesso',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_84 \n\n Chamado: Descrição\n\n Título : sistema sap não fica com o acesso\n Requerentes :  tecnomulti  \n Data de abertura : 11-02-2025 09:02\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : sistema sap não fica com o acesso\n2) E-MAIL : lorenalarissa88@gmail.com\n3) TELEFONE : 81988648578\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nnão consigo usar o sistema funciona em outro e no  meu a senha e login não fica.\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(1100,'Ticket',84,4,2,1,0,'2025-02-11 12:02:54','2025-02-11 12:02:54','2025-02-12 17:41:55','[GLPI #0000084] Novo chamado sistema sap não fica com o acesso',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_84 \n\n Chamado: Descrição\n\n Título : sistema sap não fica com o acesso\n Requerentes :  tecnomulti  \n Data de abertura : 11-02-2025 09:02\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : sistema sap não fica com o acesso\n2) E-MAIL : lorenalarissa88@gmail.com\n3) TELEFONE : 81988648578\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nnão consigo usar o sistema funciona em outro e no  meu a senha e login não fica.\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(1101,'Ticket',84,4,2,0,0,'2025-02-11 12:02:54','2025-02-11 12:02:54',NULL,'[GLPI #0000084] Novo chamado sistema sap não fica com o acesso','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000084] Novo chamado sistema sap n&#38;atilde;o fica com o acesso&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_84\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_84&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:sistema sap n&#38;atilde;o fica com o acesso &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:11-02-2025 09:02 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;sistema sap não fica com o acesso&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;lorenalarissa88@gmail.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81988648578&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;não consigo usar o sistema funciona em outro e no  meu a senha e login não fica.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_84 \n\n Chamado: Descrição\n\n Título : sistema sap não fica com o acesso\n Requerentes :  tecnomulti  \n Data de abertura : 11-02-2025 09:02\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : sistema sap não fica com o acesso\n2) E-MAIL : lorenalarissa88@gmail.com\n3) TELEFONE : 81988648578\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nnão consigo usar o sistema funciona em outro e no  meu a senha e login não fica.\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-84/new@oswintech.ddns.net','','mailing','new'),
(1102,'Ticket',84,4,2,0,0,'2025-02-11 12:02:54','2025-02-11 12:02:54',NULL,'[GLPI #0000084] Novo chamado sistema sap não fica com o acesso','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000084] Novo chamado sistema sap n&#38;atilde;o fica com o acesso&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_84\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_84&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:sistema sap n&#38;atilde;o fica com o acesso &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:11-02-2025 09:02 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;sistema sap não fica com o acesso&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;lorenalarissa88@gmail.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81988648578&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;não consigo usar o sistema funciona em outro e no  meu a senha e login não fica.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_84 \n\n Chamado: Descrição\n\n Título : sistema sap não fica com o acesso\n Requerentes :  tecnomulti  \n Data de abertura : 11-02-2025 09:02\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : sistema sap não fica com o acesso\n2) E-MAIL : lorenalarissa88@gmail.com\n3) TELEFONE : 81988648578\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nnão consigo usar o sistema funciona em outro e no  meu a senha e login não fica.\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-84/new@oswintech.ddns.net','','mailing','new'),
(1103,'Ticket',84,4,2,0,0,'2025-02-11 12:02:54','2025-02-11 12:02:54',NULL,'[GLPI #0000084] Novo chamado sistema sap não fica com o acesso','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000084] Novo chamado sistema sap n&#38;atilde;o fica com o acesso&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_84\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_84&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:sistema sap n&#38;atilde;o fica com o acesso &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:11-02-2025 09:02 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;sistema sap não fica com o acesso&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;lorenalarissa88@gmail.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81988648578&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;não consigo usar o sistema funciona em outro e no  meu a senha e login não fica.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_84 \n\n Chamado: Descrição\n\n Título : sistema sap não fica com o acesso\n Requerentes :  tecnomulti  \n Data de abertura : 11-02-2025 09:02\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : sistema sap não fica com o acesso\n2) E-MAIL : lorenalarissa88@gmail.com\n3) TELEFONE : 81988648578\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nnão consigo usar o sistema funciona em outro e no  meu a senha e login não fica.\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-84/new@oswintech.ddns.net','','mailing','new'),
(1104,'Ticket',84,4,2,0,0,'2025-02-11 12:02:54','2025-02-11 12:02:54',NULL,'[GLPI #0000084] Novo chamado sistema sap não fica com o acesso','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000084] Novo chamado sistema sap n&#38;atilde;o fica com o acesso&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_84\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_84&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:sistema sap n&#38;atilde;o fica com o acesso &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:11-02-2025 09:02 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;sistema sap não fica com o acesso&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;lorenalarissa88@gmail.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81988648578&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;não consigo usar o sistema funciona em outro e no  meu a senha e login não fica.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_84 \n\n Chamado: Descrição\n\n Título : sistema sap não fica com o acesso\n Requerentes :  tecnomulti  \n Data de abertura : 11-02-2025 09:02\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : sistema sap não fica com o acesso\n2) E-MAIL : lorenalarissa88@gmail.com\n3) TELEFONE : 81988648578\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nnão consigo usar o sistema funciona em outro e no  meu a senha e login não fica.\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-84/new@oswintech.ddns.net','','mailing','new'),
(1105,'Ticket',82,4,2,1,0,'2025-02-11 12:21:28','2025-02-11 12:21:28','2025-02-12 11:54:02','[GLPI #0000082] Novo acompanhamento PASTA FROTA',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_82 \n\n Chamado: Descrição\n\n Título : PASTA FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 07-02-2025 11:16\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - fabio.jackson@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA FROTA\n2) E-MAIL : fabio.jackson@tecnomulti.com\n3) TELEFONE : 83986500039\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nfavor  configurar acesso para Pasta Frotas \n \n\n\n[11-02-2025 09:21]\nAutor Alexsandro Cruz\nDescrição Configuração concluída e testada.\nData de abertura 11-02-2025 09:21\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[10-02-2025 08:47]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nMe passar o anydesk para acessar e configurar.  Entrar em contato via whatsapp para facilitar o atendimento. \nData de abertura 10-02-2025 08:47\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1106,'Ticket',82,4,2,1,0,'2025-02-11 12:21:28','2025-02-11 12:21:28','2025-02-11 12:21:34','[GLPI #0000082] Novo acompanhamento PASTA FROTA',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_82 \n\n Chamado: Descrição\n\n Título : PASTA FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 07-02-2025 11:16\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - fabio.jackson@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA FROTA\n2) E-MAIL : fabio.jackson@tecnomulti.com\n3) TELEFONE : 83986500039\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nfavor  configurar acesso para Pasta Frotas \n \n\n\n[11-02-2025 09:21]\nAutor Alexsandro Cruz\nDescrição Configuração concluída e testada.\nData de abertura 11-02-2025 09:21\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[10-02-2025 08:47]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nMe passar o anydesk para acessar e configurar.  Entrar em contato via whatsapp para facilitar o atendimento. \nData de abertura 10-02-2025 08:47\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1107,'Ticket',82,4,2,0,0,'2025-02-11 12:21:28','2025-02-11 12:21:28',NULL,'[GLPI #0000082] Novo acompanhamento PASTA FROTA',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_82 \n\n Chamado: Descrição\n\n Título : PASTA FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 07-02-2025 11:16\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - fabio.jackson@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA FROTA\n2) E-MAIL : fabio.jackson@tecnomulti.com\n3) TELEFONE : 83986500039\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nfavor  configurar acesso para Pasta Frotas \n \n\n\n[11-02-2025 09:21]\nAutor Alexsandro Cruz\nDescrição Configuração concluída e testada.\nData de abertura 11-02-2025 09:21\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[10-02-2025 08:47]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nMe passar o anydesk para acessar e configurar.  Entrar em contato via whatsapp para facilitar o atendimento. \nData de abertura 10-02-2025 08:47\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1108,'Ticket',82,4,2,1,0,'2025-02-11 12:21:28','2025-02-11 12:21:28','2025-02-12 17:41:55','[GLPI #0000082] Novo acompanhamento PASTA FROTA',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_82 \n\n Chamado: Descrição\n\n Título : PASTA FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 07-02-2025 11:16\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - fabio.jackson@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA FROTA\n2) E-MAIL : fabio.jackson@tecnomulti.com\n3) TELEFONE : 83986500039\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nfavor  configurar acesso para Pasta Frotas \n \n\n\n[11-02-2025 09:21]\nAutor Alexsandro Cruz\nDescrição Configuração concluída e testada.\nData de abertura 11-02-2025 09:21\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[10-02-2025 08:47]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nMe passar o anydesk para acessar e configurar.  Entrar em contato via whatsapp para facilitar o atendimento. \nData de abertura 10-02-2025 08:47\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1109,'Ticket',82,4,2,0,0,'2025-02-11 12:21:28','2025-02-11 12:21:28',NULL,'[GLPI #0000082] Novo acompanhamento PASTA FROTA','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000082] Novo acompanhamento PASTA FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_82\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_82&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:07-02-2025 11:16 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- fabio.jackson@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;fabio.jackson@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83986500039&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;favor  configurar acesso para Pasta Frotas &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [11-02-2025 09:21]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Configuração concluída e testada.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;11-02-2025 09:21&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [10-02-2025 08:47]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, &#60;/p&#62;\r\n&#60;p&#62;Me passar o anydesk para acessar e configurar.  Entrar em contato via whatsapp para facilitar o atendimento. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;10-02-2025 08:47&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_82 \n\n Chamado: Descrição\n\n Título : PASTA FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 07-02-2025 11:16\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - fabio.jackson@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA FROTA\n2) E-MAIL : fabio.jackson@tecnomulti.com\n3) TELEFONE : 83986500039\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nfavor  configurar acesso para Pasta Frotas \n \n\n\n[11-02-2025 09:21]\nAutor Alexsandro Cruz\nDescrição Configuração concluída e testada.\nData de abertura 11-02-2025 09:21\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[10-02-2025 08:47]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nMe passar o anydesk para acessar e configurar.  Entrar em contato via whatsapp para facilitar o atendimento. \nData de abertura 10-02-2025 08:47\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-82/add_followup.1739276488.1793202103@oswintech.ddns.net','','mailing','add_followup'),
(1110,'Ticket',82,4,2,0,0,'2025-02-11 12:21:28','2025-02-11 12:21:28',NULL,'[GLPI #0000082] Novo acompanhamento PASTA FROTA','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000082] Novo acompanhamento PASTA FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_82\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_82&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:07-02-2025 11:16 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- fabio.jackson@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;fabio.jackson@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83986500039&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;favor  configurar acesso para Pasta Frotas &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [11-02-2025 09:21]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Configuração concluída e testada.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;11-02-2025 09:21&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [10-02-2025 08:47]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, &#60;/p&#62;\r\n&#60;p&#62;Me passar o anydesk para acessar e configurar.  Entrar em contato via whatsapp para facilitar o atendimento. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;10-02-2025 08:47&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_82 \n\n Chamado: Descrição\n\n Título : PASTA FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 07-02-2025 11:16\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - fabio.jackson@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA FROTA\n2) E-MAIL : fabio.jackson@tecnomulti.com\n3) TELEFONE : 83986500039\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nfavor  configurar acesso para Pasta Frotas \n \n\n\n[11-02-2025 09:21]\nAutor Alexsandro Cruz\nDescrição Configuração concluída e testada.\nData de abertura 11-02-2025 09:21\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[10-02-2025 08:47]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nMe passar o anydesk para acessar e configurar.  Entrar em contato via whatsapp para facilitar o atendimento. \nData de abertura 10-02-2025 08:47\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-82/add_followup.1739276488.923443758@oswintech.ddns.net','','mailing','add_followup'),
(1111,'Ticket',82,4,2,0,0,'2025-02-11 12:21:28','2025-02-11 12:21:28',NULL,'[GLPI #0000082] Novo acompanhamento PASTA FROTA','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000082] Novo acompanhamento PASTA FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_82\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_82&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:07-02-2025 11:16 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- fabio.jackson@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;fabio.jackson@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83986500039&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;favor  configurar acesso para Pasta Frotas &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [11-02-2025 09:21]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Configuração concluída e testada.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;11-02-2025 09:21&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [10-02-2025 08:47]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, &#60;/p&#62;\r\n&#60;p&#62;Me passar o anydesk para acessar e configurar.  Entrar em contato via whatsapp para facilitar o atendimento. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;10-02-2025 08:47&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_82 \n\n Chamado: Descrição\n\n Título : PASTA FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 07-02-2025 11:16\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - fabio.jackson@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA FROTA\n2) E-MAIL : fabio.jackson@tecnomulti.com\n3) TELEFONE : 83986500039\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nfavor  configurar acesso para Pasta Frotas \n \n\n\n[11-02-2025 09:21]\nAutor Alexsandro Cruz\nDescrição Configuração concluída e testada.\nData de abertura 11-02-2025 09:21\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[10-02-2025 08:47]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nMe passar o anydesk para acessar e configurar.  Entrar em contato via whatsapp para facilitar o atendimento. \nData de abertura 10-02-2025 08:47\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-82/add_followup.1739276488.2121381003@oswintech.ddns.net','','mailing','add_followup'),
(1112,'Ticket',82,4,2,0,0,'2025-02-11 12:21:28','2025-02-11 12:21:28',NULL,'[GLPI #0000082] Novo acompanhamento PASTA FROTA','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000082] Novo acompanhamento PASTA FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_82\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_82&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:07-02-2025 11:16 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- fabio.jackson@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;fabio.jackson@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83986500039&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;favor  configurar acesso para Pasta Frotas &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [11-02-2025 09:21]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Configuração concluída e testada.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;11-02-2025 09:21&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [10-02-2025 08:47]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, &#60;/p&#62;\r\n&#60;p&#62;Me passar o anydesk para acessar e configurar.  Entrar em contato via whatsapp para facilitar o atendimento. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;10-02-2025 08:47&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_82 \n\n Chamado: Descrição\n\n Título : PASTA FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 07-02-2025 11:16\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - fabio.jackson@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA FROTA\n2) E-MAIL : fabio.jackson@tecnomulti.com\n3) TELEFONE : 83986500039\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nfavor  configurar acesso para Pasta Frotas \n \n\n\n[11-02-2025 09:21]\nAutor Alexsandro Cruz\nDescrição Configuração concluída e testada.\nData de abertura 11-02-2025 09:21\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[10-02-2025 08:47]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nMe passar o anydesk para acessar e configurar.  Entrar em contato via whatsapp para facilitar o atendimento. \nData de abertura 10-02-2025 08:47\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-82/add_followup.1739276488.49346355@oswintech.ddns.net','','mailing','add_followup'),
(1113,'Ticket',82,4,2,0,0,'2025-02-11 12:21:34','2025-02-11 12:21:34',NULL,'[GLPI #0000082] Encerramento do chamado PASTA FROTA','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000082] Encerramento do chamado PASTA FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_82\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_82&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:07-02-2025 11:16 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:11-02-2025 09:21 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- fabio.jackson@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;fabio.jackson@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83986500039&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;favor  configurar acesso para Pasta Frotas &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 11-02-2025 09:21&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [11-02-2025 09:21]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Configuração concluída e testada.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;11-02-2025 09:21&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [10-02-2025 08:47]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, &#60;/p&#62;\r\n&#60;p&#62;Me passar o anydesk para acessar e configurar.  Entrar em contato via whatsapp para facilitar o atendimento. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;10-02-2025 08:47&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_82 \n\n Chamado: Descrição\n\n Título : PASTA FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 07-02-2025 11:16\n Data de fechamento : 11-02-2025 09:21\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - fabio.jackson@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA FROTA\n2) E-MAIL : fabio.jackson@tecnomulti.com\n3) TELEFONE : 83986500039\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nfavor  configurar acesso para Pasta Frotas \n \n\n Data da solução : 11-02-2025 09:21\n Tipo de solução : \n Solução : \n \n\n\n[11-02-2025 09:21]\nAutor Alexsandro Cruz\nDescrição Configuração concluída e testada.\nData de abertura 11-02-2025 09:21\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[10-02-2025 08:47]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nMe passar o anydesk para acessar e configurar.  Entrar em contato via whatsapp para facilitar o atendimento. \nData de abertura 10-02-2025 08:47\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-82/closed.1739276494.149362919@oswintech.ddns.net','','mailing','closed'),
(1114,'Ticket',82,4,2,0,0,'2025-02-11 12:21:34','2025-02-11 12:21:34',NULL,'[GLPI #0000082] Encerramento do chamado PASTA FROTA','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000082] Encerramento do chamado PASTA FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_82\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_82&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:07-02-2025 11:16 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:11-02-2025 09:21 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- fabio.jackson@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;fabio.jackson@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83986500039&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;favor  configurar acesso para Pasta Frotas &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 11-02-2025 09:21&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [11-02-2025 09:21]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Configuração concluída e testada.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;11-02-2025 09:21&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [10-02-2025 08:47]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, &#60;/p&#62;\r\n&#60;p&#62;Me passar o anydesk para acessar e configurar.  Entrar em contato via whatsapp para facilitar o atendimento. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;10-02-2025 08:47&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_82 \n\n Chamado: Descrição\n\n Título : PASTA FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 07-02-2025 11:16\n Data de fechamento : 11-02-2025 09:21\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - fabio.jackson@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA FROTA\n2) E-MAIL : fabio.jackson@tecnomulti.com\n3) TELEFONE : 83986500039\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nfavor  configurar acesso para Pasta Frotas \n \n\n Data da solução : 11-02-2025 09:21\n Tipo de solução : \n Solução : \n \n\n\n[11-02-2025 09:21]\nAutor Alexsandro Cruz\nDescrição Configuração concluída e testada.\nData de abertura 11-02-2025 09:21\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[10-02-2025 08:47]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nMe passar o anydesk para acessar e configurar.  Entrar em contato via whatsapp para facilitar o atendimento. \nData de abertura 10-02-2025 08:47\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-82/closed.1739276494.257201959@oswintech.ddns.net','','mailing','closed'),
(1115,'PluginFormcreatorFormAnswer',49,29,2,0,0,'2025-02-11 12:41:34','2025-02-11 12:41:34',NULL,'[GLPI] Sua requisição foi salva','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI] Sua requisi&#38;ccedil;&#38;atilde;o foi salva&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;p&#62;Olá,&#60;br /&#62;Sua requisição do GLPI foi salva com sucesso com o número 49 e transmitido para a equipe de helpdesk.&#60;br /&#62;Você pode ver suas respostas no seguinte link:&#60;br /&#62;https://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=49&#60;/p&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;','Olá,\nSua requisição do GLPI foi salva com sucesso com o número 49 e transmitido para a equipe de helpdesk.\nVocê pode ver suas respostas no seguinte link:\nhttps://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=49\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-PluginFormcreatorFormAnswer-49/plugin_formcreator_form_created.1739277694.1764984268@oswintech.ddns.net','','mailing','plugin_formcreator_form_created'),
(1116,'Ticket',85,4,2,1,0,'2025-02-11 12:41:34','2025-02-11 12:41:34','2025-02-12 11:54:02','[GLPI #0000085] Novo chamado PASTA FROTA',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_85 \n\n Chamado: Descrição\n\n Título : PASTA FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 11-02-2025 09:41\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA FROTA\n2) E-MAIL : joao.ferreira@tecnomulti.com\n3) TELEFONE : 81 992588071\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nFavor criar acesso a pasta Frota\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(1117,'Ticket',85,4,2,1,0,'2025-02-11 12:41:34','2025-02-11 12:41:34','2025-02-11 12:42:02','[GLPI #0000085] Novo chamado PASTA FROTA',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_85 \n\n Chamado: Descrição\n\n Título : PASTA FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 11-02-2025 09:41\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA FROTA\n2) E-MAIL : joao.ferreira@tecnomulti.com\n3) TELEFONE : 81 992588071\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nFavor criar acesso a pasta Frota\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(1118,'Ticket',85,4,2,0,0,'2025-02-11 12:41:34','2025-02-11 12:41:34',NULL,'[GLPI #0000085] Novo chamado PASTA FROTA',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_85 \n\n Chamado: Descrição\n\n Título : PASTA FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 11-02-2025 09:41\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA FROTA\n2) E-MAIL : joao.ferreira@tecnomulti.com\n3) TELEFONE : 81 992588071\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nFavor criar acesso a pasta Frota\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(1119,'Ticket',85,4,2,1,0,'2025-02-11 12:41:34','2025-02-11 12:41:34','2025-02-12 17:41:55','[GLPI #0000085] Novo chamado PASTA FROTA',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_85 \n\n Chamado: Descrição\n\n Título : PASTA FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 11-02-2025 09:41\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA FROTA\n2) E-MAIL : joao.ferreira@tecnomulti.com\n3) TELEFONE : 81 992588071\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nFavor criar acesso a pasta Frota\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(1120,'Ticket',85,4,2,0,0,'2025-02-11 12:41:34','2025-02-11 12:41:34',NULL,'[GLPI #0000085] Novo chamado PASTA FROTA','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000085] Novo chamado PASTA FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_85\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_85&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:11-02-2025 09:41 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;joao.ferreira@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 992588071&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Favor criar acesso a pasta Frota&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_85 \n\n Chamado: Descrição\n\n Título : PASTA FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 11-02-2025 09:41\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA FROTA\n2) E-MAIL : joao.ferreira@tecnomulti.com\n3) TELEFONE : 81 992588071\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nFavor criar acesso a pasta Frota\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-85/new@oswintech.ddns.net','','mailing','new'),
(1121,'Ticket',85,4,2,0,0,'2025-02-11 12:41:34','2025-02-11 12:41:34',NULL,'[GLPI #0000085] Novo chamado PASTA FROTA','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000085] Novo chamado PASTA FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_85\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_85&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:11-02-2025 09:41 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;joao.ferreira@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 992588071&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Favor criar acesso a pasta Frota&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_85 \n\n Chamado: Descrição\n\n Título : PASTA FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 11-02-2025 09:41\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA FROTA\n2) E-MAIL : joao.ferreira@tecnomulti.com\n3) TELEFONE : 81 992588071\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nFavor criar acesso a pasta Frota\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-85/new@oswintech.ddns.net','','mailing','new'),
(1122,'Ticket',85,4,2,0,0,'2025-02-11 12:41:34','2025-02-11 12:41:34',NULL,'[GLPI #0000085] Novo chamado PASTA FROTA','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000085] Novo chamado PASTA FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_85\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_85&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:11-02-2025 09:41 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;joao.ferreira@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 992588071&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Favor criar acesso a pasta Frota&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_85 \n\n Chamado: Descrição\n\n Título : PASTA FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 11-02-2025 09:41\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA FROTA\n2) E-MAIL : joao.ferreira@tecnomulti.com\n3) TELEFONE : 81 992588071\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nFavor criar acesso a pasta Frota\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-85/new@oswintech.ddns.net','','mailing','new'),
(1123,'Ticket',85,4,2,0,0,'2025-02-11 12:41:34','2025-02-11 12:41:34',NULL,'[GLPI #0000085] Novo chamado PASTA FROTA','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000085] Novo chamado PASTA FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_85\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_85&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:11-02-2025 09:41 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;joao.ferreira@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 992588071&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Favor criar acesso a pasta Frota&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_85 \n\n Chamado: Descrição\n\n Título : PASTA FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 11-02-2025 09:41\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA FROTA\n2) E-MAIL : joao.ferreira@tecnomulti.com\n3) TELEFONE : 81 992588071\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nFavor criar acesso a pasta Frota\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-85/new@oswintech.ddns.net','','mailing','new'),
(1124,'Ticket',85,4,2,1,0,'2025-02-11 13:07:04','2025-02-11 13:07:04','2025-02-12 11:54:02','[GLPI #0000085] Novo acompanhamento PASTA FROTA',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_85 \n\n Chamado: Descrição\n\n Título : PASTA FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 11-02-2025 09:41\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - joao.ferreira@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA FROTA\n2) E-MAIL : joao.ferreira@tecnomulti.com\n3) TELEFONE : 81 992588071\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nFavor criar acesso a pasta Frota\n \n\n\n[11-02-2025 10:07]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nMe informe o ID do anydesk para acesso.\nData de abertura 11-02-2025 10:07\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1125,'Ticket',85,4,2,1,0,'2025-02-11 13:07:04','2025-02-11 13:07:04','2025-02-11 13:07:09','[GLPI #0000085] Novo acompanhamento PASTA FROTA',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_85 \n\n Chamado: Descrição\n\n Título : PASTA FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 11-02-2025 09:41\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - joao.ferreira@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA FROTA\n2) E-MAIL : joao.ferreira@tecnomulti.com\n3) TELEFONE : 81 992588071\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nFavor criar acesso a pasta Frota\n \n\n\n[11-02-2025 10:07]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nMe informe o ID do anydesk para acesso.\nData de abertura 11-02-2025 10:07\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1126,'Ticket',85,4,2,0,0,'2025-02-11 13:07:04','2025-02-11 13:07:04',NULL,'[GLPI #0000085] Novo acompanhamento PASTA FROTA',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_85 \n\n Chamado: Descrição\n\n Título : PASTA FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 11-02-2025 09:41\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - joao.ferreira@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA FROTA\n2) E-MAIL : joao.ferreira@tecnomulti.com\n3) TELEFONE : 81 992588071\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nFavor criar acesso a pasta Frota\n \n\n\n[11-02-2025 10:07]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nMe informe o ID do anydesk para acesso.\nData de abertura 11-02-2025 10:07\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1127,'Ticket',85,4,2,1,0,'2025-02-11 13:07:04','2025-02-11 13:07:04','2025-02-12 17:41:55','[GLPI #0000085] Novo acompanhamento PASTA FROTA',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_85 \n\n Chamado: Descrição\n\n Título : PASTA FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 11-02-2025 09:41\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - joao.ferreira@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA FROTA\n2) E-MAIL : joao.ferreira@tecnomulti.com\n3) TELEFONE : 81 992588071\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nFavor criar acesso a pasta Frota\n \n\n\n[11-02-2025 10:07]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nMe informe o ID do anydesk para acesso.\nData de abertura 11-02-2025 10:07\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1128,'Ticket',85,4,2,0,0,'2025-02-11 13:07:04','2025-02-11 13:07:04',NULL,'[GLPI #0000085] Novo acompanhamento PASTA FROTA','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000085] Novo acompanhamento PASTA FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_85\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_85&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:11-02-2025 09:41 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- joao.ferreira@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;joao.ferreira@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 992588071&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Favor criar acesso a pasta Frota&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [11-02-2025 10:07]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, &#60;/p&#62;\r\n&#60;p&#62;Me informe o ID do anydesk para acesso.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;11-02-2025 10:07&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_85 \n\n Chamado: Descrição\n\n Título : PASTA FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 11-02-2025 09:41\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - joao.ferreira@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA FROTA\n2) E-MAIL : joao.ferreira@tecnomulti.com\n3) TELEFONE : 81 992588071\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nFavor criar acesso a pasta Frota\n \n\n\n[11-02-2025 10:07]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nMe informe o ID do anydesk para acesso.\nData de abertura 11-02-2025 10:07\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-85/add_followup.1739279225.1902561262@oswintech.ddns.net','','mailing','add_followup'),
(1129,'Ticket',85,4,2,0,0,'2025-02-11 13:07:04','2025-02-11 13:07:04',NULL,'[GLPI #0000085] Novo acompanhamento PASTA FROTA','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000085] Novo acompanhamento PASTA FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_85\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_85&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:11-02-2025 09:41 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- joao.ferreira@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;joao.ferreira@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 992588071&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Favor criar acesso a pasta Frota&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [11-02-2025 10:07]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, &#60;/p&#62;\r\n&#60;p&#62;Me informe o ID do anydesk para acesso.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;11-02-2025 10:07&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_85 \n\n Chamado: Descrição\n\n Título : PASTA FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 11-02-2025 09:41\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - joao.ferreira@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA FROTA\n2) E-MAIL : joao.ferreira@tecnomulti.com\n3) TELEFONE : 81 992588071\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nFavor criar acesso a pasta Frota\n \n\n\n[11-02-2025 10:07]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nMe informe o ID do anydesk para acesso.\nData de abertura 11-02-2025 10:07\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-85/add_followup.1739279225.344313076@oswintech.ddns.net','','mailing','add_followup'),
(1130,'Ticket',85,4,2,0,0,'2025-02-11 13:07:04','2025-02-11 13:07:04',NULL,'[GLPI #0000085] Novo acompanhamento PASTA FROTA','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000085] Novo acompanhamento PASTA FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_85\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_85&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:11-02-2025 09:41 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- joao.ferreira@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;joao.ferreira@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 992588071&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Favor criar acesso a pasta Frota&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [11-02-2025 10:07]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, &#60;/p&#62;\r\n&#60;p&#62;Me informe o ID do anydesk para acesso.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;11-02-2025 10:07&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_85 \n\n Chamado: Descrição\n\n Título : PASTA FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 11-02-2025 09:41\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - joao.ferreira@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA FROTA\n2) E-MAIL : joao.ferreira@tecnomulti.com\n3) TELEFONE : 81 992588071\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nFavor criar acesso a pasta Frota\n \n\n\n[11-02-2025 10:07]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nMe informe o ID do anydesk para acesso.\nData de abertura 11-02-2025 10:07\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-85/add_followup.1739279225.461191109@oswintech.ddns.net','','mailing','add_followup'),
(1131,'Ticket',85,4,2,0,0,'2025-02-11 13:07:04','2025-02-11 13:07:04',NULL,'[GLPI #0000085] Novo acompanhamento PASTA FROTA','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000085] Novo acompanhamento PASTA FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_85\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_85&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:11-02-2025 09:41 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- joao.ferreira@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;joao.ferreira@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 992588071&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Favor criar acesso a pasta Frota&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [11-02-2025 10:07]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, &#60;/p&#62;\r\n&#60;p&#62;Me informe o ID do anydesk para acesso.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;11-02-2025 10:07&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_85 \n\n Chamado: Descrição\n\n Título : PASTA FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 11-02-2025 09:41\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - joao.ferreira@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA FROTA\n2) E-MAIL : joao.ferreira@tecnomulti.com\n3) TELEFONE : 81 992588071\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nFavor criar acesso a pasta Frota\n \n\n\n[11-02-2025 10:07]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nMe informe o ID do anydesk para acesso.\nData de abertura 11-02-2025 10:07\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-85/add_followup.1739279225.686056354@oswintech.ddns.net','','mailing','add_followup'),
(1132,'Ticket',85,4,2,1,0,'2025-02-11 13:07:08','2025-02-11 13:07:08','2025-02-12 11:54:03','[GLPI #0000085] Atualização de um chamado PASTA FROTA',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_85 \n\n Chamado: Descrição\n\n Título : PASTA FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 11-02-2025 09:41\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - joao.ferreira@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA FROTA\n2) E-MAIL : joao.ferreira@tecnomulti.com\n3) TELEFONE : 81 992588071\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nFavor criar acesso a pasta Frota\n \n\n\n[11-02-2025 10:07]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nMe informe o ID do anydesk para acesso.\nData de abertura 11-02-2025 10:07\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','update'),
(1133,'Ticket',85,4,2,0,0,'2025-02-11 13:07:08','2025-02-11 13:07:08',NULL,'[GLPI #0000085] Atualização de um chamado PASTA FROTA','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000085] Atualiza&#38;ccedil;&#38;atilde;o de um chamado PASTA FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_85\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_85&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:11-02-2025 09:41 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- joao.ferreira@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;joao.ferreira@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 992588071&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Favor criar acesso a pasta Frota&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [11-02-2025 10:07]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, &#60;/p&#62;\r\n&#60;p&#62;Me informe o ID do anydesk para acesso.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;11-02-2025 10:07&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_85 \n\n Chamado: Descrição\n\n Título : PASTA FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 11-02-2025 09:41\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - joao.ferreira@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA FROTA\n2) E-MAIL : joao.ferreira@tecnomulti.com\n3) TELEFONE : 81 992588071\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nFavor criar acesso a pasta Frota\n \n\n\n[11-02-2025 10:07]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nMe informe o ID do anydesk para acesso.\nData de abertura 11-02-2025 10:07\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-85/update.1739279228.660128772@oswintech.ddns.net','','mailing','update'),
(1134,'Ticket',85,4,2,0,0,'2025-02-11 13:07:08','2025-02-11 13:07:08',NULL,'[GLPI #0000085] Atualização de um chamado PASTA FROTA','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000085] Atualiza&#38;ccedil;&#38;atilde;o de um chamado PASTA FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_85\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_85&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:11-02-2025 09:41 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- joao.ferreira@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;joao.ferreira@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 992588071&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Favor criar acesso a pasta Frota&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [11-02-2025 10:07]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, &#60;/p&#62;\r\n&#60;p&#62;Me informe o ID do anydesk para acesso.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;11-02-2025 10:07&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_85 \n\n Chamado: Descrição\n\n Título : PASTA FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 11-02-2025 09:41\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - joao.ferreira@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA FROTA\n2) E-MAIL : joao.ferreira@tecnomulti.com\n3) TELEFONE : 81 992588071\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nFavor criar acesso a pasta Frota\n \n\n\n[11-02-2025 10:07]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nMe informe o ID do anydesk para acesso.\nData de abertura 11-02-2025 10:07\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-85/update.1739279228.10508093@oswintech.ddns.net','','mailing','update'),
(1135,'Ticket',84,4,2,1,0,'2025-02-11 13:08:39','2025-02-11 13:08:39','2025-02-12 11:54:03','[GLPI #0000084] Novo acompanhamento sistema sap não fica com o acesso',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_84 \n\n Chamado: Descrição\n\n Título : sistema sap não fica com o acesso\n Requerentes :  tecnomulti  \n Data de abertura : 11-02-2025 09:02\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - lorenalarissa88@gmail.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : sistema sap não fica com o acesso\n2) E-MAIL : lorenalarissa88@gmail.com\n3) TELEFONE : 81988648578\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nnão consigo usar o sistema funciona em outro e no  meu a senha e login não fica.\n \n\n\n[11-02-2025 10:08]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nApós acesso para verificação ficou evidenciado que a senha do usuário de autenticação está errada. Favor, solicitar alteração junto ao suporte da VIVO. \nData de abertura 11-02-2025 10:08\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1136,'Ticket',84,4,2,1,0,'2025-02-11 13:08:39','2025-02-11 13:08:39','2025-02-11 13:08:45','[GLPI #0000084] Novo acompanhamento sistema sap não fica com o acesso',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_84 \n\n Chamado: Descrição\n\n Título : sistema sap não fica com o acesso\n Requerentes :  tecnomulti  \n Data de abertura : 11-02-2025 09:02\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - lorenalarissa88@gmail.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : sistema sap não fica com o acesso\n2) E-MAIL : lorenalarissa88@gmail.com\n3) TELEFONE : 81988648578\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nnão consigo usar o sistema funciona em outro e no  meu a senha e login não fica.\n \n\n\n[11-02-2025 10:08]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nApós acesso para verificação ficou evidenciado que a senha do usuário de autenticação está errada. Favor, solicitar alteração junto ao suporte da VIVO. \nData de abertura 11-02-2025 10:08\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1137,'Ticket',84,4,2,0,0,'2025-02-11 13:08:39','2025-02-11 13:08:39',NULL,'[GLPI #0000084] Novo acompanhamento sistema sap não fica com o acesso',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_84 \n\n Chamado: Descrição\n\n Título : sistema sap não fica com o acesso\n Requerentes :  tecnomulti  \n Data de abertura : 11-02-2025 09:02\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - lorenalarissa88@gmail.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : sistema sap não fica com o acesso\n2) E-MAIL : lorenalarissa88@gmail.com\n3) TELEFONE : 81988648578\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nnão consigo usar o sistema funciona em outro e no  meu a senha e login não fica.\n \n\n\n[11-02-2025 10:08]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nApós acesso para verificação ficou evidenciado que a senha do usuário de autenticação está errada. Favor, solicitar alteração junto ao suporte da VIVO. \nData de abertura 11-02-2025 10:08\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1138,'Ticket',84,4,2,1,0,'2025-02-11 13:08:39','2025-02-11 13:08:39','2025-02-12 17:41:55','[GLPI #0000084] Novo acompanhamento sistema sap não fica com o acesso',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_84 \n\n Chamado: Descrição\n\n Título : sistema sap não fica com o acesso\n Requerentes :  tecnomulti  \n Data de abertura : 11-02-2025 09:02\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - lorenalarissa88@gmail.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : sistema sap não fica com o acesso\n2) E-MAIL : lorenalarissa88@gmail.com\n3) TELEFONE : 81988648578\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nnão consigo usar o sistema funciona em outro e no  meu a senha e login não fica.\n \n\n\n[11-02-2025 10:08]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nApós acesso para verificação ficou evidenciado que a senha do usuário de autenticação está errada. Favor, solicitar alteração junto ao suporte da VIVO. \nData de abertura 11-02-2025 10:08\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1139,'Ticket',84,4,2,0,0,'2025-02-11 13:08:39','2025-02-11 13:08:39',NULL,'[GLPI #0000084] Novo acompanhamento sistema sap não fica com o acesso','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000084] Novo acompanhamento sistema sap n&#38;atilde;o fica com o acesso&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_84\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_84&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:sistema sap n&#38;atilde;o fica com o acesso &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:11-02-2025 09:02 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- lorenalarissa88@gmail.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;sistema sap não fica com o acesso&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;lorenalarissa88@gmail.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81988648578&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;não consigo usar o sistema funciona em outro e no  meu a senha e login não fica.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [11-02-2025 10:08]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Após acesso para verificação ficou evidenciado que a senha do usuário de autenticação está errada. Favor, solicitar alteração junto ao suporte da VIVO. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;11-02-2025 10:08&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_84 \n\n Chamado: Descrição\n\n Título : sistema sap não fica com o acesso\n Requerentes :  tecnomulti  \n Data de abertura : 11-02-2025 09:02\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - lorenalarissa88@gmail.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : sistema sap não fica com o acesso\n2) E-MAIL : lorenalarissa88@gmail.com\n3) TELEFONE : 81988648578\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nnão consigo usar o sistema funciona em outro e no  meu a senha e login não fica.\n \n\n\n[11-02-2025 10:08]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nApós acesso para verificação ficou evidenciado que a senha do usuário de autenticação está errada. Favor, solicitar alteração junto ao suporte da VIVO. \nData de abertura 11-02-2025 10:08\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-84/add_followup.1739279320.543774687@oswintech.ddns.net','','mailing','add_followup'),
(1140,'Ticket',84,4,2,0,0,'2025-02-11 13:08:39','2025-02-11 13:08:39',NULL,'[GLPI #0000084] Novo acompanhamento sistema sap não fica com o acesso','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000084] Novo acompanhamento sistema sap n&#38;atilde;o fica com o acesso&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_84\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_84&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:sistema sap n&#38;atilde;o fica com o acesso &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:11-02-2025 09:02 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- lorenalarissa88@gmail.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;sistema sap não fica com o acesso&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;lorenalarissa88@gmail.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81988648578&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;não consigo usar o sistema funciona em outro e no  meu a senha e login não fica.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [11-02-2025 10:08]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Após acesso para verificação ficou evidenciado que a senha do usuário de autenticação está errada. Favor, solicitar alteração junto ao suporte da VIVO. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;11-02-2025 10:08&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_84 \n\n Chamado: Descrição\n\n Título : sistema sap não fica com o acesso\n Requerentes :  tecnomulti  \n Data de abertura : 11-02-2025 09:02\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - lorenalarissa88@gmail.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : sistema sap não fica com o acesso\n2) E-MAIL : lorenalarissa88@gmail.com\n3) TELEFONE : 81988648578\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nnão consigo usar o sistema funciona em outro e no  meu a senha e login não fica.\n \n\n\n[11-02-2025 10:08]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nApós acesso para verificação ficou evidenciado que a senha do usuário de autenticação está errada. Favor, solicitar alteração junto ao suporte da VIVO. \nData de abertura 11-02-2025 10:08\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-84/add_followup.1739279320.186156469@oswintech.ddns.net','','mailing','add_followup'),
(1141,'Ticket',84,4,2,0,0,'2025-02-11 13:08:39','2025-02-11 13:08:39',NULL,'[GLPI #0000084] Novo acompanhamento sistema sap não fica com o acesso','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000084] Novo acompanhamento sistema sap n&#38;atilde;o fica com o acesso&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_84\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_84&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:sistema sap n&#38;atilde;o fica com o acesso &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:11-02-2025 09:02 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- lorenalarissa88@gmail.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;sistema sap não fica com o acesso&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;lorenalarissa88@gmail.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81988648578&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;não consigo usar o sistema funciona em outro e no  meu a senha e login não fica.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [11-02-2025 10:08]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Após acesso para verificação ficou evidenciado que a senha do usuário de autenticação está errada. Favor, solicitar alteração junto ao suporte da VIVO. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;11-02-2025 10:08&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_84 \n\n Chamado: Descrição\n\n Título : sistema sap não fica com o acesso\n Requerentes :  tecnomulti  \n Data de abertura : 11-02-2025 09:02\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - lorenalarissa88@gmail.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : sistema sap não fica com o acesso\n2) E-MAIL : lorenalarissa88@gmail.com\n3) TELEFONE : 81988648578\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nnão consigo usar o sistema funciona em outro e no  meu a senha e login não fica.\n \n\n\n[11-02-2025 10:08]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nApós acesso para verificação ficou evidenciado que a senha do usuário de autenticação está errada. Favor, solicitar alteração junto ao suporte da VIVO. \nData de abertura 11-02-2025 10:08\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-84/add_followup.1739279320.1281473706@oswintech.ddns.net','','mailing','add_followup'),
(1142,'Ticket',84,4,2,0,0,'2025-02-11 13:08:39','2025-02-11 13:08:39',NULL,'[GLPI #0000084] Novo acompanhamento sistema sap não fica com o acesso','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000084] Novo acompanhamento sistema sap n&#38;atilde;o fica com o acesso&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_84\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_84&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:sistema sap n&#38;atilde;o fica com o acesso &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:11-02-2025 09:02 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- lorenalarissa88@gmail.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;sistema sap não fica com o acesso&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;lorenalarissa88@gmail.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81988648578&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;não consigo usar o sistema funciona em outro e no  meu a senha e login não fica.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [11-02-2025 10:08]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Após acesso para verificação ficou evidenciado que a senha do usuário de autenticação está errada. Favor, solicitar alteração junto ao suporte da VIVO. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;11-02-2025 10:08&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_84 \n\n Chamado: Descrição\n\n Título : sistema sap não fica com o acesso\n Requerentes :  tecnomulti  \n Data de abertura : 11-02-2025 09:02\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - lorenalarissa88@gmail.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : sistema sap não fica com o acesso\n2) E-MAIL : lorenalarissa88@gmail.com\n3) TELEFONE : 81988648578\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nnão consigo usar o sistema funciona em outro e no  meu a senha e login não fica.\n \n\n\n[11-02-2025 10:08]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nApós acesso para verificação ficou evidenciado que a senha do usuário de autenticação está errada. Favor, solicitar alteração junto ao suporte da VIVO. \nData de abertura 11-02-2025 10:08\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-84/add_followup.1739279320.527066641@oswintech.ddns.net','','mailing','add_followup'),
(1143,'Ticket',84,4,2,0,0,'2025-02-11 13:08:44','2025-02-11 13:08:44',NULL,'[GLPI #0000084] Encerramento do chamado sistema sap não fica com o acesso','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000084] Encerramento do chamado sistema sap n&#38;atilde;o fica com o acesso&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_84\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_84&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:sistema sap n&#38;atilde;o fica com o acesso &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:11-02-2025 09:02 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:11-02-2025 10:08 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- lorenalarissa88@gmail.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;sistema sap não fica com o acesso&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;lorenalarissa88@gmail.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81988648578&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;não consigo usar o sistema funciona em outro e no  meu a senha e login não fica.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 11-02-2025 10:08&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [11-02-2025 10:08]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Após acesso para verificação ficou evidenciado que a senha do usuário de autenticação está errada. Favor, solicitar alteração junto ao suporte da VIVO. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;11-02-2025 10:08&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_84 \n\n Chamado: Descrição\n\n Título : sistema sap não fica com o acesso\n Requerentes :  tecnomulti  \n Data de abertura : 11-02-2025 09:02\n Data de fechamento : 11-02-2025 10:08\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - lorenalarissa88@gmail.com\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : sistema sap não fica com o acesso\n2) E-MAIL : lorenalarissa88@gmail.com\n3) TELEFONE : 81988648578\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nnão consigo usar o sistema funciona em outro e no  meu a senha e login não fica.\n \n\n Data da solução : 11-02-2025 10:08\n Tipo de solução : \n Solução : \n \n\n\n[11-02-2025 10:08]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nApós acesso para verificação ficou evidenciado que a senha do usuário de autenticação está errada. Favor, solicitar alteração junto ao suporte da VIVO. \nData de abertura 11-02-2025 10:08\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-84/closed.1739279324.52323366@oswintech.ddns.net','','mailing','closed'),
(1144,'Ticket',84,4,2,0,0,'2025-02-11 13:08:44','2025-02-11 13:08:44',NULL,'[GLPI #0000084] Encerramento do chamado sistema sap não fica com o acesso','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000084] Encerramento do chamado sistema sap n&#38;atilde;o fica com o acesso&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_84\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_84&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:sistema sap n&#38;atilde;o fica com o acesso &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:11-02-2025 09:02 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:11-02-2025 10:08 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- lorenalarissa88@gmail.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;sistema sap não fica com o acesso&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;lorenalarissa88@gmail.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81988648578&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;não consigo usar o sistema funciona em outro e no  meu a senha e login não fica.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 11-02-2025 10:08&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [11-02-2025 10:08]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Após acesso para verificação ficou evidenciado que a senha do usuário de autenticação está errada. Favor, solicitar alteração junto ao suporte da VIVO. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;11-02-2025 10:08&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_84 \n\n Chamado: Descrição\n\n Título : sistema sap não fica com o acesso\n Requerentes :  tecnomulti  \n Data de abertura : 11-02-2025 09:02\n Data de fechamento : 11-02-2025 10:08\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - lorenalarissa88@gmail.com\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : sistema sap não fica com o acesso\n2) E-MAIL : lorenalarissa88@gmail.com\n3) TELEFONE : 81988648578\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nnão consigo usar o sistema funciona em outro e no  meu a senha e login não fica.\n \n\n Data da solução : 11-02-2025 10:08\n Tipo de solução : \n Solução : \n \n\n\n[11-02-2025 10:08]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nApós acesso para verificação ficou evidenciado que a senha do usuário de autenticação está errada. Favor, solicitar alteração junto ao suporte da VIVO. \nData de abertura 11-02-2025 10:08\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-84/closed.1739279325.1681706323@oswintech.ddns.net','','mailing','closed'),
(1145,'Ticket',85,4,2,1,0,'2025-02-11 13:14:01','2025-02-11 13:14:01','2025-02-12 11:54:03','[GLPI #0000085] Novo acompanhamento PASTA FROTA',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_85 \n\n Chamado: Descrição\n\n Título : PASTA FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 11-02-2025 09:41\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - joao.ferreira@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA FROTA\n2) E-MAIL : joao.ferreira@tecnomulti.com\n3) TELEFONE : 81 992588071\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nFavor criar acesso a pasta Frota\n \n\n\n[11-02-2025 10:14]\nAutor Alexsandro Cruz\nDescrição Acesso liberado conforme solicitado. \nData de abertura 11-02-2025 10:14\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[11-02-2025 10:07]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nMe informe o ID do anydesk para acesso.\nData de abertura 11-02-2025 10:07\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1146,'Ticket',85,4,2,1,0,'2025-02-11 13:14:01','2025-02-11 13:14:01','2025-02-11 13:14:14','[GLPI #0000085] Novo acompanhamento PASTA FROTA',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_85 \n\n Chamado: Descrição\n\n Título : PASTA FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 11-02-2025 09:41\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - joao.ferreira@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA FROTA\n2) E-MAIL : joao.ferreira@tecnomulti.com\n3) TELEFONE : 81 992588071\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nFavor criar acesso a pasta Frota\n \n\n\n[11-02-2025 10:14]\nAutor Alexsandro Cruz\nDescrição Acesso liberado conforme solicitado. \nData de abertura 11-02-2025 10:14\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[11-02-2025 10:07]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nMe informe o ID do anydesk para acesso.\nData de abertura 11-02-2025 10:07\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1147,'Ticket',85,4,2,0,0,'2025-02-11 13:14:01','2025-02-11 13:14:01',NULL,'[GLPI #0000085] Novo acompanhamento PASTA FROTA',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_85 \n\n Chamado: Descrição\n\n Título : PASTA FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 11-02-2025 09:41\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - joao.ferreira@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA FROTA\n2) E-MAIL : joao.ferreira@tecnomulti.com\n3) TELEFONE : 81 992588071\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nFavor criar acesso a pasta Frota\n \n\n\n[11-02-2025 10:14]\nAutor Alexsandro Cruz\nDescrição Acesso liberado conforme solicitado. \nData de abertura 11-02-2025 10:14\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[11-02-2025 10:07]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nMe informe o ID do anydesk para acesso.\nData de abertura 11-02-2025 10:07\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1148,'Ticket',85,4,2,1,0,'2025-02-11 13:14:01','2025-02-11 13:14:01','2025-02-12 17:41:57','[GLPI #0000085] Novo acompanhamento PASTA FROTA',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_85 \n\n Chamado: Descrição\n\n Título : PASTA FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 11-02-2025 09:41\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - joao.ferreira@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA FROTA\n2) E-MAIL : joao.ferreira@tecnomulti.com\n3) TELEFONE : 81 992588071\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nFavor criar acesso a pasta Frota\n \n\n\n[11-02-2025 10:14]\nAutor Alexsandro Cruz\nDescrição Acesso liberado conforme solicitado. \nData de abertura 11-02-2025 10:14\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[11-02-2025 10:07]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nMe informe o ID do anydesk para acesso.\nData de abertura 11-02-2025 10:07\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1149,'Ticket',85,4,2,0,0,'2025-02-11 13:14:01','2025-02-11 13:14:01',NULL,'[GLPI #0000085] Novo acompanhamento PASTA FROTA','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000085] Novo acompanhamento PASTA FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_85\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_85&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:11-02-2025 09:41 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- joao.ferreira@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;joao.ferreira@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 992588071&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Favor criar acesso a pasta Frota&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [11-02-2025 10:14]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Acesso liberado conforme solicitado. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;11-02-2025 10:14&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [11-02-2025 10:07]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, &#60;/p&#62;\r\n&#60;p&#62;Me informe o ID do anydesk para acesso.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;11-02-2025 10:07&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_85 \n\n Chamado: Descrição\n\n Título : PASTA FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 11-02-2025 09:41\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - joao.ferreira@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA FROTA\n2) E-MAIL : joao.ferreira@tecnomulti.com\n3) TELEFONE : 81 992588071\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nFavor criar acesso a pasta Frota\n \n\n\n[11-02-2025 10:14]\nAutor Alexsandro Cruz\nDescrição Acesso liberado conforme solicitado. \nData de abertura 11-02-2025 10:14\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[11-02-2025 10:07]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nMe informe o ID do anydesk para acesso.\nData de abertura 11-02-2025 10:07\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-85/add_followup.1739279641.911258788@oswintech.ddns.net','','mailing','add_followup'),
(1150,'Ticket',85,4,2,0,0,'2025-02-11 13:14:01','2025-02-11 13:14:01',NULL,'[GLPI #0000085] Novo acompanhamento PASTA FROTA','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000085] Novo acompanhamento PASTA FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_85\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_85&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:11-02-2025 09:41 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- joao.ferreira@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;joao.ferreira@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 992588071&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Favor criar acesso a pasta Frota&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [11-02-2025 10:14]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Acesso liberado conforme solicitado. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;11-02-2025 10:14&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [11-02-2025 10:07]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, &#60;/p&#62;\r\n&#60;p&#62;Me informe o ID do anydesk para acesso.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;11-02-2025 10:07&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_85 \n\n Chamado: Descrição\n\n Título : PASTA FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 11-02-2025 09:41\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - joao.ferreira@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA FROTA\n2) E-MAIL : joao.ferreira@tecnomulti.com\n3) TELEFONE : 81 992588071\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nFavor criar acesso a pasta Frota\n \n\n\n[11-02-2025 10:14]\nAutor Alexsandro Cruz\nDescrição Acesso liberado conforme solicitado. \nData de abertura 11-02-2025 10:14\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[11-02-2025 10:07]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nMe informe o ID do anydesk para acesso.\nData de abertura 11-02-2025 10:07\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-85/add_followup.1739279641.2033594356@oswintech.ddns.net','','mailing','add_followup'),
(1151,'Ticket',85,4,2,0,0,'2025-02-11 13:14:01','2025-02-11 13:14:01',NULL,'[GLPI #0000085] Novo acompanhamento PASTA FROTA','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000085] Novo acompanhamento PASTA FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_85\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_85&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:11-02-2025 09:41 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- joao.ferreira@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;joao.ferreira@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 992588071&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Favor criar acesso a pasta Frota&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [11-02-2025 10:14]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Acesso liberado conforme solicitado. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;11-02-2025 10:14&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [11-02-2025 10:07]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, &#60;/p&#62;\r\n&#60;p&#62;Me informe o ID do anydesk para acesso.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;11-02-2025 10:07&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_85 \n\n Chamado: Descrição\n\n Título : PASTA FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 11-02-2025 09:41\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - joao.ferreira@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA FROTA\n2) E-MAIL : joao.ferreira@tecnomulti.com\n3) TELEFONE : 81 992588071\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nFavor criar acesso a pasta Frota\n \n\n\n[11-02-2025 10:14]\nAutor Alexsandro Cruz\nDescrição Acesso liberado conforme solicitado. \nData de abertura 11-02-2025 10:14\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[11-02-2025 10:07]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nMe informe o ID do anydesk para acesso.\nData de abertura 11-02-2025 10:07\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-85/add_followup.1739279641.634213214@oswintech.ddns.net','','mailing','add_followup'),
(1152,'Ticket',85,4,2,0,0,'2025-02-11 13:14:01','2025-02-11 13:14:01',NULL,'[GLPI #0000085] Novo acompanhamento PASTA FROTA','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000085] Novo acompanhamento PASTA FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_85\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_85&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:11-02-2025 09:41 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- joao.ferreira@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;joao.ferreira@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 992588071&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Favor criar acesso a pasta Frota&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [11-02-2025 10:14]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Acesso liberado conforme solicitado. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;11-02-2025 10:14&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [11-02-2025 10:07]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, &#60;/p&#62;\r\n&#60;p&#62;Me informe o ID do anydesk para acesso.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;11-02-2025 10:07&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_85 \n\n Chamado: Descrição\n\n Título : PASTA FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 11-02-2025 09:41\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - joao.ferreira@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA FROTA\n2) E-MAIL : joao.ferreira@tecnomulti.com\n3) TELEFONE : 81 992588071\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nFavor criar acesso a pasta Frota\n \n\n\n[11-02-2025 10:14]\nAutor Alexsandro Cruz\nDescrição Acesso liberado conforme solicitado. \nData de abertura 11-02-2025 10:14\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[11-02-2025 10:07]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nMe informe o ID do anydesk para acesso.\nData de abertura 11-02-2025 10:07\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-85/add_followup.1739279641.1971744751@oswintech.ddns.net','','mailing','add_followup'),
(1153,'Ticket',85,4,2,0,0,'2025-02-11 13:14:07','2025-02-11 13:14:07',NULL,'[GLPI #0000085] Encerramento do chamado PASTA FROTA','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000085] Encerramento do chamado PASTA FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_85\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_85&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:11-02-2025 09:41 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:11-02-2025 10:14 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- joao.ferreira@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;joao.ferreira@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 992588071&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Favor criar acesso a pasta Frota&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 11-02-2025 10:14&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [11-02-2025 10:14]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Acesso liberado conforme solicitado. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;11-02-2025 10:14&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [11-02-2025 10:07]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, &#60;/p&#62;\r\n&#60;p&#62;Me informe o ID do anydesk para acesso.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;11-02-2025 10:07&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_85 \n\n Chamado: Descrição\n\n Título : PASTA FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 11-02-2025 09:41\n Data de fechamento : 11-02-2025 10:14\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - joao.ferreira@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA FROTA\n2) E-MAIL : joao.ferreira@tecnomulti.com\n3) TELEFONE : 81 992588071\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nFavor criar acesso a pasta Frota\n \n\n Data da solução : 11-02-2025 10:14\n Tipo de solução : \n Solução : \n \n\n\n[11-02-2025 10:14]\nAutor Alexsandro Cruz\nDescrição Acesso liberado conforme solicitado. \nData de abertura 11-02-2025 10:14\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[11-02-2025 10:07]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nMe informe o ID do anydesk para acesso.\nData de abertura 11-02-2025 10:07\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-85/closed.1739279647.1462584159@oswintech.ddns.net','','mailing','closed'),
(1154,'Ticket',85,4,2,0,0,'2025-02-11 13:14:07','2025-02-11 13:14:07',NULL,'[GLPI #0000085] Encerramento do chamado PASTA FROTA','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000085] Encerramento do chamado PASTA FROTA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_85\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_85&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:PASTA FROTA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:11-02-2025 09:41 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:11-02-2025 10:14 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- joao.ferreira@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Rede/Internet      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;joao.ferreira@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 992588071&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Favor criar acesso a pasta Frota&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 11-02-2025 10:14&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [11-02-2025 10:14]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Acesso liberado conforme solicitado. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;11-02-2025 10:14&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [11-02-2025 10:07]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, &#60;/p&#62;\r\n&#60;p&#62;Me informe o ID do anydesk para acesso.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;11-02-2025 10:07&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_85 \n\n Chamado: Descrição\n\n Título : PASTA FROTA\n Requerentes :  tecnomulti  \n Data de abertura : 11-02-2025 09:41\n Data de fechamento : 11-02-2025 10:14\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - joao.ferreira@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Rede/Internet  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : PASTA FROTA\n2) E-MAIL : joao.ferreira@tecnomulti.com\n3) TELEFONE : 81 992588071\n4) CATEGORIA : Rede/Internet\n5) INFORME MAIS DETALHES : \nFavor criar acesso a pasta Frota\n \n\n Data da solução : 11-02-2025 10:14\n Tipo de solução : \n Solução : \n \n\n\n[11-02-2025 10:14]\nAutor Alexsandro Cruz\nDescrição Acesso liberado conforme solicitado. \nData de abertura 11-02-2025 10:14\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[11-02-2025 10:07]\nAutor Alexsandro Cruz\nDescrição Bom dia, \n\nMe informe o ID do anydesk para acesso.\nData de abertura 11-02-2025 10:07\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-85/closed.1739279647.817567644@oswintech.ddns.net','','mailing','closed'),
(1155,'PluginFormcreatorFormAnswer',50,29,2,0,0,'2025-02-11 15:10:17','2025-02-11 15:10:17',NULL,'[GLPI] Sua requisição foi salva','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI] Sua requisi&#38;ccedil;&#38;atilde;o foi salva&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;p&#62;Olá,&#60;br /&#62;Sua requisição do GLPI foi salva com sucesso com o número 50 e transmitido para a equipe de helpdesk.&#60;br /&#62;Você pode ver suas respostas no seguinte link:&#60;br /&#62;https://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=50&#60;/p&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;','Olá,\nSua requisição do GLPI foi salva com sucesso com o número 50 e transmitido para a equipe de helpdesk.\nVocê pode ver suas respostas no seguinte link:\nhttps://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=50\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-PluginFormcreatorFormAnswer-50/plugin_formcreator_form_created.1739286617.340261976@oswintech.ddns.net','','mailing','plugin_formcreator_form_created'),
(1156,'Ticket',86,4,2,1,0,'2025-02-11 15:10:17','2025-02-11 15:10:17','2025-02-12 11:54:03','[GLPI #0000086] Novo chamado Acesso Sistema ',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_86 \n\n Chamado: Descrição\n\n Título : Acesso Sistema \n Requerentes :  tecnomulti  \n Data de abertura : 11-02-2025 12:10\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Acesso Sistema \n2) E-MAIL : michele.souza@tecnomulti.com\n3) TELEFONE : 8198555-5446\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nMudanca de setor, nao estou consiguindo acessa Vicky, Sap, OSPCONTROL \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(1157,'Ticket',86,4,2,1,0,'2025-02-11 15:10:17','2025-02-11 15:10:17','2025-02-11 15:11:03','[GLPI #0000086] Novo chamado Acesso Sistema ',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_86 \n\n Chamado: Descrição\n\n Título : Acesso Sistema \n Requerentes :  tecnomulti  \n Data de abertura : 11-02-2025 12:10\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Acesso Sistema \n2) E-MAIL : michele.souza@tecnomulti.com\n3) TELEFONE : 8198555-5446\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nMudanca de setor, nao estou consiguindo acessa Vicky, Sap, OSPCONTROL \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(1158,'Ticket',86,4,2,0,0,'2025-02-11 15:10:17','2025-02-11 15:10:17',NULL,'[GLPI #0000086] Novo chamado Acesso Sistema ',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_86 \n\n Chamado: Descrição\n\n Título : Acesso Sistema \n Requerentes :  tecnomulti  \n Data de abertura : 11-02-2025 12:10\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Acesso Sistema \n2) E-MAIL : michele.souza@tecnomulti.com\n3) TELEFONE : 8198555-5446\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nMudanca de setor, nao estou consiguindo acessa Vicky, Sap, OSPCONTROL \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(1159,'Ticket',86,4,2,1,0,'2025-02-11 15:10:17','2025-02-11 15:10:17','2025-02-12 17:41:57','[GLPI #0000086] Novo chamado Acesso Sistema ',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_86 \n\n Chamado: Descrição\n\n Título : Acesso Sistema \n Requerentes :  tecnomulti  \n Data de abertura : 11-02-2025 12:10\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Acesso Sistema \n2) E-MAIL : michele.souza@tecnomulti.com\n3) TELEFONE : 8198555-5446\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nMudanca de setor, nao estou consiguindo acessa Vicky, Sap, OSPCONTROL \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(1160,'Ticket',86,4,2,0,0,'2025-02-11 15:10:17','2025-02-11 15:10:17',NULL,'[GLPI #0000086] Novo chamado Acesso Sistema ','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000086] Novo chamado Acesso Sistema &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_86\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_86&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Acesso Sistema  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:11-02-2025 12:10 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Acesso Sistema &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;michele.souza@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;8198555-5446&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Mudanca de setor, nao estou consiguindo acessa Vicky, Sap, OSPCONTROL &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_86 \n\n Chamado: Descrição\n\n Título : Acesso Sistema \n Requerentes :  tecnomulti  \n Data de abertura : 11-02-2025 12:10\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Acesso Sistema \n2) E-MAIL : michele.souza@tecnomulti.com\n3) TELEFONE : 8198555-5446\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nMudanca de setor, nao estou consiguindo acessa Vicky, Sap, OSPCONTROL \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-86/new@oswintech.ddns.net','','mailing','new'),
(1161,'Ticket',86,4,2,0,0,'2025-02-11 15:10:17','2025-02-11 15:10:17',NULL,'[GLPI #0000086] Novo chamado Acesso Sistema ','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000086] Novo chamado Acesso Sistema &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_86\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_86&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Acesso Sistema  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:11-02-2025 12:10 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Acesso Sistema &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;michele.souza@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;8198555-5446&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Mudanca de setor, nao estou consiguindo acessa Vicky, Sap, OSPCONTROL &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_86 \n\n Chamado: Descrição\n\n Título : Acesso Sistema \n Requerentes :  tecnomulti  \n Data de abertura : 11-02-2025 12:10\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Acesso Sistema \n2) E-MAIL : michele.souza@tecnomulti.com\n3) TELEFONE : 8198555-5446\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nMudanca de setor, nao estou consiguindo acessa Vicky, Sap, OSPCONTROL \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-86/new@oswintech.ddns.net','','mailing','new'),
(1162,'Ticket',86,4,2,0,0,'2025-02-11 15:10:17','2025-02-11 15:10:17',NULL,'[GLPI #0000086] Novo chamado Acesso Sistema ','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000086] Novo chamado Acesso Sistema &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_86\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_86&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Acesso Sistema  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:11-02-2025 12:10 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Acesso Sistema &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;michele.souza@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;8198555-5446&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Mudanca de setor, nao estou consiguindo acessa Vicky, Sap, OSPCONTROL &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_86 \n\n Chamado: Descrição\n\n Título : Acesso Sistema \n Requerentes :  tecnomulti  \n Data de abertura : 11-02-2025 12:10\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Acesso Sistema \n2) E-MAIL : michele.souza@tecnomulti.com\n3) TELEFONE : 8198555-5446\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nMudanca de setor, nao estou consiguindo acessa Vicky, Sap, OSPCONTROL \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-86/new@oswintech.ddns.net','','mailing','new'),
(1163,'Ticket',86,4,2,0,0,'2025-02-11 15:10:17','2025-02-11 15:10:17',NULL,'[GLPI #0000086] Novo chamado Acesso Sistema ','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000086] Novo chamado Acesso Sistema &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_86\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_86&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Acesso Sistema  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:11-02-2025 12:10 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Acesso Sistema &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;michele.souza@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;8198555-5446&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Mudanca de setor, nao estou consiguindo acessa Vicky, Sap, OSPCONTROL &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_86 \n\n Chamado: Descrição\n\n Título : Acesso Sistema \n Requerentes :  tecnomulti  \n Data de abertura : 11-02-2025 12:10\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Acesso Sistema \n2) E-MAIL : michele.souza@tecnomulti.com\n3) TELEFONE : 8198555-5446\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nMudanca de setor, nao estou consiguindo acessa Vicky, Sap, OSPCONTROL \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-86/new@oswintech.ddns.net','','mailing','new'),
(1164,'Ticket',86,4,2,1,0,'2025-02-11 22:20:27','2025-02-11 22:20:27','2025-02-12 11:54:03','[GLPI #0000086] Novo acompanhamento Acesso Sistema ',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_86 \n\n Chamado: Descrição\n\n Título : Acesso Sistema \n Requerentes :  tecnomulti  \n Data de abertura : 11-02-2025 12:10\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - michele.souza@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Acesso Sistema \n2) E-MAIL : michele.souza@tecnomulti.com\n3) TELEFONE : 8198555-5446\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nMudanca de setor, nao estou consiguindo acessa Vicky, Sap, OSPCONTROL \n \n\n\n[11-02-2025 19:20]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nFavor falar no whatsapp.\nData de abertura 11-02-2025 19:20\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1165,'Ticket',86,4,2,1,0,'2025-02-11 22:20:27','2025-02-11 22:20:27','2025-02-11 22:21:03','[GLPI #0000086] Novo acompanhamento Acesso Sistema ',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_86 \n\n Chamado: Descrição\n\n Título : Acesso Sistema \n Requerentes :  tecnomulti  \n Data de abertura : 11-02-2025 12:10\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - michele.souza@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Acesso Sistema \n2) E-MAIL : michele.souza@tecnomulti.com\n3) TELEFONE : 8198555-5446\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nMudanca de setor, nao estou consiguindo acessa Vicky, Sap, OSPCONTROL \n \n\n\n[11-02-2025 19:20]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nFavor falar no whatsapp.\nData de abertura 11-02-2025 19:20\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1166,'Ticket',86,4,2,0,0,'2025-02-11 22:20:27','2025-02-11 22:20:27',NULL,'[GLPI #0000086] Novo acompanhamento Acesso Sistema ',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_86 \n\n Chamado: Descrição\n\n Título : Acesso Sistema \n Requerentes :  tecnomulti  \n Data de abertura : 11-02-2025 12:10\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - michele.souza@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Acesso Sistema \n2) E-MAIL : michele.souza@tecnomulti.com\n3) TELEFONE : 8198555-5446\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nMudanca de setor, nao estou consiguindo acessa Vicky, Sap, OSPCONTROL \n \n\n\n[11-02-2025 19:20]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nFavor falar no whatsapp.\nData de abertura 11-02-2025 19:20\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1167,'Ticket',86,4,2,1,0,'2025-02-11 22:20:27','2025-02-11 22:20:27','2025-02-12 17:41:57','[GLPI #0000086] Novo acompanhamento Acesso Sistema ',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_86 \n\n Chamado: Descrição\n\n Título : Acesso Sistema \n Requerentes :  tecnomulti  \n Data de abertura : 11-02-2025 12:10\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - michele.souza@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Acesso Sistema \n2) E-MAIL : michele.souza@tecnomulti.com\n3) TELEFONE : 8198555-5446\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nMudanca de setor, nao estou consiguindo acessa Vicky, Sap, OSPCONTROL \n \n\n\n[11-02-2025 19:20]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nFavor falar no whatsapp.\nData de abertura 11-02-2025 19:20\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1168,'Ticket',86,4,2,0,0,'2025-02-11 22:20:27','2025-02-11 22:20:27',NULL,'[GLPI #0000086] Novo acompanhamento Acesso Sistema ','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000086] Novo acompanhamento Acesso Sistema &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_86\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_86&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Acesso Sistema  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:11-02-2025 12:10 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- michele.souza@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Acesso Sistema &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;michele.souza@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;8198555-5446&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Mudanca de setor, nao estou consiguindo acessa Vicky, Sap, OSPCONTROL &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [11-02-2025 19:20]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, &#60;/p&#62;\r\n&#60;p&#62;Favor falar no whatsapp.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;11-02-2025 19:20&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_86 \n\n Chamado: Descrição\n\n Título : Acesso Sistema \n Requerentes :  tecnomulti  \n Data de abertura : 11-02-2025 12:10\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - michele.souza@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Acesso Sistema \n2) E-MAIL : michele.souza@tecnomulti.com\n3) TELEFONE : 8198555-5446\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nMudanca de setor, nao estou consiguindo acessa Vicky, Sap, OSPCONTROL \n \n\n\n[11-02-2025 19:20]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nFavor falar no whatsapp.\nData de abertura 11-02-2025 19:20\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-86/add_followup.1739312427.1580256340@oswintech.ddns.net','','mailing','add_followup'),
(1169,'Ticket',86,4,2,0,0,'2025-02-11 22:20:27','2025-02-11 22:20:27',NULL,'[GLPI #0000086] Novo acompanhamento Acesso Sistema ','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000086] Novo acompanhamento Acesso Sistema &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_86\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_86&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Acesso Sistema  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:11-02-2025 12:10 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- michele.souza@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Acesso Sistema &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;michele.souza@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;8198555-5446&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Mudanca de setor, nao estou consiguindo acessa Vicky, Sap, OSPCONTROL &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [11-02-2025 19:20]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, &#60;/p&#62;\r\n&#60;p&#62;Favor falar no whatsapp.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;11-02-2025 19:20&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_86 \n\n Chamado: Descrição\n\n Título : Acesso Sistema \n Requerentes :  tecnomulti  \n Data de abertura : 11-02-2025 12:10\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - michele.souza@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Acesso Sistema \n2) E-MAIL : michele.souza@tecnomulti.com\n3) TELEFONE : 8198555-5446\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nMudanca de setor, nao estou consiguindo acessa Vicky, Sap, OSPCONTROL \n \n\n\n[11-02-2025 19:20]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nFavor falar no whatsapp.\nData de abertura 11-02-2025 19:20\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-86/add_followup.1739312428.506943170@oswintech.ddns.net','','mailing','add_followup'),
(1170,'Ticket',86,4,2,0,0,'2025-02-11 22:20:27','2025-02-11 22:20:27',NULL,'[GLPI #0000086] Novo acompanhamento Acesso Sistema ','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000086] Novo acompanhamento Acesso Sistema &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_86\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_86&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Acesso Sistema  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:11-02-2025 12:10 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- michele.souza@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Acesso Sistema &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;michele.souza@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;8198555-5446&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Mudanca de setor, nao estou consiguindo acessa Vicky, Sap, OSPCONTROL &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [11-02-2025 19:20]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, &#60;/p&#62;\r\n&#60;p&#62;Favor falar no whatsapp.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;11-02-2025 19:20&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_86 \n\n Chamado: Descrição\n\n Título : Acesso Sistema \n Requerentes :  tecnomulti  \n Data de abertura : 11-02-2025 12:10\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - michele.souza@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Acesso Sistema \n2) E-MAIL : michele.souza@tecnomulti.com\n3) TELEFONE : 8198555-5446\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nMudanca de setor, nao estou consiguindo acessa Vicky, Sap, OSPCONTROL \n \n\n\n[11-02-2025 19:20]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nFavor falar no whatsapp.\nData de abertura 11-02-2025 19:20\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-86/add_followup.1739312428.422224552@oswintech.ddns.net','','mailing','add_followup'),
(1171,'Ticket',86,4,2,0,0,'2025-02-11 22:20:27','2025-02-11 22:20:27',NULL,'[GLPI #0000086] Novo acompanhamento Acesso Sistema ','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000086] Novo acompanhamento Acesso Sistema &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_86\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_86&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Acesso Sistema  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:11-02-2025 12:10 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- michele.souza@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Acesso Sistema &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;michele.souza@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;8198555-5446&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Mudanca de setor, nao estou consiguindo acessa Vicky, Sap, OSPCONTROL &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [11-02-2025 19:20]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, &#60;/p&#62;\r\n&#60;p&#62;Favor falar no whatsapp.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;11-02-2025 19:20&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_86 \n\n Chamado: Descrição\n\n Título : Acesso Sistema \n Requerentes :  tecnomulti  \n Data de abertura : 11-02-2025 12:10\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - michele.souza@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Acesso Sistema \n2) E-MAIL : michele.souza@tecnomulti.com\n3) TELEFONE : 8198555-5446\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nMudanca de setor, nao estou consiguindo acessa Vicky, Sap, OSPCONTROL \n \n\n\n[11-02-2025 19:20]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nFavor falar no whatsapp.\nData de abertura 11-02-2025 19:20\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-86/add_followup.1739312428.1971454513@oswintech.ddns.net','','mailing','add_followup'),
(1172,'Ticket',86,4,2,1,0,'2025-02-11 22:20:38','2025-02-11 22:20:38','2025-02-12 11:54:03','[GLPI #0000086] Atualização de um chamado Acesso Sistema ',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_86 \n\n Chamado: Descrição\n\n Título : Acesso Sistema \n Requerentes :  tecnomulti  \n Data de abertura : 11-02-2025 12:10\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - michele.souza@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Acesso Sistema \n2) E-MAIL : michele.souza@tecnomulti.com\n3) TELEFONE : 8198555-5446\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nMudanca de setor, nao estou consiguindo acessa Vicky, Sap, OSPCONTROL \n \n\n\n[11-02-2025 19:20]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nFavor falar no whatsapp.\nData de abertura 11-02-2025 19:20\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','update'),
(1173,'Ticket',86,4,2,0,0,'2025-02-11 22:20:38','2025-02-11 22:20:38',NULL,'[GLPI #0000086] Atualização de um chamado Acesso Sistema ','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000086] Atualiza&#38;ccedil;&#38;atilde;o de um chamado Acesso Sistema &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_86\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_86&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Acesso Sistema  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:11-02-2025 12:10 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- michele.souza@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Acesso Sistema &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;michele.souza@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;8198555-5446&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Mudanca de setor, nao estou consiguindo acessa Vicky, Sap, OSPCONTROL &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [11-02-2025 19:20]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, &#60;/p&#62;\r\n&#60;p&#62;Favor falar no whatsapp.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;11-02-2025 19:20&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_86 \n\n Chamado: Descrição\n\n Título : Acesso Sistema \n Requerentes :  tecnomulti  \n Data de abertura : 11-02-2025 12:10\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - michele.souza@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Acesso Sistema \n2) E-MAIL : michele.souza@tecnomulti.com\n3) TELEFONE : 8198555-5446\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nMudanca de setor, nao estou consiguindo acessa Vicky, Sap, OSPCONTROL \n \n\n\n[11-02-2025 19:20]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nFavor falar no whatsapp.\nData de abertura 11-02-2025 19:20\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-86/update.1739312438.1165097675@oswintech.ddns.net','','mailing','update'),
(1174,'Ticket',86,4,2,0,0,'2025-02-11 22:20:38','2025-02-11 22:20:38',NULL,'[GLPI #0000086] Atualização de um chamado Acesso Sistema ','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000086] Atualiza&#38;ccedil;&#38;atilde;o de um chamado Acesso Sistema &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_86\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_86&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Acesso Sistema  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:11-02-2025 12:10 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- michele.souza@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Acesso Sistema &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;michele.souza@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;8198555-5446&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Mudanca de setor, nao estou consiguindo acessa Vicky, Sap, OSPCONTROL &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [11-02-2025 19:20]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, &#60;/p&#62;\r\n&#60;p&#62;Favor falar no whatsapp.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;11-02-2025 19:20&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_86 \n\n Chamado: Descrição\n\n Título : Acesso Sistema \n Requerentes :  tecnomulti  \n Data de abertura : 11-02-2025 12:10\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - michele.souza@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Acesso Sistema \n2) E-MAIL : michele.souza@tecnomulti.com\n3) TELEFONE : 8198555-5446\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nMudanca de setor, nao estou consiguindo acessa Vicky, Sap, OSPCONTROL \n \n\n\n[11-02-2025 19:20]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nFavor falar no whatsapp.\nData de abertura 11-02-2025 19:20\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-86/update.1739312438.1801240333@oswintech.ddns.net','','mailing','update'),
(1175,'PluginFormcreatorFormAnswer',51,29,2,0,0,'2025-02-12 11:56:10','2025-02-12 11:56:10',NULL,'[GLPI] Sua requisição foi salva','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI] Sua requisi&#38;ccedil;&#38;atilde;o foi salva&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;p&#62;Olá,&#60;br /&#62;Sua requisição do GLPI foi salva com sucesso com o número 51 e transmitido para a equipe de helpdesk.&#60;br /&#62;Você pode ver suas respostas no seguinte link:&#60;br /&#62;https://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=51&#60;/p&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;','Olá,\nSua requisição do GLPI foi salva com sucesso com o número 51 e transmitido para a equipe de helpdesk.\nVocê pode ver suas respostas no seguinte link:\nhttps://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=51\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-PluginFormcreatorFormAnswer-51/plugin_formcreator_form_created.1739361370.1115551010@oswintech.ddns.net','','mailing','plugin_formcreator_form_created'),
(1176,'Ticket',87,4,2,1,0,'2025-02-12 11:56:10','2025-02-12 11:56:10','2025-02-12 11:56:16','[GLPI #0000087] Novo chamado ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_87 \n\n Chamado: Descrição\n\n Título : ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK\n Requerentes :  tecnomulti  \n Data de abertura : 12-02-2025 08:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK\n2) E-MAIL : gilmar.lourenco@tecnomulti.com\n3) TELEFONE : 84988113027\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nO progresso do Outlook indica o recebimento dos e-mails, porém, nada aparece na caixa de entrada, nem nas pastas com regras.\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(1177,'Ticket',87,4,2,1,0,'2025-02-12 11:56:10','2025-02-12 11:56:10','2025-02-12 11:57:05','[GLPI #0000087] Novo chamado ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_87 \n\n Chamado: Descrição\n\n Título : ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK\n Requerentes :  tecnomulti  \n Data de abertura : 12-02-2025 08:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK\n2) E-MAIL : gilmar.lourenco@tecnomulti.com\n3) TELEFONE : 84988113027\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nO progresso do Outlook indica o recebimento dos e-mails, porém, nada aparece na caixa de entrada, nem nas pastas com regras.\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(1178,'Ticket',87,4,2,0,0,'2025-02-12 11:56:10','2025-02-12 11:56:10',NULL,'[GLPI #0000087] Novo chamado ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_87 \n\n Chamado: Descrição\n\n Título : ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK\n Requerentes :  tecnomulti  \n Data de abertura : 12-02-2025 08:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK\n2) E-MAIL : gilmar.lourenco@tecnomulti.com\n3) TELEFONE : 84988113027\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nO progresso do Outlook indica o recebimento dos e-mails, porém, nada aparece na caixa de entrada, nem nas pastas com regras.\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new');
INSERT INTO `glpi_queuednotifications` VALUES
(1179,'Ticket',87,4,2,1,0,'2025-02-12 11:56:10','2025-02-12 11:56:10','2025-02-12 17:41:57','[GLPI #0000087] Novo chamado ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_87 \n\n Chamado: Descrição\n\n Título : ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK\n Requerentes :  tecnomulti  \n Data de abertura : 12-02-2025 08:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK\n2) E-MAIL : gilmar.lourenco@tecnomulti.com\n3) TELEFONE : 84988113027\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nO progresso do Outlook indica o recebimento dos e-mails, porém, nada aparece na caixa de entrada, nem nas pastas com regras.\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(1180,'Ticket',87,4,2,0,0,'2025-02-12 11:56:10','2025-02-12 11:56:10',NULL,'[GLPI #0000087] Novo chamado ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000087] Novo chamado ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_87\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_87&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:12-02-2025 08:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;gilmar.lourenco@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84988113027&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;O progresso do Outlook indica o recebimento dos e-mails, porém, nada aparece na caixa de entrada, nem nas pastas com regras.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_87 \n\n Chamado: Descrição\n\n Título : ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK\n Requerentes :  tecnomulti  \n Data de abertura : 12-02-2025 08:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK\n2) E-MAIL : gilmar.lourenco@tecnomulti.com\n3) TELEFONE : 84988113027\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nO progresso do Outlook indica o recebimento dos e-mails, porém, nada aparece na caixa de entrada, nem nas pastas com regras.\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-87/new@oswintech.ddns.net','','mailing','new'),
(1181,'Ticket',87,4,2,0,0,'2025-02-12 11:56:10','2025-02-12 11:56:10',NULL,'[GLPI #0000087] Novo chamado ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000087] Novo chamado ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_87\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_87&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:12-02-2025 08:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;gilmar.lourenco@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84988113027&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;O progresso do Outlook indica o recebimento dos e-mails, porém, nada aparece na caixa de entrada, nem nas pastas com regras.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_87 \n\n Chamado: Descrição\n\n Título : ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK\n Requerentes :  tecnomulti  \n Data de abertura : 12-02-2025 08:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK\n2) E-MAIL : gilmar.lourenco@tecnomulti.com\n3) TELEFONE : 84988113027\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nO progresso do Outlook indica o recebimento dos e-mails, porém, nada aparece na caixa de entrada, nem nas pastas com regras.\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-87/new@oswintech.ddns.net','','mailing','new'),
(1182,'Ticket',87,4,2,0,0,'2025-02-12 11:56:10','2025-02-12 11:56:10',NULL,'[GLPI #0000087] Novo chamado ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000087] Novo chamado ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_87\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_87&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:12-02-2025 08:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;gilmar.lourenco@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84988113027&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;O progresso do Outlook indica o recebimento dos e-mails, porém, nada aparece na caixa de entrada, nem nas pastas com regras.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_87 \n\n Chamado: Descrição\n\n Título : ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK\n Requerentes :  tecnomulti  \n Data de abertura : 12-02-2025 08:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK\n2) E-MAIL : gilmar.lourenco@tecnomulti.com\n3) TELEFONE : 84988113027\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nO progresso do Outlook indica o recebimento dos e-mails, porém, nada aparece na caixa de entrada, nem nas pastas com regras.\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-87/new@oswintech.ddns.net','','mailing','new'),
(1183,'Ticket',87,4,2,0,0,'2025-02-12 11:56:10','2025-02-12 11:56:10',NULL,'[GLPI #0000087] Novo chamado ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000087] Novo chamado ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_87\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_87&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:12-02-2025 08:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;gilmar.lourenco@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84988113027&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;O progresso do Outlook indica o recebimento dos e-mails, porém, nada aparece na caixa de entrada, nem nas pastas com regras.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_87 \n\n Chamado: Descrição\n\n Título : ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK\n Requerentes :  tecnomulti  \n Data de abertura : 12-02-2025 08:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK\n2) E-MAIL : gilmar.lourenco@tecnomulti.com\n3) TELEFONE : 84988113027\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nO progresso do Outlook indica o recebimento dos e-mails, porém, nada aparece na caixa de entrada, nem nas pastas com regras.\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-87/new@oswintech.ddns.net','','mailing','new'),
(1184,'Ticket',87,4,2,1,0,'2025-02-12 12:07:07','2025-02-12 12:07:07','2025-02-12 12:07:32','[GLPI #0000087] Novo acompanhamento ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_87 \n\n Chamado: Descrição\n\n Título : ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK\n Requerentes :  tecnomulti  \n Data de abertura : 12-02-2025 08:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - gilmar.lourenco@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK\n2) E-MAIL : gilmar.lourenco@tecnomulti.com\n3) TELEFONE : 84988113027\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nO progresso do Outlook indica o recebimento dos e-mails, porém, nada aparece na caixa de entrada, nem nas pastas com regras.\n \n\n\n[12-02-2025 09:07]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nMe passe o ID do anydesk.\nData de abertura 12-02-2025 09:07\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1185,'Ticket',87,4,2,1,0,'2025-02-12 12:07:07','2025-02-12 12:07:07','2025-02-12 12:07:13','[GLPI #0000087] Novo acompanhamento ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_87 \n\n Chamado: Descrição\n\n Título : ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK\n Requerentes :  tecnomulti  \n Data de abertura : 12-02-2025 08:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - gilmar.lourenco@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK\n2) E-MAIL : gilmar.lourenco@tecnomulti.com\n3) TELEFONE : 84988113027\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nO progresso do Outlook indica o recebimento dos e-mails, porém, nada aparece na caixa de entrada, nem nas pastas com regras.\n \n\n\n[12-02-2025 09:07]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nMe passe o ID do anydesk.\nData de abertura 12-02-2025 09:07\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1186,'Ticket',87,4,2,0,0,'2025-02-12 12:07:07','2025-02-12 12:07:07',NULL,'[GLPI #0000087] Novo acompanhamento ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_87 \n\n Chamado: Descrição\n\n Título : ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK\n Requerentes :  tecnomulti  \n Data de abertura : 12-02-2025 08:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - gilmar.lourenco@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK\n2) E-MAIL : gilmar.lourenco@tecnomulti.com\n3) TELEFONE : 84988113027\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nO progresso do Outlook indica o recebimento dos e-mails, porém, nada aparece na caixa de entrada, nem nas pastas com regras.\n \n\n\n[12-02-2025 09:07]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nMe passe o ID do anydesk.\nData de abertura 12-02-2025 09:07\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1187,'Ticket',87,4,2,1,0,'2025-02-12 12:07:07','2025-02-12 12:07:07','2025-02-12 17:41:57','[GLPI #0000087] Novo acompanhamento ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_87 \n\n Chamado: Descrição\n\n Título : ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK\n Requerentes :  tecnomulti  \n Data de abertura : 12-02-2025 08:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - gilmar.lourenco@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK\n2) E-MAIL : gilmar.lourenco@tecnomulti.com\n3) TELEFONE : 84988113027\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nO progresso do Outlook indica o recebimento dos e-mails, porém, nada aparece na caixa de entrada, nem nas pastas com regras.\n \n\n\n[12-02-2025 09:07]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nMe passe o ID do anydesk.\nData de abertura 12-02-2025 09:07\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1188,'Ticket',87,4,2,0,0,'2025-02-12 12:07:07','2025-02-12 12:07:07',NULL,'[GLPI #0000087] Novo acompanhamento ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000087] Novo acompanhamento ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_87\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_87&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:12-02-2025 08:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- gilmar.lourenco@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;gilmar.lourenco@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84988113027&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;O progresso do Outlook indica o recebimento dos e-mails, porém, nada aparece na caixa de entrada, nem nas pastas com regras.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [12-02-2025 09:07]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Me passe o ID do anydesk.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;12-02-2025 09:07&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_87 \n\n Chamado: Descrição\n\n Título : ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK\n Requerentes :  tecnomulti  \n Data de abertura : 12-02-2025 08:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - gilmar.lourenco@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK\n2) E-MAIL : gilmar.lourenco@tecnomulti.com\n3) TELEFONE : 84988113027\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nO progresso do Outlook indica o recebimento dos e-mails, porém, nada aparece na caixa de entrada, nem nas pastas com regras.\n \n\n\n[12-02-2025 09:07]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nMe passe o ID do anydesk.\nData de abertura 12-02-2025 09:07\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-87/add_followup.1739362028.1464514492@oswintech.ddns.net','','mailing','add_followup'),
(1189,'Ticket',87,4,2,0,0,'2025-02-12 12:07:07','2025-02-12 12:07:07',NULL,'[GLPI #0000087] Novo acompanhamento ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000087] Novo acompanhamento ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_87\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_87&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:12-02-2025 08:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- gilmar.lourenco@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;gilmar.lourenco@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84988113027&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;O progresso do Outlook indica o recebimento dos e-mails, porém, nada aparece na caixa de entrada, nem nas pastas com regras.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [12-02-2025 09:07]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Me passe o ID do anydesk.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;12-02-2025 09:07&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_87 \n\n Chamado: Descrição\n\n Título : ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK\n Requerentes :  tecnomulti  \n Data de abertura : 12-02-2025 08:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - gilmar.lourenco@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK\n2) E-MAIL : gilmar.lourenco@tecnomulti.com\n3) TELEFONE : 84988113027\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nO progresso do Outlook indica o recebimento dos e-mails, porém, nada aparece na caixa de entrada, nem nas pastas com regras.\n \n\n\n[12-02-2025 09:07]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nMe passe o ID do anydesk.\nData de abertura 12-02-2025 09:07\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-87/add_followup.1739362028.520255803@oswintech.ddns.net','','mailing','add_followup'),
(1190,'Ticket',87,4,2,0,0,'2025-02-12 12:07:07','2025-02-12 12:07:07',NULL,'[GLPI #0000087] Novo acompanhamento ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000087] Novo acompanhamento ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_87\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_87&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:12-02-2025 08:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- gilmar.lourenco@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;gilmar.lourenco@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84988113027&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;O progresso do Outlook indica o recebimento dos e-mails, porém, nada aparece na caixa de entrada, nem nas pastas com regras.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [12-02-2025 09:07]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Me passe o ID do anydesk.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;12-02-2025 09:07&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_87 \n\n Chamado: Descrição\n\n Título : ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK\n Requerentes :  tecnomulti  \n Data de abertura : 12-02-2025 08:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - gilmar.lourenco@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK\n2) E-MAIL : gilmar.lourenco@tecnomulti.com\n3) TELEFONE : 84988113027\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nO progresso do Outlook indica o recebimento dos e-mails, porém, nada aparece na caixa de entrada, nem nas pastas com regras.\n \n\n\n[12-02-2025 09:07]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nMe passe o ID do anydesk.\nData de abertura 12-02-2025 09:07\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-87/add_followup.1739362028.779716266@oswintech.ddns.net','','mailing','add_followup'),
(1191,'Ticket',87,4,2,0,0,'2025-02-12 12:07:07','2025-02-12 12:07:07',NULL,'[GLPI #0000087] Novo acompanhamento ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000087] Novo acompanhamento ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_87\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_87&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:12-02-2025 08:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- gilmar.lourenco@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;gilmar.lourenco@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84988113027&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;O progresso do Outlook indica o recebimento dos e-mails, porém, nada aparece na caixa de entrada, nem nas pastas com regras.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [12-02-2025 09:07]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Me passe o ID do anydesk.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;12-02-2025 09:07&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_87 \n\n Chamado: Descrição\n\n Título : ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK\n Requerentes :  tecnomulti  \n Data de abertura : 12-02-2025 08:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - gilmar.lourenco@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK\n2) E-MAIL : gilmar.lourenco@tecnomulti.com\n3) TELEFONE : 84988113027\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nO progresso do Outlook indica o recebimento dos e-mails, porém, nada aparece na caixa de entrada, nem nas pastas com regras.\n \n\n\n[12-02-2025 09:07]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nMe passe o ID do anydesk.\nData de abertura 12-02-2025 09:07\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-87/add_followup.1739362028.727907473@oswintech.ddns.net','','mailing','add_followup'),
(1192,'Ticket',87,4,2,1,0,'2025-02-12 12:07:12','2025-02-12 12:07:12','2025-02-12 12:07:32','[GLPI #0000087] Atualização de um chamado ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_87 \n\n Chamado: Descrição\n\n Título : ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK\n Requerentes :  tecnomulti  \n Data de abertura : 12-02-2025 08:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - gilmar.lourenco@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK\n2) E-MAIL : gilmar.lourenco@tecnomulti.com\n3) TELEFONE : 84988113027\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nO progresso do Outlook indica o recebimento dos e-mails, porém, nada aparece na caixa de entrada, nem nas pastas com regras.\n \n\n\n[12-02-2025 09:07]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nMe passe o ID do anydesk.\nData de abertura 12-02-2025 09:07\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','update'),
(1193,'Ticket',87,4,2,0,0,'2025-02-12 12:07:12','2025-02-12 12:07:12',NULL,'[GLPI #0000087] Atualização de um chamado ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000087] Atualiza&#38;ccedil;&#38;atilde;o de um chamado ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_87\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_87&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:12-02-2025 08:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- gilmar.lourenco@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;gilmar.lourenco@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84988113027&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;O progresso do Outlook indica o recebimento dos e-mails, porém, nada aparece na caixa de entrada, nem nas pastas com regras.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [12-02-2025 09:07]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Me passe o ID do anydesk.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;12-02-2025 09:07&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_87 \n\n Chamado: Descrição\n\n Título : ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK\n Requerentes :  tecnomulti  \n Data de abertura : 12-02-2025 08:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - gilmar.lourenco@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK\n2) E-MAIL : gilmar.lourenco@tecnomulti.com\n3) TELEFONE : 84988113027\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nO progresso do Outlook indica o recebimento dos e-mails, porém, nada aparece na caixa de entrada, nem nas pastas com regras.\n \n\n\n[12-02-2025 09:07]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nMe passe o ID do anydesk.\nData de abertura 12-02-2025 09:07\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-87/update.1739362032.1668584031@oswintech.ddns.net','','mailing','update'),
(1194,'Ticket',87,4,2,0,0,'2025-02-12 12:07:12','2025-02-12 12:07:12',NULL,'[GLPI #0000087] Atualização de um chamado ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000087] Atualiza&#38;ccedil;&#38;atilde;o de um chamado ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_87\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_87&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:12-02-2025 08:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- gilmar.lourenco@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;gilmar.lourenco@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84988113027&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;O progresso do Outlook indica o recebimento dos e-mails, porém, nada aparece na caixa de entrada, nem nas pastas com regras.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [12-02-2025 09:07]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Me passe o ID do anydesk.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;12-02-2025 09:07&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_87 \n\n Chamado: Descrição\n\n Título : ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK\n Requerentes :  tecnomulti  \n Data de abertura : 12-02-2025 08:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - gilmar.lourenco@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK\n2) E-MAIL : gilmar.lourenco@tecnomulti.com\n3) TELEFONE : 84988113027\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nO progresso do Outlook indica o recebimento dos e-mails, porém, nada aparece na caixa de entrada, nem nas pastas com regras.\n \n\n\n[12-02-2025 09:07]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nMe passe o ID do anydesk.\nData de abertura 12-02-2025 09:07\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-87/update.1739362032.1142464014@oswintech.ddns.net','','mailing','update'),
(1195,'Ticket',87,4,2,1,0,'2025-02-12 12:34:04','2025-02-12 12:34:04','2025-02-12 12:43:07','[GLPI #0000087] Novo acompanhamento ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_87 \n\n Chamado: Descrição\n\n Título : ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK\n Requerentes :  tecnomulti  \n Data de abertura : 12-02-2025 08:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - gilmar.lourenco@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK\n2) E-MAIL : gilmar.lourenco@tecnomulti.com\n3) TELEFONE : 84988113027\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nO progresso do Outlook indica o recebimento dos e-mails, porém, nada aparece na caixa de entrada, nem nas pastas com regras.\n \n\n\n[12-02-2025 09:34]\nAutor Alexsandro Cruz\nDescrição Arquivo .PST do outlook atingiu limite estipulado. Foi criado um novo perfil e configurado o arquivo antigo para consulta.\nData de abertura 12-02-2025 09:34\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[12-02-2025 09:07]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nMe passe o ID do anydesk.\nData de abertura 12-02-2025 09:07\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1196,'Ticket',87,4,2,1,0,'2025-02-12 12:34:04','2025-02-12 12:34:04','2025-02-12 12:34:10','[GLPI #0000087] Novo acompanhamento ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_87 \n\n Chamado: Descrição\n\n Título : ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK\n Requerentes :  tecnomulti  \n Data de abertura : 12-02-2025 08:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - gilmar.lourenco@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK\n2) E-MAIL : gilmar.lourenco@tecnomulti.com\n3) TELEFONE : 84988113027\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nO progresso do Outlook indica o recebimento dos e-mails, porém, nada aparece na caixa de entrada, nem nas pastas com regras.\n \n\n\n[12-02-2025 09:34]\nAutor Alexsandro Cruz\nDescrição Arquivo .PST do outlook atingiu limite estipulado. Foi criado um novo perfil e configurado o arquivo antigo para consulta.\nData de abertura 12-02-2025 09:34\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[12-02-2025 09:07]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nMe passe o ID do anydesk.\nData de abertura 12-02-2025 09:07\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1197,'Ticket',87,4,2,0,0,'2025-02-12 12:34:04','2025-02-12 12:34:04',NULL,'[GLPI #0000087] Novo acompanhamento ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_87 \n\n Chamado: Descrição\n\n Título : ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK\n Requerentes :  tecnomulti  \n Data de abertura : 12-02-2025 08:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - gilmar.lourenco@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK\n2) E-MAIL : gilmar.lourenco@tecnomulti.com\n3) TELEFONE : 84988113027\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nO progresso do Outlook indica o recebimento dos e-mails, porém, nada aparece na caixa de entrada, nem nas pastas com regras.\n \n\n\n[12-02-2025 09:34]\nAutor Alexsandro Cruz\nDescrição Arquivo .PST do outlook atingiu limite estipulado. Foi criado um novo perfil e configurado o arquivo antigo para consulta.\nData de abertura 12-02-2025 09:34\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[12-02-2025 09:07]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nMe passe o ID do anydesk.\nData de abertura 12-02-2025 09:07\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1198,'Ticket',87,4,2,1,0,'2025-02-12 12:34:04','2025-02-12 12:34:04','2025-02-12 17:41:57','[GLPI #0000087] Novo acompanhamento ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_87 \n\n Chamado: Descrição\n\n Título : ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK\n Requerentes :  tecnomulti  \n Data de abertura : 12-02-2025 08:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - gilmar.lourenco@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK\n2) E-MAIL : gilmar.lourenco@tecnomulti.com\n3) TELEFONE : 84988113027\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nO progresso do Outlook indica o recebimento dos e-mails, porém, nada aparece na caixa de entrada, nem nas pastas com regras.\n \n\n\n[12-02-2025 09:34]\nAutor Alexsandro Cruz\nDescrição Arquivo .PST do outlook atingiu limite estipulado. Foi criado um novo perfil e configurado o arquivo antigo para consulta.\nData de abertura 12-02-2025 09:34\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[12-02-2025 09:07]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nMe passe o ID do anydesk.\nData de abertura 12-02-2025 09:07\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1199,'Ticket',87,4,2,0,0,'2025-02-12 12:34:04','2025-02-12 12:34:04',NULL,'[GLPI #0000087] Novo acompanhamento ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000087] Novo acompanhamento ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_87\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_87&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:12-02-2025 08:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- gilmar.lourenco@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;gilmar.lourenco@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84988113027&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;O progresso do Outlook indica o recebimento dos e-mails, porém, nada aparece na caixa de entrada, nem nas pastas com regras.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [12-02-2025 09:34]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Arquivo .PST do outlook atingiu limite estipulado. Foi criado um novo perfil e configurado o arquivo antigo para consulta.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;12-02-2025 09:34&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [12-02-2025 09:07]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Me passe o ID do anydesk.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;12-02-2025 09:07&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_87 \n\n Chamado: Descrição\n\n Título : ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK\n Requerentes :  tecnomulti  \n Data de abertura : 12-02-2025 08:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - gilmar.lourenco@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK\n2) E-MAIL : gilmar.lourenco@tecnomulti.com\n3) TELEFONE : 84988113027\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nO progresso do Outlook indica o recebimento dos e-mails, porém, nada aparece na caixa de entrada, nem nas pastas com regras.\n \n\n\n[12-02-2025 09:34]\nAutor Alexsandro Cruz\nDescrição Arquivo .PST do outlook atingiu limite estipulado. Foi criado um novo perfil e configurado o arquivo antigo para consulta.\nData de abertura 12-02-2025 09:34\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[12-02-2025 09:07]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nMe passe o ID do anydesk.\nData de abertura 12-02-2025 09:07\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-87/add_followup.1739363644.1934600266@oswintech.ddns.net','','mailing','add_followup'),
(1200,'Ticket',87,4,2,0,0,'2025-02-12 12:34:04','2025-02-12 12:34:04',NULL,'[GLPI #0000087] Novo acompanhamento ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000087] Novo acompanhamento ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_87\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_87&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:12-02-2025 08:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- gilmar.lourenco@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;gilmar.lourenco@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84988113027&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;O progresso do Outlook indica o recebimento dos e-mails, porém, nada aparece na caixa de entrada, nem nas pastas com regras.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [12-02-2025 09:34]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Arquivo .PST do outlook atingiu limite estipulado. Foi criado um novo perfil e configurado o arquivo antigo para consulta.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;12-02-2025 09:34&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [12-02-2025 09:07]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Me passe o ID do anydesk.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;12-02-2025 09:07&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_87 \n\n Chamado: Descrição\n\n Título : ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK\n Requerentes :  tecnomulti  \n Data de abertura : 12-02-2025 08:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - gilmar.lourenco@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK\n2) E-MAIL : gilmar.lourenco@tecnomulti.com\n3) TELEFONE : 84988113027\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nO progresso do Outlook indica o recebimento dos e-mails, porém, nada aparece na caixa de entrada, nem nas pastas com regras.\n \n\n\n[12-02-2025 09:34]\nAutor Alexsandro Cruz\nDescrição Arquivo .PST do outlook atingiu limite estipulado. Foi criado um novo perfil e configurado o arquivo antigo para consulta.\nData de abertura 12-02-2025 09:34\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[12-02-2025 09:07]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nMe passe o ID do anydesk.\nData de abertura 12-02-2025 09:07\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-87/add_followup.1739363644.1258604141@oswintech.ddns.net','','mailing','add_followup'),
(1201,'Ticket',87,4,2,0,0,'2025-02-12 12:34:04','2025-02-12 12:34:04',NULL,'[GLPI #0000087] Novo acompanhamento ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000087] Novo acompanhamento ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_87\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_87&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:12-02-2025 08:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- gilmar.lourenco@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;gilmar.lourenco@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84988113027&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;O progresso do Outlook indica o recebimento dos e-mails, porém, nada aparece na caixa de entrada, nem nas pastas com regras.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [12-02-2025 09:34]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Arquivo .PST do outlook atingiu limite estipulado. Foi criado um novo perfil e configurado o arquivo antigo para consulta.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;12-02-2025 09:34&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [12-02-2025 09:07]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Me passe o ID do anydesk.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;12-02-2025 09:07&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_87 \n\n Chamado: Descrição\n\n Título : ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK\n Requerentes :  tecnomulti  \n Data de abertura : 12-02-2025 08:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - gilmar.lourenco@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK\n2) E-MAIL : gilmar.lourenco@tecnomulti.com\n3) TELEFONE : 84988113027\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nO progresso do Outlook indica o recebimento dos e-mails, porém, nada aparece na caixa de entrada, nem nas pastas com regras.\n \n\n\n[12-02-2025 09:34]\nAutor Alexsandro Cruz\nDescrição Arquivo .PST do outlook atingiu limite estipulado. Foi criado um novo perfil e configurado o arquivo antigo para consulta.\nData de abertura 12-02-2025 09:34\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[12-02-2025 09:07]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nMe passe o ID do anydesk.\nData de abertura 12-02-2025 09:07\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-87/add_followup.1739363644.1068926192@oswintech.ddns.net','','mailing','add_followup'),
(1202,'Ticket',87,4,2,0,0,'2025-02-12 12:34:04','2025-02-12 12:34:04',NULL,'[GLPI #0000087] Novo acompanhamento ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000087] Novo acompanhamento ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_87\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_87&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:12-02-2025 08:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- gilmar.lourenco@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;gilmar.lourenco@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84988113027&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;O progresso do Outlook indica o recebimento dos e-mails, porém, nada aparece na caixa de entrada, nem nas pastas com regras.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [12-02-2025 09:34]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Arquivo .PST do outlook atingiu limite estipulado. Foi criado um novo perfil e configurado o arquivo antigo para consulta.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;12-02-2025 09:34&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [12-02-2025 09:07]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Me passe o ID do anydesk.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;12-02-2025 09:07&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_87 \n\n Chamado: Descrição\n\n Título : ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK\n Requerentes :  tecnomulti  \n Data de abertura : 12-02-2025 08:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - gilmar.lourenco@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK\n2) E-MAIL : gilmar.lourenco@tecnomulti.com\n3) TELEFONE : 84988113027\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nO progresso do Outlook indica o recebimento dos e-mails, porém, nada aparece na caixa de entrada, nem nas pastas com regras.\n \n\n\n[12-02-2025 09:34]\nAutor Alexsandro Cruz\nDescrição Arquivo .PST do outlook atingiu limite estipulado. Foi criado um novo perfil e configurado o arquivo antigo para consulta.\nData de abertura 12-02-2025 09:34\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[12-02-2025 09:07]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nMe passe o ID do anydesk.\nData de abertura 12-02-2025 09:07\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-87/add_followup.1739363644.1149607007@oswintech.ddns.net','','mailing','add_followup'),
(1203,'Ticket',87,4,2,0,0,'2025-02-12 12:34:09','2025-02-12 12:34:09',NULL,'[GLPI #0000087] Encerramento do chamado ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000087] Encerramento do chamado ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_87\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_87&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:12-02-2025 08:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:12-02-2025 09:34 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- gilmar.lourenco@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;gilmar.lourenco@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84988113027&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;O progresso do Outlook indica o recebimento dos e-mails, porém, nada aparece na caixa de entrada, nem nas pastas com regras.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 12-02-2025 09:34&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [12-02-2025 09:34]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Arquivo .PST do outlook atingiu limite estipulado. Foi criado um novo perfil e configurado o arquivo antigo para consulta.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;12-02-2025 09:34&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [12-02-2025 09:07]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Me passe o ID do anydesk.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;12-02-2025 09:07&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_87 \n\n Chamado: Descrição\n\n Título : ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK\n Requerentes :  tecnomulti  \n Data de abertura : 12-02-2025 08:56\n Data de fechamento : 12-02-2025 09:34\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - gilmar.lourenco@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK\n2) E-MAIL : gilmar.lourenco@tecnomulti.com\n3) TELEFONE : 84988113027\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nO progresso do Outlook indica o recebimento dos e-mails, porém, nada aparece na caixa de entrada, nem nas pastas com regras.\n \n\n Data da solução : 12-02-2025 09:34\n Tipo de solução : \n Solução : \n \n\n\n[12-02-2025 09:34]\nAutor Alexsandro Cruz\nDescrição Arquivo .PST do outlook atingiu limite estipulado. Foi criado um novo perfil e configurado o arquivo antigo para consulta.\nData de abertura 12-02-2025 09:34\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[12-02-2025 09:07]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nMe passe o ID do anydesk.\nData de abertura 12-02-2025 09:07\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-87/closed.1739363650.782806942@oswintech.ddns.net','','mailing','closed'),
(1204,'Ticket',87,4,2,0,0,'2025-02-12 12:34:09','2025-02-12 12:34:09',NULL,'[GLPI #0000087] Encerramento do chamado ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000087] Encerramento do chamado ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_87\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_87&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:12-02-2025 08:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:12-02-2025 09:34 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- gilmar.lourenco@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;gilmar.lourenco@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84988113027&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;O progresso do Outlook indica o recebimento dos e-mails, porém, nada aparece na caixa de entrada, nem nas pastas com regras.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 12-02-2025 09:34&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [12-02-2025 09:34]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Arquivo .PST do outlook atingiu limite estipulado. Foi criado um novo perfil e configurado o arquivo antigo para consulta.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;12-02-2025 09:34&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [12-02-2025 09:07]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia,&#60;/p&#62;\r\n&#60;p&#62;Me passe o ID do anydesk.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;12-02-2025 09:07&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_87 \n\n Chamado: Descrição\n\n Título : ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK\n Requerentes :  tecnomulti  \n Data de abertura : 12-02-2025 08:56\n Data de fechamento : 12-02-2025 09:34\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - gilmar.lourenco@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK\n2) E-MAIL : gilmar.lourenco@tecnomulti.com\n3) TELEFONE : 84988113027\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nO progresso do Outlook indica o recebimento dos e-mails, porém, nada aparece na caixa de entrada, nem nas pastas com regras.\n \n\n Data da solução : 12-02-2025 09:34\n Tipo de solução : \n Solução : \n \n\n\n[12-02-2025 09:34]\nAutor Alexsandro Cruz\nDescrição Arquivo .PST do outlook atingiu limite estipulado. Foi criado um novo perfil e configurado o arquivo antigo para consulta.\nData de abertura 12-02-2025 09:34\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[12-02-2025 09:07]\nAutor Alexsandro Cruz\nDescrição Bom dia,\n\nMe passe o ID do anydesk.\nData de abertura 12-02-2025 09:07\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-87/closed.1739363650.1211348405@oswintech.ddns.net','','mailing','closed'),
(1205,'Ticket',86,4,2,1,0,'2025-02-13 13:17:04','2025-02-13 13:17:04','2025-02-17 12:34:09','[GLPI #0000086] Novo acompanhamento Acesso Sistema ',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_86 \n\n Chamado: Descrição\n\n Título : Acesso Sistema \n Requerentes :  tecnomulti  \n Data de abertura : 11-02-2025 12:10\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - michele.souza@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Acesso Sistema \n2) E-MAIL : michele.souza@tecnomulti.com\n3) TELEFONE : 8198555-5446\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nMudanca de setor, nao estou consiguindo acessa Vicky, Sap, OSPCONTROL \n \n\n\n[13-02-2025 10:17]\nAutor Alexsandro Cruz\nDescrição Realizamos testes de acesso com usuários e senhas fornecido pela colaboradora e não acessou. Usei as credenciais de uma colaboradora ativa e funcionou normalmente. Informamos que terá que entrar em contato com a VIVO para pegar credenciais válidas. \nData de abertura 13-02-2025 10:17\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[11-02-2025 19:20]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nFavor falar no whatsapp.\nData de abertura 11-02-2025 19:20\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1206,'Ticket',86,4,2,1,0,'2025-02-13 13:17:04','2025-02-13 13:17:04','2025-02-13 13:17:06','[GLPI #0000086] Novo acompanhamento Acesso Sistema ',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_86 \n\n Chamado: Descrição\n\n Título : Acesso Sistema \n Requerentes :  tecnomulti  \n Data de abertura : 11-02-2025 12:10\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - michele.souza@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Acesso Sistema \n2) E-MAIL : michele.souza@tecnomulti.com\n3) TELEFONE : 8198555-5446\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nMudanca de setor, nao estou consiguindo acessa Vicky, Sap, OSPCONTROL \n \n\n\n[13-02-2025 10:17]\nAutor Alexsandro Cruz\nDescrição Realizamos testes de acesso com usuários e senhas fornecido pela colaboradora e não acessou. Usei as credenciais de uma colaboradora ativa e funcionou normalmente. Informamos que terá que entrar em contato com a VIVO para pegar credenciais válidas. \nData de abertura 13-02-2025 10:17\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[11-02-2025 19:20]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nFavor falar no whatsapp.\nData de abertura 11-02-2025 19:20\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1207,'Ticket',86,4,2,0,0,'2025-02-13 13:17:04','2025-02-13 13:17:04',NULL,'[GLPI #0000086] Novo acompanhamento Acesso Sistema ',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_86 \n\n Chamado: Descrição\n\n Título : Acesso Sistema \n Requerentes :  tecnomulti  \n Data de abertura : 11-02-2025 12:10\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - michele.souza@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Acesso Sistema \n2) E-MAIL : michele.souza@tecnomulti.com\n3) TELEFONE : 8198555-5446\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nMudanca de setor, nao estou consiguindo acessa Vicky, Sap, OSPCONTROL \n \n\n\n[13-02-2025 10:17]\nAutor Alexsandro Cruz\nDescrição Realizamos testes de acesso com usuários e senhas fornecido pela colaboradora e não acessou. Usei as credenciais de uma colaboradora ativa e funcionou normalmente. Informamos que terá que entrar em contato com a VIVO para pegar credenciais válidas. \nData de abertura 13-02-2025 10:17\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[11-02-2025 19:20]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nFavor falar no whatsapp.\nData de abertura 11-02-2025 19:20\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1208,'Ticket',86,4,2,1,0,'2025-02-13 13:17:04','2025-02-13 13:17:04','2025-02-14 03:20:28','[GLPI #0000086] Novo acompanhamento Acesso Sistema ',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_86 \n\n Chamado: Descrição\n\n Título : Acesso Sistema \n Requerentes :  tecnomulti  \n Data de abertura : 11-02-2025 12:10\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - michele.souza@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Acesso Sistema \n2) E-MAIL : michele.souza@tecnomulti.com\n3) TELEFONE : 8198555-5446\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nMudanca de setor, nao estou consiguindo acessa Vicky, Sap, OSPCONTROL \n \n\n\n[13-02-2025 10:17]\nAutor Alexsandro Cruz\nDescrição Realizamos testes de acesso com usuários e senhas fornecido pela colaboradora e não acessou. Usei as credenciais de uma colaboradora ativa e funcionou normalmente. Informamos que terá que entrar em contato com a VIVO para pegar credenciais válidas. \nData de abertura 13-02-2025 10:17\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[11-02-2025 19:20]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nFavor falar no whatsapp.\nData de abertura 11-02-2025 19:20\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1209,'Ticket',86,4,2,0,0,'2025-02-13 13:17:04','2025-02-13 13:17:04',NULL,'[GLPI #0000086] Novo acompanhamento Acesso Sistema ','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000086] Novo acompanhamento Acesso Sistema &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_86\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_86&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Acesso Sistema  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:11-02-2025 12:10 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- michele.souza@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Acesso Sistema &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;michele.souza@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;8198555-5446&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Mudanca de setor, nao estou consiguindo acessa Vicky, Sap, OSPCONTROL &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [13-02-2025 10:17]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Realizamos testes de acesso com usuários e senhas fornecido pela colaboradora e não acessou. Usei as credenciais de uma colaboradora ativa e funcionou normalmente. Informamos que terá que entrar em contato com a VIVO para pegar credenciais válidas. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;13-02-2025 10:17&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [11-02-2025 19:20]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, &#60;/p&#62;\r\n&#60;p&#62;Favor falar no whatsapp.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;11-02-2025 19:20&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_86 \n\n Chamado: Descrição\n\n Título : Acesso Sistema \n Requerentes :  tecnomulti  \n Data de abertura : 11-02-2025 12:10\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - michele.souza@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Acesso Sistema \n2) E-MAIL : michele.souza@tecnomulti.com\n3) TELEFONE : 8198555-5446\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nMudanca de setor, nao estou consiguindo acessa Vicky, Sap, OSPCONTROL \n \n\n\n[13-02-2025 10:17]\nAutor Alexsandro Cruz\nDescrição Realizamos testes de acesso com usuários e senhas fornecido pela colaboradora e não acessou. Usei as credenciais de uma colaboradora ativa e funcionou normalmente. Informamos que terá que entrar em contato com a VIVO para pegar credenciais válidas. \nData de abertura 13-02-2025 10:17\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[11-02-2025 19:20]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nFavor falar no whatsapp.\nData de abertura 11-02-2025 19:20\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-86/add_followup.1739452624.911071932@oswintech.ddns.net','','mailing','add_followup'),
(1210,'Ticket',86,4,2,0,0,'2025-02-13 13:17:04','2025-02-13 13:17:04',NULL,'[GLPI #0000086] Novo acompanhamento Acesso Sistema ','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000086] Novo acompanhamento Acesso Sistema &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_86\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_86&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Acesso Sistema  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:11-02-2025 12:10 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- michele.souza@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Acesso Sistema &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;michele.souza@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;8198555-5446&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Mudanca de setor, nao estou consiguindo acessa Vicky, Sap, OSPCONTROL &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [13-02-2025 10:17]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Realizamos testes de acesso com usuários e senhas fornecido pela colaboradora e não acessou. Usei as credenciais de uma colaboradora ativa e funcionou normalmente. Informamos que terá que entrar em contato com a VIVO para pegar credenciais válidas. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;13-02-2025 10:17&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [11-02-2025 19:20]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, &#60;/p&#62;\r\n&#60;p&#62;Favor falar no whatsapp.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;11-02-2025 19:20&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_86 \n\n Chamado: Descrição\n\n Título : Acesso Sistema \n Requerentes :  tecnomulti  \n Data de abertura : 11-02-2025 12:10\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - michele.souza@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Acesso Sistema \n2) E-MAIL : michele.souza@tecnomulti.com\n3) TELEFONE : 8198555-5446\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nMudanca de setor, nao estou consiguindo acessa Vicky, Sap, OSPCONTROL \n \n\n\n[13-02-2025 10:17]\nAutor Alexsandro Cruz\nDescrição Realizamos testes de acesso com usuários e senhas fornecido pela colaboradora e não acessou. Usei as credenciais de uma colaboradora ativa e funcionou normalmente. Informamos que terá que entrar em contato com a VIVO para pegar credenciais válidas. \nData de abertura 13-02-2025 10:17\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[11-02-2025 19:20]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nFavor falar no whatsapp.\nData de abertura 11-02-2025 19:20\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-86/add_followup.1739452624.1372696878@oswintech.ddns.net','','mailing','add_followup'),
(1211,'Ticket',86,4,2,0,0,'2025-02-13 13:17:04','2025-02-13 13:17:04',NULL,'[GLPI #0000086] Novo acompanhamento Acesso Sistema ','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000086] Novo acompanhamento Acesso Sistema &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_86\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_86&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Acesso Sistema  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:11-02-2025 12:10 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- michele.souza@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Acesso Sistema &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;michele.souza@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;8198555-5446&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Mudanca de setor, nao estou consiguindo acessa Vicky, Sap, OSPCONTROL &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [13-02-2025 10:17]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Realizamos testes de acesso com usuários e senhas fornecido pela colaboradora e não acessou. Usei as credenciais de uma colaboradora ativa e funcionou normalmente. Informamos que terá que entrar em contato com a VIVO para pegar credenciais válidas. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;13-02-2025 10:17&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [11-02-2025 19:20]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, &#60;/p&#62;\r\n&#60;p&#62;Favor falar no whatsapp.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;11-02-2025 19:20&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_86 \n\n Chamado: Descrição\n\n Título : Acesso Sistema \n Requerentes :  tecnomulti  \n Data de abertura : 11-02-2025 12:10\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - michele.souza@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Acesso Sistema \n2) E-MAIL : michele.souza@tecnomulti.com\n3) TELEFONE : 8198555-5446\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nMudanca de setor, nao estou consiguindo acessa Vicky, Sap, OSPCONTROL \n \n\n\n[13-02-2025 10:17]\nAutor Alexsandro Cruz\nDescrição Realizamos testes de acesso com usuários e senhas fornecido pela colaboradora e não acessou. Usei as credenciais de uma colaboradora ativa e funcionou normalmente. Informamos que terá que entrar em contato com a VIVO para pegar credenciais válidas. \nData de abertura 13-02-2025 10:17\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[11-02-2025 19:20]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nFavor falar no whatsapp.\nData de abertura 11-02-2025 19:20\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-86/add_followup.1739452624.490300214@oswintech.ddns.net','','mailing','add_followup'),
(1212,'Ticket',86,4,2,0,0,'2025-02-13 13:17:04','2025-02-13 13:17:04',NULL,'[GLPI #0000086] Novo acompanhamento Acesso Sistema ','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000086] Novo acompanhamento Acesso Sistema &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_86\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_86&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Acesso Sistema  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:11-02-2025 12:10 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- michele.souza@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Acesso Sistema &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;michele.souza@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;8198555-5446&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Mudanca de setor, nao estou consiguindo acessa Vicky, Sap, OSPCONTROL &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [13-02-2025 10:17]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Realizamos testes de acesso com usuários e senhas fornecido pela colaboradora e não acessou. Usei as credenciais de uma colaboradora ativa e funcionou normalmente. Informamos que terá que entrar em contato com a VIVO para pegar credenciais válidas. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;13-02-2025 10:17&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [11-02-2025 19:20]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, &#60;/p&#62;\r\n&#60;p&#62;Favor falar no whatsapp.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;11-02-2025 19:20&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_86 \n\n Chamado: Descrição\n\n Título : Acesso Sistema \n Requerentes :  tecnomulti  \n Data de abertura : 11-02-2025 12:10\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - michele.souza@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Acesso Sistema \n2) E-MAIL : michele.souza@tecnomulti.com\n3) TELEFONE : 8198555-5446\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nMudanca de setor, nao estou consiguindo acessa Vicky, Sap, OSPCONTROL \n \n\n\n[13-02-2025 10:17]\nAutor Alexsandro Cruz\nDescrição Realizamos testes de acesso com usuários e senhas fornecido pela colaboradora e não acessou. Usei as credenciais de uma colaboradora ativa e funcionou normalmente. Informamos que terá que entrar em contato com a VIVO para pegar credenciais válidas. \nData de abertura 13-02-2025 10:17\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[11-02-2025 19:20]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nFavor falar no whatsapp.\nData de abertura 11-02-2025 19:20\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-86/add_followup.1739452624.445540973@oswintech.ddns.net','','mailing','add_followup'),
(1213,'Ticket',86,4,2,0,0,'2025-02-13 13:17:14','2025-02-13 13:17:14',NULL,'[GLPI #0000086] Encerramento do chamado Acesso Sistema ','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000086] Encerramento do chamado Acesso Sistema &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_86\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_86&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Acesso Sistema  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:11-02-2025 12:10 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:13-02-2025 10:17 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- michele.souza@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Acesso Sistema &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;michele.souza@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;8198555-5446&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Mudanca de setor, nao estou consiguindo acessa Vicky, Sap, OSPCONTROL &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 13-02-2025 10:17&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [13-02-2025 10:17]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Realizamos testes de acesso com usuários e senhas fornecido pela colaboradora e não acessou. Usei as credenciais de uma colaboradora ativa e funcionou normalmente. Informamos que terá que entrar em contato com a VIVO para pegar credenciais válidas. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;13-02-2025 10:17&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [11-02-2025 19:20]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, &#60;/p&#62;\r\n&#60;p&#62;Favor falar no whatsapp.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;11-02-2025 19:20&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_86 \n\n Chamado: Descrição\n\n Título : Acesso Sistema \n Requerentes :  tecnomulti  \n Data de abertura : 11-02-2025 12:10\n Data de fechamento : 13-02-2025 10:17\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - michele.souza@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Acesso Sistema \n2) E-MAIL : michele.souza@tecnomulti.com\n3) TELEFONE : 8198555-5446\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nMudanca de setor, nao estou consiguindo acessa Vicky, Sap, OSPCONTROL \n \n\n Data da solução : 13-02-2025 10:17\n Tipo de solução : \n Solução : \n \n\n\n[13-02-2025 10:17]\nAutor Alexsandro Cruz\nDescrição Realizamos testes de acesso com usuários e senhas fornecido pela colaboradora e não acessou. Usei as credenciais de uma colaboradora ativa e funcionou normalmente. Informamos que terá que entrar em contato com a VIVO para pegar credenciais válidas. \nData de abertura 13-02-2025 10:17\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[11-02-2025 19:20]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nFavor falar no whatsapp.\nData de abertura 11-02-2025 19:20\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-86/closed.1739452634.1198654060@oswintech.ddns.net','','mailing','closed'),
(1214,'Ticket',86,4,2,0,0,'2025-02-13 13:17:14','2025-02-13 13:17:14',NULL,'[GLPI #0000086] Encerramento do chamado Acesso Sistema ','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000086] Encerramento do chamado Acesso Sistema &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_86\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_86&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:Acesso Sistema  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:11-02-2025 12:10 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:13-02-2025 10:17 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- michele.souza@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Acesso Sistema &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;michele.souza@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;8198555-5446&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Mudanca de setor, nao estou consiguindo acessa Vicky, Sap, OSPCONTROL &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 13-02-2025 10:17&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [13-02-2025 10:17]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Realizamos testes de acesso com usuários e senhas fornecido pela colaboradora e não acessou. Usei as credenciais de uma colaboradora ativa e funcionou normalmente. Informamos que terá que entrar em contato com a VIVO para pegar credenciais válidas. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;13-02-2025 10:17&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [11-02-2025 19:20]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, &#60;/p&#62;\r\n&#60;p&#62;Favor falar no whatsapp.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;11-02-2025 19:20&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_86 \n\n Chamado: Descrição\n\n Título : Acesso Sistema \n Requerentes :  tecnomulti  \n Data de abertura : 11-02-2025 12:10\n Data de fechamento : 13-02-2025 10:17\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - michele.souza@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : Acesso Sistema \n2) E-MAIL : michele.souza@tecnomulti.com\n3) TELEFONE : 8198555-5446\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nMudanca de setor, nao estou consiguindo acessa Vicky, Sap, OSPCONTROL \n \n\n Data da solução : 13-02-2025 10:17\n Tipo de solução : \n Solução : \n \n\n\n[13-02-2025 10:17]\nAutor Alexsandro Cruz\nDescrição Realizamos testes de acesso com usuários e senhas fornecido pela colaboradora e não acessou. Usei as credenciais de uma colaboradora ativa e funcionou normalmente. Informamos que terá que entrar em contato com a VIVO para pegar credenciais válidas. \nData de abertura 13-02-2025 10:17\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[11-02-2025 19:20]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nFavor falar no whatsapp.\nData de abertura 11-02-2025 19:20\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-86/closed.1739452634.205036079@oswintech.ddns.net','','mailing','closed'),
(1215,'Ticket',58,4,2,1,0,'2025-02-13 14:01:04','2025-02-13 14:01:04','2025-02-17 12:34:09','[GLPI #0000058] Novo acompanhamento OSP control não está abrindo e ativar o e-mail ',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_58 \n\n Chamado: Descrição\n\n Título : OSP control não está abrindo e ativar o e-mail \n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 09:39\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - selma.belizario@tecnomulti.com\n  \n  \n  \n \n\n\n Atribuído para técnicos : Alexsandro Cruz \n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistemas VIVO/FIBRASIL  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : OSP control não está abrindo e ativar o e-mail \n2) E-MAIL : selma.belizario@tecnomulti.com\n3) TELEFONE : 83 98808-8867\n4) CATEGORIA : Sistemas VIVO/FIBRASIL\n5) INFORME MAIS DETALHES : \ntoda vez que tento acessar o OSP Control aparece a mensagem: ops, algo deu errado. Por favor, tente novamente. Consigo acessar em outo notebook, mas no meu não acessa. \n\nTambém preciso que o meu e-mail seja migrado do notebook anterior, para o que estou utilizado agora.\n \n\n\n[13-02-2025 11:01]\nAutor Alexsandro Cruz\nDescrição Sobre o acesso ao OSP Control foi normalizado com um link passado por Aurelio. Quando ao arquivo do outlook vai ser necessário um pendrive ou HD externo com espaço de 18Gb até o momento da verificação. \nData de abertura 13-02-2025 11:01\nPosição right\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 13:49]\nAutor tecnomulti\nDescrição Boa tarde!\n\n434 166 120\nData de abertura 30-01-2025 13:49\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 11:42]\nAutor Luan Medeiros\nDescrição Bom dia, poderia passar o acesso remoto por favor(anydesk ou teamviewer).\nData de abertura 28-01-2025 11:42\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1216,'Ticket',58,4,2,1,0,'2025-02-13 14:01:04','2025-02-13 14:01:04','2025-02-13 14:01:11','[GLPI #0000058] Novo acompanhamento OSP control não está abrindo e ativar o e-mail ',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_58 \n\n Chamado: Descrição\n\n Título : OSP control não está abrindo e ativar o e-mail \n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 09:39\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - selma.belizario@tecnomulti.com\n  \n  \n  \n \n\n\n Atribuído para técnicos : Alexsandro Cruz \n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistemas VIVO/FIBRASIL  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : OSP control não está abrindo e ativar o e-mail \n2) E-MAIL : selma.belizario@tecnomulti.com\n3) TELEFONE : 83 98808-8867\n4) CATEGORIA : Sistemas VIVO/FIBRASIL\n5) INFORME MAIS DETALHES : \ntoda vez que tento acessar o OSP Control aparece a mensagem: ops, algo deu errado. Por favor, tente novamente. Consigo acessar em outo notebook, mas no meu não acessa. \n\nTambém preciso que o meu e-mail seja migrado do notebook anterior, para o que estou utilizado agora.\n \n\n\n[13-02-2025 11:01]\nAutor Alexsandro Cruz\nDescrição Sobre o acesso ao OSP Control foi normalizado com um link passado por Aurelio. Quando ao arquivo do outlook vai ser necessário um pendrive ou HD externo com espaço de 18Gb até o momento da verificação. \nData de abertura 13-02-2025 11:01\nPosição right\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 13:49]\nAutor tecnomulti\nDescrição Boa tarde!\n\n434 166 120\nData de abertura 30-01-2025 13:49\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 11:42]\nAutor Luan Medeiros\nDescrição Bom dia, poderia passar o acesso remoto por favor(anydesk ou teamviewer).\nData de abertura 28-01-2025 11:42\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1217,'Ticket',58,4,2,0,0,'2025-02-13 14:01:04','2025-02-13 14:01:04',NULL,'[GLPI #0000058] Novo acompanhamento OSP control não está abrindo e ativar o e-mail ',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_58 \n\n Chamado: Descrição\n\n Título : OSP control não está abrindo e ativar o e-mail \n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 09:39\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - selma.belizario@tecnomulti.com\n  \n  \n  \n \n\n\n Atribuído para técnicos : Alexsandro Cruz \n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistemas VIVO/FIBRASIL  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : OSP control não está abrindo e ativar o e-mail \n2) E-MAIL : selma.belizario@tecnomulti.com\n3) TELEFONE : 83 98808-8867\n4) CATEGORIA : Sistemas VIVO/FIBRASIL\n5) INFORME MAIS DETALHES : \ntoda vez que tento acessar o OSP Control aparece a mensagem: ops, algo deu errado. Por favor, tente novamente. Consigo acessar em outo notebook, mas no meu não acessa. \n\nTambém preciso que o meu e-mail seja migrado do notebook anterior, para o que estou utilizado agora.\n \n\n\n[13-02-2025 11:01]\nAutor Alexsandro Cruz\nDescrição Sobre o acesso ao OSP Control foi normalizado com um link passado por Aurelio. Quando ao arquivo do outlook vai ser necessário um pendrive ou HD externo com espaço de 18Gb até o momento da verificação. \nData de abertura 13-02-2025 11:01\nPosição right\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 13:49]\nAutor tecnomulti\nDescrição Boa tarde!\n\n434 166 120\nData de abertura 30-01-2025 13:49\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 11:42]\nAutor Luan Medeiros\nDescrição Bom dia, poderia passar o acesso remoto por favor(anydesk ou teamviewer).\nData de abertura 28-01-2025 11:42\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1218,'Ticket',58,4,2,1,0,'2025-02-13 14:01:04','2025-02-13 14:01:04','2025-02-14 03:20:28','[GLPI #0000058] Novo acompanhamento OSP control não está abrindo e ativar o e-mail ',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_58 \n\n Chamado: Descrição\n\n Título : OSP control não está abrindo e ativar o e-mail \n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 09:39\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - selma.belizario@tecnomulti.com\n  \n  \n  \n \n\n\n Atribuído para técnicos : Alexsandro Cruz \n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistemas VIVO/FIBRASIL  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : OSP control não está abrindo e ativar o e-mail \n2) E-MAIL : selma.belizario@tecnomulti.com\n3) TELEFONE : 83 98808-8867\n4) CATEGORIA : Sistemas VIVO/FIBRASIL\n5) INFORME MAIS DETALHES : \ntoda vez que tento acessar o OSP Control aparece a mensagem: ops, algo deu errado. Por favor, tente novamente. Consigo acessar em outo notebook, mas no meu não acessa. \n\nTambém preciso que o meu e-mail seja migrado do notebook anterior, para o que estou utilizado agora.\n \n\n\n[13-02-2025 11:01]\nAutor Alexsandro Cruz\nDescrição Sobre o acesso ao OSP Control foi normalizado com um link passado por Aurelio. Quando ao arquivo do outlook vai ser necessário um pendrive ou HD externo com espaço de 18Gb até o momento da verificação. \nData de abertura 13-02-2025 11:01\nPosição right\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 13:49]\nAutor tecnomulti\nDescrição Boa tarde!\n\n434 166 120\nData de abertura 30-01-2025 13:49\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 11:42]\nAutor Luan Medeiros\nDescrição Bom dia, poderia passar o acesso remoto por favor(anydesk ou teamviewer).\nData de abertura 28-01-2025 11:42\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1219,'Ticket',58,4,2,0,0,'2025-02-13 14:01:04','2025-02-13 14:01:04',NULL,'[GLPI #0000058] Novo acompanhamento OSP control não está abrindo e ativar o e-mail ','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000058] Novo acompanhamento OSP control n&#38;atilde;o est&#38;aacute; abrindo e ativar o e-mail &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_58\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_58&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:OSP control n&#38;atilde;o est&#38;aacute; abrindo e ativar o e-mail  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 09:39 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- selma.belizario@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Atribu&#38;iacute;do para t&#38;eacute;cnicos&#60;/span&#62;&#38;#160;: Alexsandro Cruz &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistemas VIVO/FIBRASIL      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;OSP control não está abrindo e ativar o e-mail &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;selma.belizario@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83 98808-8867&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistemas VIVO/FIBRASIL&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;toda vez que tento acessar o OSP Control aparece a mensagem: ops, algo deu errado. Por favor, tente novamente. Consigo acessar em outo notebook, mas no meu não acessa. &#60;/p&#62;\n&#60;p&#62;Também preciso que o meu e-mail seja migrado do notebook anterior, para o que estou utilizado agora.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [13-02-2025 11:01]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Sobre o acesso ao OSP Control foi normalizado com um link passado por Aurelio. Quando ao arquivo do outlook vai ser necessário um pendrive ou HD externo com espaço de 18Gb até o momento da verificação. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;13-02-2025 11:01&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; right&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 13:49]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde!&#60;/p&#62;\r\n&#60;p&#62;434 166 120&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 13:49&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:42]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, poderia passar o acesso remoto por favor(anydesk ou teamviewer).&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:42&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 3&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_58 \n\n Chamado: Descrição\n\n Título : OSP control não está abrindo e ativar o e-mail \n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 09:39\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - selma.belizario@tecnomulti.com\n  \n  \n  \n \n\n\n Atribuído para técnicos : Alexsandro Cruz \n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistemas VIVO/FIBRASIL  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : OSP control não está abrindo e ativar o e-mail \n2) E-MAIL : selma.belizario@tecnomulti.com\n3) TELEFONE : 83 98808-8867\n4) CATEGORIA : Sistemas VIVO/FIBRASIL\n5) INFORME MAIS DETALHES : \ntoda vez que tento acessar o OSP Control aparece a mensagem: ops, algo deu errado. Por favor, tente novamente. Consigo acessar em outo notebook, mas no meu não acessa. \n\nTambém preciso que o meu e-mail seja migrado do notebook anterior, para o que estou utilizado agora.\n \n\n\n[13-02-2025 11:01]\nAutor Alexsandro Cruz\nDescrição Sobre o acesso ao OSP Control foi normalizado com um link passado por Aurelio. Quando ao arquivo do outlook vai ser necessário um pendrive ou HD externo com espaço de 18Gb até o momento da verificação. \nData de abertura 13-02-2025 11:01\nPosição right\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 13:49]\nAutor tecnomulti\nDescrição Boa tarde!\n\n434 166 120\nData de abertura 30-01-2025 13:49\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 11:42]\nAutor Luan Medeiros\nDescrição Bom dia, poderia passar o acesso remoto por favor(anydesk ou teamviewer).\nData de abertura 28-01-2025 11:42\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-58/add_followup.1739455264.1259892784@oswintech.ddns.net','','mailing','add_followup'),
(1220,'Ticket',58,4,2,0,0,'2025-02-13 14:01:04','2025-02-13 14:01:04',NULL,'[GLPI #0000058] Novo acompanhamento OSP control não está abrindo e ativar o e-mail ','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000058] Novo acompanhamento OSP control n&#38;atilde;o est&#38;aacute; abrindo e ativar o e-mail &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_58\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_58&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:OSP control n&#38;atilde;o est&#38;aacute; abrindo e ativar o e-mail  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 09:39 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- selma.belizario@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Atribu&#38;iacute;do para t&#38;eacute;cnicos&#60;/span&#62;&#38;#160;: Alexsandro Cruz &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistemas VIVO/FIBRASIL      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;OSP control não está abrindo e ativar o e-mail &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;selma.belizario@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83 98808-8867&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistemas VIVO/FIBRASIL&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;toda vez que tento acessar o OSP Control aparece a mensagem: ops, algo deu errado. Por favor, tente novamente. Consigo acessar em outo notebook, mas no meu não acessa. &#60;/p&#62;\n&#60;p&#62;Também preciso que o meu e-mail seja migrado do notebook anterior, para o que estou utilizado agora.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [13-02-2025 11:01]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Sobre o acesso ao OSP Control foi normalizado com um link passado por Aurelio. Quando ao arquivo do outlook vai ser necessário um pendrive ou HD externo com espaço de 18Gb até o momento da verificação. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;13-02-2025 11:01&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; right&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 13:49]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde!&#60;/p&#62;\r\n&#60;p&#62;434 166 120&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 13:49&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:42]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, poderia passar o acesso remoto por favor(anydesk ou teamviewer).&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:42&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 3&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_58 \n\n Chamado: Descrição\n\n Título : OSP control não está abrindo e ativar o e-mail \n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 09:39\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - selma.belizario@tecnomulti.com\n  \n  \n  \n \n\n\n Atribuído para técnicos : Alexsandro Cruz \n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistemas VIVO/FIBRASIL  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : OSP control não está abrindo e ativar o e-mail \n2) E-MAIL : selma.belizario@tecnomulti.com\n3) TELEFONE : 83 98808-8867\n4) CATEGORIA : Sistemas VIVO/FIBRASIL\n5) INFORME MAIS DETALHES : \ntoda vez que tento acessar o OSP Control aparece a mensagem: ops, algo deu errado. Por favor, tente novamente. Consigo acessar em outo notebook, mas no meu não acessa. \n\nTambém preciso que o meu e-mail seja migrado do notebook anterior, para o que estou utilizado agora.\n \n\n\n[13-02-2025 11:01]\nAutor Alexsandro Cruz\nDescrição Sobre o acesso ao OSP Control foi normalizado com um link passado por Aurelio. Quando ao arquivo do outlook vai ser necessário um pendrive ou HD externo com espaço de 18Gb até o momento da verificação. \nData de abertura 13-02-2025 11:01\nPosição right\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 13:49]\nAutor tecnomulti\nDescrição Boa tarde!\n\n434 166 120\nData de abertura 30-01-2025 13:49\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 11:42]\nAutor Luan Medeiros\nDescrição Bom dia, poderia passar o acesso remoto por favor(anydesk ou teamviewer).\nData de abertura 28-01-2025 11:42\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-58/add_followup.1739455264.1773438264@oswintech.ddns.net','','mailing','add_followup'),
(1221,'Ticket',58,4,2,0,0,'2025-02-13 14:01:04','2025-02-13 14:01:04',NULL,'[GLPI #0000058] Novo acompanhamento OSP control não está abrindo e ativar o e-mail ','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000058] Novo acompanhamento OSP control n&#38;atilde;o est&#38;aacute; abrindo e ativar o e-mail &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_58\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_58&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:OSP control n&#38;atilde;o est&#38;aacute; abrindo e ativar o e-mail  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 09:39 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- selma.belizario@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Atribu&#38;iacute;do para t&#38;eacute;cnicos&#60;/span&#62;&#38;#160;: Alexsandro Cruz &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistemas VIVO/FIBRASIL      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;OSP control não está abrindo e ativar o e-mail &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;selma.belizario@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83 98808-8867&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistemas VIVO/FIBRASIL&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;toda vez que tento acessar o OSP Control aparece a mensagem: ops, algo deu errado. Por favor, tente novamente. Consigo acessar em outo notebook, mas no meu não acessa. &#60;/p&#62;\n&#60;p&#62;Também preciso que o meu e-mail seja migrado do notebook anterior, para o que estou utilizado agora.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [13-02-2025 11:01]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Sobre o acesso ao OSP Control foi normalizado com um link passado por Aurelio. Quando ao arquivo do outlook vai ser necessário um pendrive ou HD externo com espaço de 18Gb até o momento da verificação. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;13-02-2025 11:01&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; right&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 13:49]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde!&#60;/p&#62;\r\n&#60;p&#62;434 166 120&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 13:49&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:42]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, poderia passar o acesso remoto por favor(anydesk ou teamviewer).&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:42&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 3&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_58 \n\n Chamado: Descrição\n\n Título : OSP control não está abrindo e ativar o e-mail \n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 09:39\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - selma.belizario@tecnomulti.com\n  \n  \n  \n \n\n\n Atribuído para técnicos : Alexsandro Cruz \n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistemas VIVO/FIBRASIL  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : OSP control não está abrindo e ativar o e-mail \n2) E-MAIL : selma.belizario@tecnomulti.com\n3) TELEFONE : 83 98808-8867\n4) CATEGORIA : Sistemas VIVO/FIBRASIL\n5) INFORME MAIS DETALHES : \ntoda vez que tento acessar o OSP Control aparece a mensagem: ops, algo deu errado. Por favor, tente novamente. Consigo acessar em outo notebook, mas no meu não acessa. \n\nTambém preciso que o meu e-mail seja migrado do notebook anterior, para o que estou utilizado agora.\n \n\n\n[13-02-2025 11:01]\nAutor Alexsandro Cruz\nDescrição Sobre o acesso ao OSP Control foi normalizado com um link passado por Aurelio. Quando ao arquivo do outlook vai ser necessário um pendrive ou HD externo com espaço de 18Gb até o momento da verificação. \nData de abertura 13-02-2025 11:01\nPosição right\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 13:49]\nAutor tecnomulti\nDescrição Boa tarde!\n\n434 166 120\nData de abertura 30-01-2025 13:49\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 11:42]\nAutor Luan Medeiros\nDescrição Bom dia, poderia passar o acesso remoto por favor(anydesk ou teamviewer).\nData de abertura 28-01-2025 11:42\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-58/add_followup.1739455264.890841789@oswintech.ddns.net','','mailing','add_followup'),
(1222,'Ticket',58,4,2,0,0,'2025-02-13 14:01:04','2025-02-13 14:01:04',NULL,'[GLPI #0000058] Novo acompanhamento OSP control não está abrindo e ativar o e-mail ','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000058] Novo acompanhamento OSP control n&#38;atilde;o est&#38;aacute; abrindo e ativar o e-mail &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_58\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_58&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:OSP control n&#38;atilde;o est&#38;aacute; abrindo e ativar o e-mail  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 09:39 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- selma.belizario@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Atribu&#38;iacute;do para t&#38;eacute;cnicos&#60;/span&#62;&#38;#160;: Alexsandro Cruz &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistemas VIVO/FIBRASIL      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;OSP control não está abrindo e ativar o e-mail &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;selma.belizario@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83 98808-8867&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistemas VIVO/FIBRASIL&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;toda vez que tento acessar o OSP Control aparece a mensagem: ops, algo deu errado. Por favor, tente novamente. Consigo acessar em outo notebook, mas no meu não acessa. &#60;/p&#62;\n&#60;p&#62;Também preciso que o meu e-mail seja migrado do notebook anterior, para o que estou utilizado agora.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [13-02-2025 11:01]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Sobre o acesso ao OSP Control foi normalizado com um link passado por Aurelio. Quando ao arquivo do outlook vai ser necessário um pendrive ou HD externo com espaço de 18Gb até o momento da verificação. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;13-02-2025 11:01&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; right&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 13:49]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde!&#60;/p&#62;\r\n&#60;p&#62;434 166 120&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 13:49&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:42]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, poderia passar o acesso remoto por favor(anydesk ou teamviewer).&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:42&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 3&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_58 \n\n Chamado: Descrição\n\n Título : OSP control não está abrindo e ativar o e-mail \n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 09:39\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - selma.belizario@tecnomulti.com\n  \n  \n  \n \n\n\n Atribuído para técnicos : Alexsandro Cruz \n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistemas VIVO/FIBRASIL  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : OSP control não está abrindo e ativar o e-mail \n2) E-MAIL : selma.belizario@tecnomulti.com\n3) TELEFONE : 83 98808-8867\n4) CATEGORIA : Sistemas VIVO/FIBRASIL\n5) INFORME MAIS DETALHES : \ntoda vez que tento acessar o OSP Control aparece a mensagem: ops, algo deu errado. Por favor, tente novamente. Consigo acessar em outo notebook, mas no meu não acessa. \n\nTambém preciso que o meu e-mail seja migrado do notebook anterior, para o que estou utilizado agora.\n \n\n\n[13-02-2025 11:01]\nAutor Alexsandro Cruz\nDescrição Sobre o acesso ao OSP Control foi normalizado com um link passado por Aurelio. Quando ao arquivo do outlook vai ser necessário um pendrive ou HD externo com espaço de 18Gb até o momento da verificação. \nData de abertura 13-02-2025 11:01\nPosição right\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 13:49]\nAutor tecnomulti\nDescrição Boa tarde!\n\n434 166 120\nData de abertura 30-01-2025 13:49\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 11:42]\nAutor Luan Medeiros\nDescrição Bom dia, poderia passar o acesso remoto por favor(anydesk ou teamviewer).\nData de abertura 28-01-2025 11:42\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-58/add_followup.1739455264.1791984516@oswintech.ddns.net','','mailing','add_followup'),
(1223,'Ticket',58,4,2,0,0,'2025-02-13 14:01:10','2025-02-13 14:01:10',NULL,'[GLPI #0000058] Encerramento do chamado OSP control não está abrindo e ativar o e-mail ','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000058] Encerramento do chamado OSP control n&#38;atilde;o est&#38;aacute; abrindo e ativar o e-mail &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_58\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_58&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:OSP control n&#38;atilde;o est&#38;aacute; abrindo e ativar o e-mail  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 09:39 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:13-02-2025 11:01 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- selma.belizario@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Atribu&#38;iacute;do para t&#38;eacute;cnicos&#60;/span&#62;&#38;#160;: Alexsandro Cruz &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistemas VIVO/FIBRASIL      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;OSP control não está abrindo e ativar o e-mail &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;selma.belizario@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83 98808-8867&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistemas VIVO/FIBRASIL&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;toda vez que tento acessar o OSP Control aparece a mensagem: ops, algo deu errado. Por favor, tente novamente. Consigo acessar em outo notebook, mas no meu não acessa. &#60;/p&#62;\n&#60;p&#62;Também preciso que o meu e-mail seja migrado do notebook anterior, para o que estou utilizado agora.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 13-02-2025 11:01&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [13-02-2025 11:01]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Sobre o acesso ao OSP Control foi normalizado com um link passado por Aurelio. Quando ao arquivo do outlook vai ser necessário um pendrive ou HD externo com espaço de 18Gb até o momento da verificação. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;13-02-2025 11:01&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; right&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 13:49]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde!&#60;/p&#62;\r\n&#60;p&#62;434 166 120&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 13:49&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:42]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, poderia passar o acesso remoto por favor(anydesk ou teamviewer).&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:42&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 3&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_58 \n\n Chamado: Descrição\n\n Título : OSP control não está abrindo e ativar o e-mail \n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 09:39\n Data de fechamento : 13-02-2025 11:01\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - selma.belizario@tecnomulti.com\n  \n  \n  \n \n\n\n Atribuído para técnicos : Alexsandro Cruz \n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistemas VIVO/FIBRASIL  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : OSP control não está abrindo e ativar o e-mail \n2) E-MAIL : selma.belizario@tecnomulti.com\n3) TELEFONE : 83 98808-8867\n4) CATEGORIA : Sistemas VIVO/FIBRASIL\n5) INFORME MAIS DETALHES : \ntoda vez que tento acessar o OSP Control aparece a mensagem: ops, algo deu errado. Por favor, tente novamente. Consigo acessar em outo notebook, mas no meu não acessa. \n\nTambém preciso que o meu e-mail seja migrado do notebook anterior, para o que estou utilizado agora.\n \n\n Data da solução : 13-02-2025 11:01\n Tipo de solução : \n Solução : \n \n\n\n[13-02-2025 11:01]\nAutor Alexsandro Cruz\nDescrição Sobre o acesso ao OSP Control foi normalizado com um link passado por Aurelio. Quando ao arquivo do outlook vai ser necessário um pendrive ou HD externo com espaço de 18Gb até o momento da verificação. \nData de abertura 13-02-2025 11:01\nPosição right\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 13:49]\nAutor tecnomulti\nDescrição Boa tarde!\n\n434 166 120\nData de abertura 30-01-2025 13:49\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 11:42]\nAutor Luan Medeiros\nDescrição Bom dia, poderia passar o acesso remoto por favor(anydesk ou teamviewer).\nData de abertura 28-01-2025 11:42\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-58/closed.1739455270.1605629757@oswintech.ddns.net','','mailing','closed'),
(1224,'Ticket',58,4,2,0,0,'2025-02-13 14:01:10','2025-02-13 14:01:10',NULL,'[GLPI #0000058] Encerramento do chamado OSP control não está abrindo e ativar o e-mail ','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000058] Encerramento do chamado OSP control n&#38;atilde;o est&#38;aacute; abrindo e ativar o e-mail &#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_58\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_58&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:OSP control n&#38;atilde;o est&#38;aacute; abrindo e ativar o e-mail  &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:28-01-2025 09:39 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;:13-02-2025 11:01 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- selma.belizario@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Atribu&#38;iacute;do para t&#38;eacute;cnicos&#60;/span&#62;&#38;#160;: Alexsandro Cruz &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Fechado&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistemas VIVO/FIBRASIL      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;OSP control não está abrindo e ativar o e-mail &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;selma.belizario@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83 98808-8867&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistemas VIVO/FIBRASIL&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;toda vez que tento acessar o OSP Control aparece a mensagem: ops, algo deu errado. Por favor, tente novamente. Consigo acessar em outo notebook, mas no meu não acessa. &#60;/p&#62;\n&#60;p&#62;Também preciso que o meu e-mail seja migrado do notebook anterior, para o que estou utilizado agora.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;br /&#62;&#60;span style=\"text-decoration: underline;\"&#62;&#60;strong&#62;&#60;span style=\"color: #888888;\"&#62;Data da solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : 13-02-2025 11:01&#60;br /&#62;&#60;span style=\"color: #888888;\"&#62;&#60;strong&#62;&#60;span style=\"text-decoration: underline;\"&#62;Tipo de solu&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;span style=\"text-decoration: underline; color: #888888;\"&#62;&#60;strong&#62;Solu&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/span&#62; : &#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [13-02-2025 11:01]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Sobre o acesso ao OSP Control foi normalizado com um link passado por Aurelio. Quando ao arquivo do outlook vai ser necessário um pendrive ou HD externo com espaço de 18Gb até o momento da verificação. &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;13-02-2025 11:01&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; right&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [30-01-2025 13:49]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde!&#60;/p&#62;\r\n&#60;p&#62;434 166 120&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;30-01-2025 13:49&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [28-01-2025 11:42]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, poderia passar o acesso remoto por favor(anydesk ou teamviewer).&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;28-01-2025 11:42&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 3&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_58 \n\n Chamado: Descrição\n\n Título : OSP control não está abrindo e ativar o e-mail \n Requerentes :  tecnomulti  \n Data de abertura : 28-01-2025 09:39\n Data de fechamento : 13-02-2025 11:01\n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - selma.belizario@tecnomulti.com\n  \n  \n  \n \n\n\n Atribuído para técnicos : Alexsandro Cruz \n Status : Fechado\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistemas VIVO/FIBRASIL  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : OSP control não está abrindo e ativar o e-mail \n2) E-MAIL : selma.belizario@tecnomulti.com\n3) TELEFONE : 83 98808-8867\n4) CATEGORIA : Sistemas VIVO/FIBRASIL\n5) INFORME MAIS DETALHES : \ntoda vez que tento acessar o OSP Control aparece a mensagem: ops, algo deu errado. Por favor, tente novamente. Consigo acessar em outo notebook, mas no meu não acessa. \n\nTambém preciso que o meu e-mail seja migrado do notebook anterior, para o que estou utilizado agora.\n \n\n Data da solução : 13-02-2025 11:01\n Tipo de solução : \n Solução : \n \n\n\n[13-02-2025 11:01]\nAutor Alexsandro Cruz\nDescrição Sobre o acesso ao OSP Control foi normalizado com um link passado por Aurelio. Quando ao arquivo do outlook vai ser necessário um pendrive ou HD externo com espaço de 18Gb até o momento da verificação. \nData de abertura 13-02-2025 11:01\nPosição right\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[30-01-2025 13:49]\nAutor tecnomulti\nDescrição Boa tarde!\n\n434 166 120\nData de abertura 30-01-2025 13:49\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[28-01-2025 11:42]\nAutor Luan Medeiros\nDescrição Bom dia, poderia passar o acesso remoto por favor(anydesk ou teamviewer).\nData de abertura 28-01-2025 11:42\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 3\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-58/closed.1739455271.2020183661@oswintech.ddns.net','','mailing','closed'),
(1225,'PluginFormcreatorFormAnswer',52,29,2,0,0,'2025-02-17 11:36:06','2025-02-17 11:36:06',NULL,'[GLPI] Sua requisição foi salva','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI] Sua requisi&#38;ccedil;&#38;atilde;o foi salva&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;p&#62;Olá,&#60;br /&#62;Sua requisição do GLPI foi salva com sucesso com o número 52 e transmitido para a equipe de helpdesk.&#60;br /&#62;Você pode ver suas respostas no seguinte link:&#60;br /&#62;https://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=52&#60;/p&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;','Olá,\nSua requisição do GLPI foi salva com sucesso com o número 52 e transmitido para a equipe de helpdesk.\nVocê pode ver suas respostas no seguinte link:\nhttps://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=52\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-PluginFormcreatorFormAnswer-52/plugin_formcreator_form_created.1739792166.1138339887@oswintech.ddns.net','','mailing','plugin_formcreator_form_created'),
(1226,'Ticket',88,4,2,1,0,'2025-02-17 11:36:06','2025-02-17 11:36:06','2025-02-17 12:34:09','[GLPI #0000088] Novo chamado edson maykon',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_88 \n\n Chamado: Descrição\n\n Título : edson maykon\n Requerentes :  tecnomulti  \n Data de abertura : 17-02-2025 08:36\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : edson maykon\n2) E-MAIL : edson.maykon@tecnomulti.com.pst\n3) TELEFONE : 84 987026218\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nnao estou tendo acesso e meu e-mail  edson.maykon@tecnomulti.com.pst\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(1227,'Ticket',88,4,2,1,0,'2025-02-17 11:36:06','2025-02-17 11:36:06','2025-02-17 11:36:54','[GLPI #0000088] Novo chamado edson maykon',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_88 \n\n Chamado: Descrição\n\n Título : edson maykon\n Requerentes :  tecnomulti  \n Data de abertura : 17-02-2025 08:36\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : edson maykon\n2) E-MAIL : edson.maykon@tecnomulti.com.pst\n3) TELEFONE : 84 987026218\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nnao estou tendo acesso e meu e-mail  edson.maykon@tecnomulti.com.pst\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(1228,'Ticket',88,4,2,0,0,'2025-02-17 11:36:06','2025-02-17 11:36:06',NULL,'[GLPI #0000088] Novo chamado edson maykon',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_88 \n\n Chamado: Descrição\n\n Título : edson maykon\n Requerentes :  tecnomulti  \n Data de abertura : 17-02-2025 08:36\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : edson maykon\n2) E-MAIL : edson.maykon@tecnomulti.com.pst\n3) TELEFONE : 84 987026218\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nnao estou tendo acesso e meu e-mail  edson.maykon@tecnomulti.com.pst\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(1229,'Ticket',88,4,2,1,0,'2025-02-17 11:36:06','2025-02-17 11:36:06','2025-02-18 02:16:07','[GLPI #0000088] Novo chamado edson maykon',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_88 \n\n Chamado: Descrição\n\n Título : edson maykon\n Requerentes :  tecnomulti  \n Data de abertura : 17-02-2025 08:36\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : edson maykon\n2) E-MAIL : edson.maykon@tecnomulti.com.pst\n3) TELEFONE : 84 987026218\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nnao estou tendo acesso e meu e-mail  edson.maykon@tecnomulti.com.pst\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(1230,'Ticket',88,4,2,0,0,'2025-02-17 11:36:06','2025-02-17 11:36:06',NULL,'[GLPI #0000088] Novo chamado edson maykon','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000088] Novo chamado edson maykon&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_88\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_88&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:edson maykon &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:17-02-2025 08:36 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;edson maykon&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;edson.maykon@tecnomulti.com.pst&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84 987026218&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;nao estou tendo acesso e meu e-mail  edson.maykon@tecnomulti.com.pst&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_88 \n\n Chamado: Descrição\n\n Título : edson maykon\n Requerentes :  tecnomulti  \n Data de abertura : 17-02-2025 08:36\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : edson maykon\n2) E-MAIL : edson.maykon@tecnomulti.com.pst\n3) TELEFONE : 84 987026218\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nnao estou tendo acesso e meu e-mail  edson.maykon@tecnomulti.com.pst\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-88/new@oswintech.ddns.net','','mailing','new'),
(1231,'Ticket',88,4,2,0,0,'2025-02-17 11:36:06','2025-02-17 11:36:06',NULL,'[GLPI #0000088] Novo chamado edson maykon','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000088] Novo chamado edson maykon&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_88\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_88&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:edson maykon &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:17-02-2025 08:36 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;edson maykon&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;edson.maykon@tecnomulti.com.pst&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84 987026218&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;nao estou tendo acesso e meu e-mail  edson.maykon@tecnomulti.com.pst&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_88 \n\n Chamado: Descrição\n\n Título : edson maykon\n Requerentes :  tecnomulti  \n Data de abertura : 17-02-2025 08:36\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : edson maykon\n2) E-MAIL : edson.maykon@tecnomulti.com.pst\n3) TELEFONE : 84 987026218\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nnao estou tendo acesso e meu e-mail  edson.maykon@tecnomulti.com.pst\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-88/new@oswintech.ddns.net','','mailing','new'),
(1232,'Ticket',88,4,2,0,0,'2025-02-17 11:36:06','2025-02-17 11:36:06',NULL,'[GLPI #0000088] Novo chamado edson maykon','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000088] Novo chamado edson maykon&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_88\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_88&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:edson maykon &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:17-02-2025 08:36 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;edson maykon&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;edson.maykon@tecnomulti.com.pst&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84 987026218&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;nao estou tendo acesso e meu e-mail  edson.maykon@tecnomulti.com.pst&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_88 \n\n Chamado: Descrição\n\n Título : edson maykon\n Requerentes :  tecnomulti  \n Data de abertura : 17-02-2025 08:36\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : edson maykon\n2) E-MAIL : edson.maykon@tecnomulti.com.pst\n3) TELEFONE : 84 987026218\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nnao estou tendo acesso e meu e-mail  edson.maykon@tecnomulti.com.pst\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-88/new@oswintech.ddns.net','','mailing','new'),
(1233,'Ticket',88,4,2,0,0,'2025-02-17 11:36:06','2025-02-17 11:36:06',NULL,'[GLPI #0000088] Novo chamado edson maykon','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000088] Novo chamado edson maykon&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_88\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_88&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:edson maykon &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:17-02-2025 08:36 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;edson maykon&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;edson.maykon@tecnomulti.com.pst&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84 987026218&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;nao estou tendo acesso e meu e-mail  edson.maykon@tecnomulti.com.pst&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_88 \n\n Chamado: Descrição\n\n Título : edson maykon\n Requerentes :  tecnomulti  \n Data de abertura : 17-02-2025 08:36\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : edson maykon\n2) E-MAIL : edson.maykon@tecnomulti.com.pst\n3) TELEFONE : 84 987026218\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nnao estou tendo acesso e meu e-mail  edson.maykon@tecnomulti.com.pst\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-88/new@oswintech.ddns.net','','mailing','new'),
(1234,'PluginFormcreatorFormAnswer',53,29,2,0,0,'2025-02-17 12:35:59','2025-02-17 12:35:59',NULL,'[GLPI] Sua requisição foi salva','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI] Sua requisi&#38;ccedil;&#38;atilde;o foi salva&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;p&#62;Olá,&#60;br /&#62;Sua requisição do GLPI foi salva com sucesso com o número 53 e transmitido para a equipe de helpdesk.&#60;br /&#62;Você pode ver suas respostas no seguinte link:&#60;br /&#62;https://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=53&#60;/p&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;','Olá,\nSua requisição do GLPI foi salva com sucesso com o número 53 e transmitido para a equipe de helpdesk.\nVocê pode ver suas respostas no seguinte link:\nhttps://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=53\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-PluginFormcreatorFormAnswer-53/plugin_formcreator_form_created.1739795759.1057982230@oswintech.ddns.net','','mailing','plugin_formcreator_form_created'),
(1235,'Ticket',89,4,2,1,0,'2025-02-17 12:35:59','2025-02-17 12:35:59','2025-02-17 12:36:00','[GLPI #0000089] Novo chamado INSTALAR E-MAIL OUTLOOK',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_89 \n\n Chamado: Descrição\n\n Título : INSTALAR E-MAIL OUTLOOK\n Requerentes :  tecnomulti  \n Data de abertura : 17-02-2025 09:35\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : INSTALAR E-MAIL OUTLOOK\n2) E-MAIL : bruno.ciriaco@tecnomulti.com\n3) TELEFONE : 85981013501\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nBom dia configurar o outlook e instalar o DWG. \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(1236,'Ticket',89,4,2,1,0,'2025-02-17 12:35:59','2025-02-17 12:35:59','2025-02-17 12:36:54','[GLPI #0000089] Novo chamado INSTALAR E-MAIL OUTLOOK',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_89 \n\n Chamado: Descrição\n\n Título : INSTALAR E-MAIL OUTLOOK\n Requerentes :  tecnomulti  \n Data de abertura : 17-02-2025 09:35\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : INSTALAR E-MAIL OUTLOOK\n2) E-MAIL : bruno.ciriaco@tecnomulti.com\n3) TELEFONE : 85981013501\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nBom dia configurar o outlook e instalar o DWG. \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(1237,'Ticket',89,4,2,0,0,'2025-02-17 12:35:59','2025-02-17 12:35:59',NULL,'[GLPI #0000089] Novo chamado INSTALAR E-MAIL OUTLOOK',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_89 \n\n Chamado: Descrição\n\n Título : INSTALAR E-MAIL OUTLOOK\n Requerentes :  tecnomulti  \n Data de abertura : 17-02-2025 09:35\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : INSTALAR E-MAIL OUTLOOK\n2) E-MAIL : bruno.ciriaco@tecnomulti.com\n3) TELEFONE : 85981013501\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nBom dia configurar o outlook e instalar o DWG. \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(1238,'Ticket',89,4,2,1,0,'2025-02-17 12:35:59','2025-02-17 12:35:59','2025-02-18 02:16:07','[GLPI #0000089] Novo chamado INSTALAR E-MAIL OUTLOOK',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_89 \n\n Chamado: Descrição\n\n Título : INSTALAR E-MAIL OUTLOOK\n Requerentes :  tecnomulti  \n Data de abertura : 17-02-2025 09:35\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : INSTALAR E-MAIL OUTLOOK\n2) E-MAIL : bruno.ciriaco@tecnomulti.com\n3) TELEFONE : 85981013501\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nBom dia configurar o outlook e instalar o DWG. \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(1239,'Ticket',89,4,2,0,0,'2025-02-17 12:35:59','2025-02-17 12:35:59',NULL,'[GLPI #0000089] Novo chamado INSTALAR E-MAIL OUTLOOK','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000089] Novo chamado INSTALAR E-MAIL OUTLOOK&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_89\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_89&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:INSTALAR E-MAIL OUTLOOK &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:17-02-2025 09:35 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;INSTALAR E-MAIL OUTLOOK&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;bruno.ciriaco@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;85981013501&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Bom dia configurar o outlook e instalar o DWG. &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_89 \n\n Chamado: Descrição\n\n Título : INSTALAR E-MAIL OUTLOOK\n Requerentes :  tecnomulti  \n Data de abertura : 17-02-2025 09:35\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : INSTALAR E-MAIL OUTLOOK\n2) E-MAIL : bruno.ciriaco@tecnomulti.com\n3) TELEFONE : 85981013501\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nBom dia configurar o outlook e instalar o DWG. \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-89/new@oswintech.ddns.net','','mailing','new'),
(1240,'Ticket',89,4,2,0,0,'2025-02-17 12:35:59','2025-02-17 12:35:59',NULL,'[GLPI #0000089] Novo chamado INSTALAR E-MAIL OUTLOOK','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000089] Novo chamado INSTALAR E-MAIL OUTLOOK&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_89\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_89&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:INSTALAR E-MAIL OUTLOOK &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:17-02-2025 09:35 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;INSTALAR E-MAIL OUTLOOK&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;bruno.ciriaco@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;85981013501&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Bom dia configurar o outlook e instalar o DWG. &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_89 \n\n Chamado: Descrição\n\n Título : INSTALAR E-MAIL OUTLOOK\n Requerentes :  tecnomulti  \n Data de abertura : 17-02-2025 09:35\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : INSTALAR E-MAIL OUTLOOK\n2) E-MAIL : bruno.ciriaco@tecnomulti.com\n3) TELEFONE : 85981013501\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nBom dia configurar o outlook e instalar o DWG. \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-89/new@oswintech.ddns.net','','mailing','new'),
(1241,'Ticket',89,4,2,0,0,'2025-02-17 12:35:59','2025-02-17 12:35:59',NULL,'[GLPI #0000089] Novo chamado INSTALAR E-MAIL OUTLOOK','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000089] Novo chamado INSTALAR E-MAIL OUTLOOK&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_89\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_89&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:INSTALAR E-MAIL OUTLOOK &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:17-02-2025 09:35 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;INSTALAR E-MAIL OUTLOOK&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;bruno.ciriaco@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;85981013501&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Bom dia configurar o outlook e instalar o DWG. &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_89 \n\n Chamado: Descrição\n\n Título : INSTALAR E-MAIL OUTLOOK\n Requerentes :  tecnomulti  \n Data de abertura : 17-02-2025 09:35\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : INSTALAR E-MAIL OUTLOOK\n2) E-MAIL : bruno.ciriaco@tecnomulti.com\n3) TELEFONE : 85981013501\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nBom dia configurar o outlook e instalar o DWG. \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-89/new@oswintech.ddns.net','','mailing','new'),
(1242,'Ticket',89,4,2,0,0,'2025-02-17 12:35:59','2025-02-17 12:35:59',NULL,'[GLPI #0000089] Novo chamado INSTALAR E-MAIL OUTLOOK','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000089] Novo chamado INSTALAR E-MAIL OUTLOOK&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_89\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_89&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:INSTALAR E-MAIL OUTLOOK &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:17-02-2025 09:35 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;INSTALAR E-MAIL OUTLOOK&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;bruno.ciriaco@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;85981013501&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Bom dia configurar o outlook e instalar o DWG. &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_89 \n\n Chamado: Descrição\n\n Título : INSTALAR E-MAIL OUTLOOK\n Requerentes :  tecnomulti  \n Data de abertura : 17-02-2025 09:35\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : INSTALAR E-MAIL OUTLOOK\n2) E-MAIL : bruno.ciriaco@tecnomulti.com\n3) TELEFONE : 85981013501\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nBom dia configurar o outlook e instalar o DWG. \n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-89/new@oswintech.ddns.net','','mailing','new'),
(1243,'Ticket',88,4,2,1,0,'2025-02-17 13:52:33','2025-02-17 13:52:33','2025-02-18 17:49:33','[GLPI #0000088] Novo acompanhamento edson maykon',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_88 \n\n Chamado: Descrição\n\n Título : edson maykon\n Requerentes :  tecnomulti  \n Data de abertura : 17-02-2025 08:36\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - edson.maykon@tecnomulti.com.pst\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : edson maykon\n2) E-MAIL : edson.maykon@tecnomulti.com.pst\n3) TELEFONE : 84 987026218\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nnao estou tendo acesso e meu e-mail  edson.maykon@tecnomulti.com.pst\n \n\n\n[17-02-2025 10:52]\nAutor Luan Medeiros\nDescrição Bom dia, está tentando dessa forma(edson.maykon@tecnomulti.com.pst)? , Se sim, pode ser esse o problema, basta substituir pst por br.\nData de abertura 17-02-2025 10:52\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1244,'Ticket',88,4,2,1,0,'2025-02-17 13:52:33','2025-02-17 13:52:33','2025-02-17 19:18:59','[GLPI #0000088] Novo acompanhamento edson maykon',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_88 \n\n Chamado: Descrição\n\n Título : edson maykon\n Requerentes :  tecnomulti  \n Data de abertura : 17-02-2025 08:36\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - edson.maykon@tecnomulti.com.pst\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : edson maykon\n2) E-MAIL : edson.maykon@tecnomulti.com.pst\n3) TELEFONE : 84 987026218\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nnao estou tendo acesso e meu e-mail  edson.maykon@tecnomulti.com.pst\n \n\n\n[17-02-2025 10:52]\nAutor Luan Medeiros\nDescrição Bom dia, está tentando dessa forma(edson.maykon@tecnomulti.com.pst)? , Se sim, pode ser esse o problema, basta substituir pst por br.\nData de abertura 17-02-2025 10:52\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1245,'Ticket',88,4,2,0,0,'2025-02-17 13:52:33','2025-02-17 13:52:33',NULL,'[GLPI #0000088] Novo acompanhamento edson maykon',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_88 \n\n Chamado: Descrição\n\n Título : edson maykon\n Requerentes :  tecnomulti  \n Data de abertura : 17-02-2025 08:36\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - edson.maykon@tecnomulti.com.pst\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : edson maykon\n2) E-MAIL : edson.maykon@tecnomulti.com.pst\n3) TELEFONE : 84 987026218\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nnao estou tendo acesso e meu e-mail  edson.maykon@tecnomulti.com.pst\n \n\n\n[17-02-2025 10:52]\nAutor Luan Medeiros\nDescrição Bom dia, está tentando dessa forma(edson.maykon@tecnomulti.com.pst)? , Se sim, pode ser esse o problema, basta substituir pst por br.\nData de abertura 17-02-2025 10:52\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1246,'Ticket',88,4,2,1,0,'2025-02-17 13:52:33','2025-02-17 13:52:33','2025-02-18 02:16:07','[GLPI #0000088] Novo acompanhamento edson maykon',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_88 \n\n Chamado: Descrição\n\n Título : edson maykon\n Requerentes :  tecnomulti  \n Data de abertura : 17-02-2025 08:36\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - edson.maykon@tecnomulti.com.pst\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : edson maykon\n2) E-MAIL : edson.maykon@tecnomulti.com.pst\n3) TELEFONE : 84 987026218\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nnao estou tendo acesso e meu e-mail  edson.maykon@tecnomulti.com.pst\n \n\n\n[17-02-2025 10:52]\nAutor Luan Medeiros\nDescrição Bom dia, está tentando dessa forma(edson.maykon@tecnomulti.com.pst)? , Se sim, pode ser esse o problema, basta substituir pst por br.\nData de abertura 17-02-2025 10:52\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1247,'Ticket',88,4,2,0,0,'2025-02-17 13:52:33','2025-02-17 13:52:33',NULL,'[GLPI #0000088] Novo acompanhamento edson maykon','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000088] Novo acompanhamento edson maykon&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_88\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_88&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:edson maykon &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:17-02-2025 08:36 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- edson.maykon@tecnomulti.com.pst     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;edson maykon&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;edson.maykon@tecnomulti.com.pst&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84 987026218&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;nao estou tendo acesso e meu e-mail  edson.maykon@tecnomulti.com.pst&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [17-02-2025 10:52]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, está tentando dessa forma(&#60;span style=\"color: #155210; font-family: inter, -apple-system, blinkmacsystemfont, \'san francisco\', \'segoe ui\', roboto, \'helvetica neue\', sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: no-contextual; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: #e2f2e3; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; display: inline !important; float: none;\"&#62;edson.maykon@tecnomulti.com.pst&#60;/span&#62;)? , Se sim, pode ser esse o problema, basta substituir pst por br.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;17-02-2025 10:52&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_88 \n\n Chamado: Descrição\n\n Título : edson maykon\n Requerentes :  tecnomulti  \n Data de abertura : 17-02-2025 08:36\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - edson.maykon@tecnomulti.com.pst\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : edson maykon\n2) E-MAIL : edson.maykon@tecnomulti.com.pst\n3) TELEFONE : 84 987026218\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nnao estou tendo acesso e meu e-mail  edson.maykon@tecnomulti.com.pst\n \n\n\n[17-02-2025 10:52]\nAutor Luan Medeiros\nDescrição Bom dia, está tentando dessa forma(edson.maykon@tecnomulti.com.pst)? , Se sim, pode ser esse o problema, basta substituir pst por br.\nData de abertura 17-02-2025 10:52\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-88/add_followup.1739800353.1560096794@oswintech.ddns.net','','mailing','add_followup'),
(1248,'Ticket',88,4,2,0,0,'2025-02-17 13:52:33','2025-02-17 13:52:33',NULL,'[GLPI #0000088] Novo acompanhamento edson maykon','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000088] Novo acompanhamento edson maykon&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_88\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_88&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:edson maykon &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:17-02-2025 08:36 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- edson.maykon@tecnomulti.com.pst     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;edson maykon&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;edson.maykon@tecnomulti.com.pst&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84 987026218&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;nao estou tendo acesso e meu e-mail  edson.maykon@tecnomulti.com.pst&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [17-02-2025 10:52]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, está tentando dessa forma(&#60;span style=\"color: #155210; font-family: inter, -apple-system, blinkmacsystemfont, \'san francisco\', \'segoe ui\', roboto, \'helvetica neue\', sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: no-contextual; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: #e2f2e3; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; display: inline !important; float: none;\"&#62;edson.maykon@tecnomulti.com.pst&#60;/span&#62;)? , Se sim, pode ser esse o problema, basta substituir pst por br.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;17-02-2025 10:52&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_88 \n\n Chamado: Descrição\n\n Título : edson maykon\n Requerentes :  tecnomulti  \n Data de abertura : 17-02-2025 08:36\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - edson.maykon@tecnomulti.com.pst\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : edson maykon\n2) E-MAIL : edson.maykon@tecnomulti.com.pst\n3) TELEFONE : 84 987026218\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nnao estou tendo acesso e meu e-mail  edson.maykon@tecnomulti.com.pst\n \n\n\n[17-02-2025 10:52]\nAutor Luan Medeiros\nDescrição Bom dia, está tentando dessa forma(edson.maykon@tecnomulti.com.pst)? , Se sim, pode ser esse o problema, basta substituir pst por br.\nData de abertura 17-02-2025 10:52\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-88/add_followup.1739800353.1799192017@oswintech.ddns.net','','mailing','add_followup'),
(1249,'Ticket',88,4,2,0,0,'2025-02-17 13:52:33','2025-02-17 13:52:33',NULL,'[GLPI #0000088] Novo acompanhamento edson maykon','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000088] Novo acompanhamento edson maykon&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_88\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_88&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:edson maykon &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:17-02-2025 08:36 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- edson.maykon@tecnomulti.com.pst     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;edson maykon&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;edson.maykon@tecnomulti.com.pst&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84 987026218&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;nao estou tendo acesso e meu e-mail  edson.maykon@tecnomulti.com.pst&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [17-02-2025 10:52]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, está tentando dessa forma(&#60;span style=\"color: #155210; font-family: inter, -apple-system, blinkmacsystemfont, \'san francisco\', \'segoe ui\', roboto, \'helvetica neue\', sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: no-contextual; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: #e2f2e3; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; display: inline !important; float: none;\"&#62;edson.maykon@tecnomulti.com.pst&#60;/span&#62;)? , Se sim, pode ser esse o problema, basta substituir pst por br.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;17-02-2025 10:52&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_88 \n\n Chamado: Descrição\n\n Título : edson maykon\n Requerentes :  tecnomulti  \n Data de abertura : 17-02-2025 08:36\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - edson.maykon@tecnomulti.com.pst\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : edson maykon\n2) E-MAIL : edson.maykon@tecnomulti.com.pst\n3) TELEFONE : 84 987026218\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nnao estou tendo acesso e meu e-mail  edson.maykon@tecnomulti.com.pst\n \n\n\n[17-02-2025 10:52]\nAutor Luan Medeiros\nDescrição Bom dia, está tentando dessa forma(edson.maykon@tecnomulti.com.pst)? , Se sim, pode ser esse o problema, basta substituir pst por br.\nData de abertura 17-02-2025 10:52\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-88/add_followup.1739800353.842528131@oswintech.ddns.net','','mailing','add_followup'),
(1250,'Ticket',88,4,2,0,0,'2025-02-17 13:52:33','2025-02-17 13:52:33',NULL,'[GLPI #0000088] Novo acompanhamento edson maykon','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000088] Novo acompanhamento edson maykon&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_88\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_88&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:edson maykon &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:17-02-2025 08:36 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- edson.maykon@tecnomulti.com.pst     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;edson maykon&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;edson.maykon@tecnomulti.com.pst&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84 987026218&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;nao estou tendo acesso e meu e-mail  edson.maykon@tecnomulti.com.pst&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [17-02-2025 10:52]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, está tentando dessa forma(&#60;span style=\"color: #155210; font-family: inter, -apple-system, blinkmacsystemfont, \'san francisco\', \'segoe ui\', roboto, \'helvetica neue\', sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: no-contextual; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: #e2f2e3; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; display: inline !important; float: none;\"&#62;edson.maykon@tecnomulti.com.pst&#60;/span&#62;)? , Se sim, pode ser esse o problema, basta substituir pst por br.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;17-02-2025 10:52&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_88 \n\n Chamado: Descrição\n\n Título : edson maykon\n Requerentes :  tecnomulti  \n Data de abertura : 17-02-2025 08:36\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - edson.maykon@tecnomulti.com.pst\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : edson maykon\n2) E-MAIL : edson.maykon@tecnomulti.com.pst\n3) TELEFONE : 84 987026218\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nnao estou tendo acesso e meu e-mail  edson.maykon@tecnomulti.com.pst\n \n\n\n[17-02-2025 10:52]\nAutor Luan Medeiros\nDescrição Bom dia, está tentando dessa forma(edson.maykon@tecnomulti.com.pst)? , Se sim, pode ser esse o problema, basta substituir pst por br.\nData de abertura 17-02-2025 10:52\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-88/add_followup.1739800354.1337819510@oswintech.ddns.net','','mailing','add_followup'),
(1251,'Ticket',88,4,2,0,0,'2025-02-17 20:04:30','2025-02-17 20:04:30',NULL,'[GLPI #0000088] Atualização de um acompanhamento edson maykon','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000088] Atualiza&#38;ccedil;&#38;atilde;o de um acompanhamento edson maykon&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_88\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_88&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:edson maykon &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:17-02-2025 08:36 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- edson.maykon@tecnomulti.com.pst     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;edson maykon&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;edson.maykon@tecnomulti.com.pst&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84 987026218&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;nao estou tendo acesso e meu e-mail  edson.maykon@tecnomulti.com.pst&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [17-02-2025 10:52]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, está tentando dessa forma(&#60;span style=\"color: #155210; font-family: inter, -apple-system, blinkmacsystemfont, \'san francisco\', \'segoe ui\', roboto, \'helvetica neue\', sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: no-contextual; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: #e2f2e3; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; display: inline !important; float: none;\"&#62;edson.maykon@tecnomulti.com.pst&#60;/span&#62;)? , Se sim, pode ser esse o problema. Removo o .PST e pronto. Lembrando que o e-mail deve ser configurado em POP3.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;17-02-2025 10:52&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_88 \n\n Chamado: Descrição\n\n Título : edson maykon\n Requerentes :  tecnomulti  \n Data de abertura : 17-02-2025 08:36\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - edson.maykon@tecnomulti.com.pst\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : edson maykon\n2) E-MAIL : edson.maykon@tecnomulti.com.pst\n3) TELEFONE : 84 987026218\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nnao estou tendo acesso e meu e-mail  edson.maykon@tecnomulti.com.pst\n \n\n\n[17-02-2025 10:52]\nAutor Luan Medeiros\nDescrição Bom dia, está tentando dessa forma(edson.maykon@tecnomulti.com.pst)? , Se sim, pode ser esse o problema. Removo o .PST e pronto. Lembrando que o e-mail deve ser configurado em POP3.\nData de abertura 17-02-2025 10:52\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-88/update_followup.1739822670.1730795997@oswintech.ddns.net','','mailing','update_followup'),
(1252,'Ticket',88,4,2,0,0,'2025-02-17 20:04:30','2025-02-17 20:04:30',NULL,'[GLPI #0000088] Atualização de um acompanhamento edson maykon','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000088] Atualiza&#38;ccedil;&#38;atilde;o de um acompanhamento edson maykon&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_88\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_88&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:edson maykon &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:17-02-2025 08:36 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- edson.maykon@tecnomulti.com.pst     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;edson maykon&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;edson.maykon@tecnomulti.com.pst&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84 987026218&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;nao estou tendo acesso e meu e-mail  edson.maykon@tecnomulti.com.pst&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [17-02-2025 10:52]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, está tentando dessa forma(&#60;span style=\"color: #155210; font-family: inter, -apple-system, blinkmacsystemfont, \'san francisco\', \'segoe ui\', roboto, \'helvetica neue\', sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: no-contextual; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: #e2f2e3; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; display: inline !important; float: none;\"&#62;edson.maykon@tecnomulti.com.pst&#60;/span&#62;)? , Se sim, pode ser esse o problema. Removo o .PST e pronto. Lembrando que o e-mail deve ser configurado em POP3.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;17-02-2025 10:52&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_88 \n\n Chamado: Descrição\n\n Título : edson maykon\n Requerentes :  tecnomulti  \n Data de abertura : 17-02-2025 08:36\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - edson.maykon@tecnomulti.com.pst\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : edson maykon\n2) E-MAIL : edson.maykon@tecnomulti.com.pst\n3) TELEFONE : 84 987026218\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nnao estou tendo acesso e meu e-mail  edson.maykon@tecnomulti.com.pst\n \n\n\n[17-02-2025 10:52]\nAutor Luan Medeiros\nDescrição Bom dia, está tentando dessa forma(edson.maykon@tecnomulti.com.pst)? , Se sim, pode ser esse o problema. Removo o .PST e pronto. Lembrando que o e-mail deve ser configurado em POP3.\nData de abertura 17-02-2025 10:52\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-88/update_followup.1739822670.1156389216@oswintech.ddns.net','','mailing','update_followup'),
(1253,'Ticket',88,4,2,1,0,'2025-02-17 20:31:30','2025-02-17 20:31:30','2025-02-18 17:49:34','[GLPI #0000088] Atualização de um chamado edson maykon',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_88 \n\n Chamado: Descrição\n\n Título : edson maykon\n Requerentes :  tecnomulti  \n Data de abertura : 17-02-2025 08:36\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - edson.maykon@tecnomulti.com.pst\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : edson maykon\n2) E-MAIL : edson.maykon@tecnomulti.com.pst\n3) TELEFONE : 84 987026218\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nnao estou tendo acesso e meu e-mail  edson.maykon@tecnomulti.com.pst\n \n\n\n[17-02-2025 10:52]\nAutor Luan Medeiros\nDescrição Bom dia, está tentando dessa forma(edson.maykon@tecnomulti.com.pst)? , Se sim, pode ser esse o problema. Removo o .PST e pronto. Lembrando que o e-mail deve ser configurado em POP3.\nData de abertura 17-02-2025 10:52\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','update'),
(1254,'Ticket',88,4,2,0,0,'2025-02-17 20:31:30','2025-02-17 20:31:30',NULL,'[GLPI #0000088] Atualização de um chamado edson maykon','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000088] Atualiza&#38;ccedil;&#38;atilde;o de um chamado edson maykon&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_88\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_88&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:edson maykon &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:17-02-2025 08:36 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- edson.maykon@tecnomulti.com.pst     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;edson maykon&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;edson.maykon@tecnomulti.com.pst&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84 987026218&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;nao estou tendo acesso e meu e-mail  edson.maykon@tecnomulti.com.pst&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [17-02-2025 10:52]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, está tentando dessa forma(&#60;span style=\"color: #155210; font-family: inter, -apple-system, blinkmacsystemfont, \'san francisco\', \'segoe ui\', roboto, \'helvetica neue\', sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: no-contextual; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: #e2f2e3; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; display: inline !important; float: none;\"&#62;edson.maykon@tecnomulti.com.pst&#60;/span&#62;)? , Se sim, pode ser esse o problema. Removo o .PST e pronto. Lembrando que o e-mail deve ser configurado em POP3.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;17-02-2025 10:52&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_88 \n\n Chamado: Descrição\n\n Título : edson maykon\n Requerentes :  tecnomulti  \n Data de abertura : 17-02-2025 08:36\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - edson.maykon@tecnomulti.com.pst\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : edson maykon\n2) E-MAIL : edson.maykon@tecnomulti.com.pst\n3) TELEFONE : 84 987026218\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nnao estou tendo acesso e meu e-mail  edson.maykon@tecnomulti.com.pst\n \n\n\n[17-02-2025 10:52]\nAutor Luan Medeiros\nDescrição Bom dia, está tentando dessa forma(edson.maykon@tecnomulti.com.pst)? , Se sim, pode ser esse o problema. Removo o .PST e pronto. Lembrando que o e-mail deve ser configurado em POP3.\nData de abertura 17-02-2025 10:52\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-88/update.1739824290.1554880257@oswintech.ddns.net','','mailing','update'),
(1255,'Ticket',88,4,2,0,0,'2025-02-17 20:31:30','2025-02-17 20:31:30',NULL,'[GLPI #0000088] Atualização de um chamado edson maykon','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000088] Atualiza&#38;ccedil;&#38;atilde;o de um chamado edson maykon&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_88\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_88&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:edson maykon &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:17-02-2025 08:36 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- edson.maykon@tecnomulti.com.pst     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;edson maykon&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;edson.maykon@tecnomulti.com.pst&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84 987026218&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;nao estou tendo acesso e meu e-mail  edson.maykon@tecnomulti.com.pst&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [17-02-2025 10:52]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Luan Medeiros&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Bom dia, está tentando dessa forma(&#60;span style=\"color: #155210; font-family: inter, -apple-system, blinkmacsystemfont, \'san francisco\', \'segoe ui\', roboto, \'helvetica neue\', sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: no-contextual; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; white-space: normal; background-color: #e2f2e3; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; display: inline !important; float: none;\"&#62;edson.maykon@tecnomulti.com.pst&#60;/span&#62;)? , Se sim, pode ser esse o problema. Removo o .PST e pronto. Lembrando que o e-mail deve ser configurado em POP3.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;17-02-2025 10:52&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_88 \n\n Chamado: Descrição\n\n Título : edson maykon\n Requerentes :  tecnomulti  \n Data de abertura : 17-02-2025 08:36\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - edson.maykon@tecnomulti.com.pst\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : edson maykon\n2) E-MAIL : edson.maykon@tecnomulti.com.pst\n3) TELEFONE : 84 987026218\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nnao estou tendo acesso e meu e-mail  edson.maykon@tecnomulti.com.pst\n \n\n\n[17-02-2025 10:52]\nAutor Luan Medeiros\nDescrição Bom dia, está tentando dessa forma(edson.maykon@tecnomulti.com.pst)? , Se sim, pode ser esse o problema. Removo o .PST e pronto. Lembrando que o e-mail deve ser configurado em POP3.\nData de abertura 17-02-2025 10:52\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-88/update.1739824290.1999771919@oswintech.ddns.net','','mailing','update'),
(1256,'PluginFormcreatorFormAnswer',54,29,2,0,0,'2025-02-18 17:56:01','2025-02-18 17:56:01',NULL,'[GLPI] Sua requisição foi salva','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI] Sua requisi&#38;ccedil;&#38;atilde;o foi salva&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;p&#62;Olá,&#60;br /&#62;Sua requisição do GLPI foi salva com sucesso com o número 54 e transmitido para a equipe de helpdesk.&#60;br /&#62;Você pode ver suas respostas no seguinte link:&#60;br /&#62;https://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=54&#60;/p&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;','Olá,\nSua requisição do GLPI foi salva com sucesso com o número 54 e transmitido para a equipe de helpdesk.\nVocê pode ver suas respostas no seguinte link:\nhttps://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=54\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-PluginFormcreatorFormAnswer-54/plugin_formcreator_form_created.1739901361.861162164@oswintech.ddns.net','','mailing','plugin_formcreator_form_created'),
(1257,'Ticket',90,4,2,1,0,'2025-02-18 17:56:01','2025-02-18 17:56:01','2025-02-18 17:56:03','[GLPI #0000090] Novo chamado não consigo acessar meu outlook',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_90 \n\n Chamado: Descrição\n\n Título : não consigo acessar meu outlook\n Requerentes :  tecnomulti  \n Data de abertura : 18-02-2025 14:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : não consigo acessar meu outlook\n2) E-MAIL : aprendiz.recifela@tecnomult.com\n3) TELEFONE : 81 986981633\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \n[47cb7c5c-b2d8e96f-67b4c9ad2804d1.68109059] [https://oswintech.ddns.net/front/document.send.php?docid=17&#38;itemtype=Ticket&#38;items_id=90]\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(1258,'Ticket',90,4,2,0,0,'2025-02-18 17:56:01','2025-02-18 17:56:01',NULL,'[GLPI #0000090] Novo chamado não consigo acessar meu outlook',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_90 \n\n Chamado: Descrição\n\n Título : não consigo acessar meu outlook\n Requerentes :  tecnomulti  \n Data de abertura : 18-02-2025 14:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : não consigo acessar meu outlook\n2) E-MAIL : aprendiz.recifela@tecnomult.com\n3) TELEFONE : 81 986981633\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \n[47cb7c5c-b2d8e96f-67b4c9ad2804d1.68109059] [https://oswintech.ddns.net/front/document.send.php?docid=17&#38;itemtype=Ticket&#38;items_id=90]\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(1259,'Ticket',90,4,2,0,0,'2025-02-18 17:56:01','2025-02-18 17:56:01',NULL,'[GLPI #0000090] Novo chamado não consigo acessar meu outlook',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_90 \n\n Chamado: Descrição\n\n Título : não consigo acessar meu outlook\n Requerentes :  tecnomulti  \n Data de abertura : 18-02-2025 14:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : não consigo acessar meu outlook\n2) E-MAIL : aprendiz.recifela@tecnomult.com\n3) TELEFONE : 81 986981633\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \n[47cb7c5c-b2d8e96f-67b4c9ad2804d1.68109059] [https://oswintech.ddns.net/front/document.send.php?docid=17&#38;itemtype=Ticket&#38;items_id=90]\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(1260,'Ticket',90,4,2,0,0,'2025-02-18 17:56:01','2025-02-18 17:56:01',NULL,'[GLPI #0000090] Novo chamado não consigo acessar meu outlook',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_90 \n\n Chamado: Descrição\n\n Título : não consigo acessar meu outlook\n Requerentes :  tecnomulti  \n Data de abertura : 18-02-2025 14:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : não consigo acessar meu outlook\n2) E-MAIL : aprendiz.recifela@tecnomult.com\n3) TELEFONE : 81 986981633\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \n[47cb7c5c-b2d8e96f-67b4c9ad2804d1.68109059] [https://oswintech.ddns.net/front/document.send.php?docid=17&#38;itemtype=Ticket&#38;items_id=90]\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(1261,'Ticket',90,4,2,0,0,'2025-02-18 17:56:01','2025-02-18 17:56:01',NULL,'[GLPI #0000090] Novo chamado não consigo acessar meu outlook','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000090] Novo chamado n&#38;atilde;o consigo acessar meu outlook&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_90\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_90&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:n&#38;atilde;o consigo acessar meu outlook &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:18-02-2025 14:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;não consigo acessar meu outlook&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;aprendiz.recifela@tecnomult.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 986981633&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;&#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=17&#38;amp;itemtype=Ticket&#38;amp;items_id=90\" target=\"_blank\"&#62;&#60;img alt=\"47cb7c5c-b2d8e96f-67b4c9ad2804d1.68109059\" width=\"545\" src=\"/front/document.send.php?docid=17&#38;amp;itemtype=Ticket&#38;amp;items_id=90\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_90 \n\n Chamado: Descrição\n\n Título : não consigo acessar meu outlook\n Requerentes :  tecnomulti  \n Data de abertura : 18-02-2025 14:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : não consigo acessar meu outlook\n2) E-MAIL : aprendiz.recifela@tecnomult.com\n3) TELEFONE : 81 986981633\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \n[47cb7c5c-b2d8e96f-67b4c9ad2804d1.68109059] [https://oswintech.ddns.net/front/document.send.php?docid=17&#38;itemtype=Ticket&#38;items_id=90]\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-90/new@oswintech.ddns.net','','mailing','new'),
(1262,'Ticket',90,4,2,0,0,'2025-02-18 17:56:01','2025-02-18 17:56:01',NULL,'[GLPI #0000090] Novo chamado não consigo acessar meu outlook','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000090] Novo chamado n&#38;atilde;o consigo acessar meu outlook&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_90\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_90&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:n&#38;atilde;o consigo acessar meu outlook &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:18-02-2025 14:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;não consigo acessar meu outlook&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;aprendiz.recifela@tecnomult.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 986981633&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;&#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=17&#38;amp;itemtype=Ticket&#38;amp;items_id=90\" target=\"_blank\"&#62;&#60;img alt=\"47cb7c5c-b2d8e96f-67b4c9ad2804d1.68109059\" width=\"545\" src=\"/front/document.send.php?docid=17&#38;amp;itemtype=Ticket&#38;amp;items_id=90\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_90 \n\n Chamado: Descrição\n\n Título : não consigo acessar meu outlook\n Requerentes :  tecnomulti  \n Data de abertura : 18-02-2025 14:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : não consigo acessar meu outlook\n2) E-MAIL : aprendiz.recifela@tecnomult.com\n3) TELEFONE : 81 986981633\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \n[47cb7c5c-b2d8e96f-67b4c9ad2804d1.68109059] [https://oswintech.ddns.net/front/document.send.php?docid=17&#38;itemtype=Ticket&#38;items_id=90]\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-90/new@oswintech.ddns.net','','mailing','new'),
(1263,'Ticket',90,4,2,0,0,'2025-02-18 17:56:01','2025-02-18 17:56:01',NULL,'[GLPI #0000090] Novo chamado não consigo acessar meu outlook','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000090] Novo chamado n&#38;atilde;o consigo acessar meu outlook&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_90\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_90&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:n&#38;atilde;o consigo acessar meu outlook &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:18-02-2025 14:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;não consigo acessar meu outlook&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;aprendiz.recifela@tecnomult.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 986981633&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;&#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=17&#38;amp;itemtype=Ticket&#38;amp;items_id=90\" target=\"_blank\"&#62;&#60;img alt=\"47cb7c5c-b2d8e96f-67b4c9ad2804d1.68109059\" width=\"545\" src=\"/front/document.send.php?docid=17&#38;amp;itemtype=Ticket&#38;amp;items_id=90\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_90 \n\n Chamado: Descrição\n\n Título : não consigo acessar meu outlook\n Requerentes :  tecnomulti  \n Data de abertura : 18-02-2025 14:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : não consigo acessar meu outlook\n2) E-MAIL : aprendiz.recifela@tecnomult.com\n3) TELEFONE : 81 986981633\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \n[47cb7c5c-b2d8e96f-67b4c9ad2804d1.68109059] [https://oswintech.ddns.net/front/document.send.php?docid=17&#38;itemtype=Ticket&#38;items_id=90]\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-90/new@oswintech.ddns.net','','mailing','new'),
(1264,'Ticket',90,4,2,0,0,'2025-02-18 17:56:01','2025-02-18 17:56:01',NULL,'[GLPI #0000090] Novo chamado não consigo acessar meu outlook','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000090] Novo chamado n&#38;atilde;o consigo acessar meu outlook&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_90\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_90&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:n&#38;atilde;o consigo acessar meu outlook &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:18-02-2025 14:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;não consigo acessar meu outlook&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;aprendiz.recifela@tecnomult.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 986981633&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;&#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=17&#38;amp;itemtype=Ticket&#38;amp;items_id=90\" target=\"_blank\"&#62;&#60;img alt=\"47cb7c5c-b2d8e96f-67b4c9ad2804d1.68109059\" width=\"545\" src=\"/front/document.send.php?docid=17&#38;amp;itemtype=Ticket&#38;amp;items_id=90\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_90 \n\n Chamado: Descrição\n\n Título : não consigo acessar meu outlook\n Requerentes :  tecnomulti  \n Data de abertura : 18-02-2025 14:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : não consigo acessar meu outlook\n2) E-MAIL : aprendiz.recifela@tecnomult.com\n3) TELEFONE : 81 986981633\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \n[47cb7c5c-b2d8e96f-67b4c9ad2804d1.68109059] [https://oswintech.ddns.net/front/document.send.php?docid=17&#38;itemtype=Ticket&#38;items_id=90]\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-90/new@oswintech.ddns.net','','mailing','new'),
(1265,'PluginFormcreatorFormAnswer',55,29,2,0,0,'2025-02-18 17:56:26','2025-02-18 17:56:26',NULL,'[GLPI] Sua requisição foi salva','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI] Sua requisi&#38;ccedil;&#38;atilde;o foi salva&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;p&#62;Olá,&#60;br /&#62;Sua requisição do GLPI foi salva com sucesso com o número 55 e transmitido para a equipe de helpdesk.&#60;br /&#62;Você pode ver suas respostas no seguinte link:&#60;br /&#62;https://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=55&#60;/p&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;','Olá,\nSua requisição do GLPI foi salva com sucesso com o número 55 e transmitido para a equipe de helpdesk.\nVocê pode ver suas respostas no seguinte link:\nhttps://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=55\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-PluginFormcreatorFormAnswer-55/plugin_formcreator_form_created.1739901386.211462223@oswintech.ddns.net','','mailing','plugin_formcreator_form_created'),
(1266,'Ticket',91,4,2,1,0,'2025-02-18 17:56:26','2025-02-18 17:56:26','2025-02-18 17:56:30','[GLPI #0000091] Novo chamado CHAMADO RAYLLA',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_91 \n\n Chamado: Descrição\n\n Título : CHAMADO RAYLLA\n Requerentes :  tecnomulti  \n Data de abertura : 18-02-2025 14:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CHAMADO RAYLLA\n2) E-MAIL : raylla.vitoria@tecnomulti.com\n3) TELEFONE : 84988082753\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nBoa tarde, Alex!\nNão consigo rever emails antigos nem enviados.\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(1267,'Ticket',91,4,2,0,0,'2025-02-18 17:56:26','2025-02-18 17:56:26',NULL,'[GLPI #0000091] Novo chamado CHAMADO RAYLLA',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_91 \n\n Chamado: Descrição\n\n Título : CHAMADO RAYLLA\n Requerentes :  tecnomulti  \n Data de abertura : 18-02-2025 14:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CHAMADO RAYLLA\n2) E-MAIL : raylla.vitoria@tecnomulti.com\n3) TELEFONE : 84988082753\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nBoa tarde, Alex!\nNão consigo rever emails antigos nem enviados.\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(1268,'Ticket',91,4,2,0,0,'2025-02-18 17:56:26','2025-02-18 17:56:26',NULL,'[GLPI #0000091] Novo chamado CHAMADO RAYLLA',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_91 \n\n Chamado: Descrição\n\n Título : CHAMADO RAYLLA\n Requerentes :  tecnomulti  \n Data de abertura : 18-02-2025 14:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CHAMADO RAYLLA\n2) E-MAIL : raylla.vitoria@tecnomulti.com\n3) TELEFONE : 84988082753\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nBoa tarde, Alex!\nNão consigo rever emails antigos nem enviados.\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(1269,'Ticket',91,4,2,0,0,'2025-02-18 17:56:26','2025-02-18 17:56:26',NULL,'[GLPI #0000091] Novo chamado CHAMADO RAYLLA',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_91 \n\n Chamado: Descrição\n\n Título : CHAMADO RAYLLA\n Requerentes :  tecnomulti  \n Data de abertura : 18-02-2025 14:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CHAMADO RAYLLA\n2) E-MAIL : raylla.vitoria@tecnomulti.com\n3) TELEFONE : 84988082753\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nBoa tarde, Alex!\nNão consigo rever emails antigos nem enviados.\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(1270,'Ticket',91,4,2,0,0,'2025-02-18 17:56:26','2025-02-18 17:56:26',NULL,'[GLPI #0000091] Novo chamado CHAMADO RAYLLA','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000091] Novo chamado CHAMADO RAYLLA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_91\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_91&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:CHAMADO RAYLLA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:18-02-2025 14:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CHAMADO RAYLLA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;raylla.vitoria@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84988082753&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Boa tarde, Alex!&#60;br /&#62;Não consigo rever emails antigos nem enviados.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_91 \n\n Chamado: Descrição\n\n Título : CHAMADO RAYLLA\n Requerentes :  tecnomulti  \n Data de abertura : 18-02-2025 14:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CHAMADO RAYLLA\n2) E-MAIL : raylla.vitoria@tecnomulti.com\n3) TELEFONE : 84988082753\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nBoa tarde, Alex!\nNão consigo rever emails antigos nem enviados.\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-91/new@oswintech.ddns.net','','mailing','new'),
(1271,'Ticket',91,4,2,0,0,'2025-02-18 17:56:26','2025-02-18 17:56:26',NULL,'[GLPI #0000091] Novo chamado CHAMADO RAYLLA','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000091] Novo chamado CHAMADO RAYLLA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_91\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_91&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:CHAMADO RAYLLA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:18-02-2025 14:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CHAMADO RAYLLA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;raylla.vitoria@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84988082753&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Boa tarde, Alex!&#60;br /&#62;Não consigo rever emails antigos nem enviados.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_91 \n\n Chamado: Descrição\n\n Título : CHAMADO RAYLLA\n Requerentes :  tecnomulti  \n Data de abertura : 18-02-2025 14:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CHAMADO RAYLLA\n2) E-MAIL : raylla.vitoria@tecnomulti.com\n3) TELEFONE : 84988082753\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nBoa tarde, Alex!\nNão consigo rever emails antigos nem enviados.\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-91/new@oswintech.ddns.net','','mailing','new'),
(1272,'Ticket',91,4,2,0,0,'2025-02-18 17:56:26','2025-02-18 17:56:26',NULL,'[GLPI #0000091] Novo chamado CHAMADO RAYLLA','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000091] Novo chamado CHAMADO RAYLLA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_91\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_91&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:CHAMADO RAYLLA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:18-02-2025 14:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CHAMADO RAYLLA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;raylla.vitoria@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84988082753&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Boa tarde, Alex!&#60;br /&#62;Não consigo rever emails antigos nem enviados.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_91 \n\n Chamado: Descrição\n\n Título : CHAMADO RAYLLA\n Requerentes :  tecnomulti  \n Data de abertura : 18-02-2025 14:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CHAMADO RAYLLA\n2) E-MAIL : raylla.vitoria@tecnomulti.com\n3) TELEFONE : 84988082753\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nBoa tarde, Alex!\nNão consigo rever emails antigos nem enviados.\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-91/new@oswintech.ddns.net','','mailing','new'),
(1273,'Ticket',91,4,2,0,0,'2025-02-18 17:56:26','2025-02-18 17:56:26',NULL,'[GLPI #0000091] Novo chamado CHAMADO RAYLLA','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000091] Novo chamado CHAMADO RAYLLA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_91\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_91&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:CHAMADO RAYLLA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:18-02-2025 14:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CHAMADO RAYLLA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;raylla.vitoria@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84988082753&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Boa tarde, Alex!&#60;br /&#62;Não consigo rever emails antigos nem enviados.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_91 \n\n Chamado: Descrição\n\n Título : CHAMADO RAYLLA\n Requerentes :  tecnomulti  \n Data de abertura : 18-02-2025 14:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CHAMADO RAYLLA\n2) E-MAIL : raylla.vitoria@tecnomulti.com\n3) TELEFONE : 84988082753\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nBoa tarde, Alex!\nNão consigo rever emails antigos nem enviados.\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-91/new@oswintech.ddns.net','','mailing','new'),
(1274,'Ticket',91,4,2,1,0,'2025-02-18 18:14:21','2025-02-18 18:14:21','2025-02-18 18:14:25','[GLPI #0000091] Novo acompanhamento CHAMADO RAYLLA',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_91 \n\n Chamado: Descrição\n\n Título : CHAMADO RAYLLA\n Requerentes :  tecnomulti  \n Data de abertura : 18-02-2025 14:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - raylla.vitoria@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CHAMADO RAYLLA\n2) E-MAIL : raylla.vitoria@tecnomulti.com\n3) TELEFONE : 84988082753\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nBoa tarde, Alex!\nNão consigo rever emails antigos nem enviados.\n \n\n\n[18-02-2025 15:14]\nAutor Alexsandro Cruz\nDescrição Boa tarde,\n\nFavor me passe o anydesk para eu acessar.\nData de abertura 18-02-2025 15:14\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1275,'Ticket',91,4,2,0,0,'2025-02-18 18:14:21','2025-02-18 18:14:21',NULL,'[GLPI #0000091] Novo acompanhamento CHAMADO RAYLLA',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_91 \n\n Chamado: Descrição\n\n Título : CHAMADO RAYLLA\n Requerentes :  tecnomulti  \n Data de abertura : 18-02-2025 14:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - raylla.vitoria@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CHAMADO RAYLLA\n2) E-MAIL : raylla.vitoria@tecnomulti.com\n3) TELEFONE : 84988082753\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nBoa tarde, Alex!\nNão consigo rever emails antigos nem enviados.\n \n\n\n[18-02-2025 15:14]\nAutor Alexsandro Cruz\nDescrição Boa tarde,\n\nFavor me passe o anydesk para eu acessar.\nData de abertura 18-02-2025 15:14\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1276,'Ticket',91,4,2,0,0,'2025-02-18 18:14:21','2025-02-18 18:14:21',NULL,'[GLPI #0000091] Novo acompanhamento CHAMADO RAYLLA',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_91 \n\n Chamado: Descrição\n\n Título : CHAMADO RAYLLA\n Requerentes :  tecnomulti  \n Data de abertura : 18-02-2025 14:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - raylla.vitoria@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CHAMADO RAYLLA\n2) E-MAIL : raylla.vitoria@tecnomulti.com\n3) TELEFONE : 84988082753\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nBoa tarde, Alex!\nNão consigo rever emails antigos nem enviados.\n \n\n\n[18-02-2025 15:14]\nAutor Alexsandro Cruz\nDescrição Boa tarde,\n\nFavor me passe o anydesk para eu acessar.\nData de abertura 18-02-2025 15:14\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1277,'Ticket',91,4,2,0,0,'2025-02-18 18:14:21','2025-02-18 18:14:21',NULL,'[GLPI #0000091] Novo acompanhamento CHAMADO RAYLLA',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_91 \n\n Chamado: Descrição\n\n Título : CHAMADO RAYLLA\n Requerentes :  tecnomulti  \n Data de abertura : 18-02-2025 14:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - raylla.vitoria@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CHAMADO RAYLLA\n2) E-MAIL : raylla.vitoria@tecnomulti.com\n3) TELEFONE : 84988082753\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nBoa tarde, Alex!\nNão consigo rever emails antigos nem enviados.\n \n\n\n[18-02-2025 15:14]\nAutor Alexsandro Cruz\nDescrição Boa tarde,\n\nFavor me passe o anydesk para eu acessar.\nData de abertura 18-02-2025 15:14\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1278,'Ticket',91,4,2,0,0,'2025-02-18 18:14:21','2025-02-18 18:14:21',NULL,'[GLPI #0000091] Novo acompanhamento CHAMADO RAYLLA','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000091] Novo acompanhamento CHAMADO RAYLLA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_91\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_91&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:CHAMADO RAYLLA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:18-02-2025 14:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- raylla.vitoria@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CHAMADO RAYLLA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;raylla.vitoria@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84988082753&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Boa tarde, Alex!&#60;br /&#62;Não consigo rever emails antigos nem enviados.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [18-02-2025 15:14]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde,&#60;/p&#62;\r\n&#60;p&#62;Favor me passe o anydesk para eu acessar.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;18-02-2025 15:14&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_91 \n\n Chamado: Descrição\n\n Título : CHAMADO RAYLLA\n Requerentes :  tecnomulti  \n Data de abertura : 18-02-2025 14:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - raylla.vitoria@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CHAMADO RAYLLA\n2) E-MAIL : raylla.vitoria@tecnomulti.com\n3) TELEFONE : 84988082753\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nBoa tarde, Alex!\nNão consigo rever emails antigos nem enviados.\n \n\n\n[18-02-2025 15:14]\nAutor Alexsandro Cruz\nDescrição Boa tarde,\n\nFavor me passe o anydesk para eu acessar.\nData de abertura 18-02-2025 15:14\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-91/add_followup.1739902461.166648208@oswintech.ddns.net','','mailing','add_followup'),
(1279,'Ticket',91,4,2,0,0,'2025-02-18 18:14:21','2025-02-18 18:14:21',NULL,'[GLPI #0000091] Novo acompanhamento CHAMADO RAYLLA','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000091] Novo acompanhamento CHAMADO RAYLLA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_91\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_91&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:CHAMADO RAYLLA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:18-02-2025 14:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- raylla.vitoria@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CHAMADO RAYLLA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;raylla.vitoria@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84988082753&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Boa tarde, Alex!&#60;br /&#62;Não consigo rever emails antigos nem enviados.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [18-02-2025 15:14]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde,&#60;/p&#62;\r\n&#60;p&#62;Favor me passe o anydesk para eu acessar.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;18-02-2025 15:14&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_91 \n\n Chamado: Descrição\n\n Título : CHAMADO RAYLLA\n Requerentes :  tecnomulti  \n Data de abertura : 18-02-2025 14:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - raylla.vitoria@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CHAMADO RAYLLA\n2) E-MAIL : raylla.vitoria@tecnomulti.com\n3) TELEFONE : 84988082753\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nBoa tarde, Alex!\nNão consigo rever emails antigos nem enviados.\n \n\n\n[18-02-2025 15:14]\nAutor Alexsandro Cruz\nDescrição Boa tarde,\n\nFavor me passe o anydesk para eu acessar.\nData de abertura 18-02-2025 15:14\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-91/add_followup.1739902461.1273346075@oswintech.ddns.net','','mailing','add_followup'),
(1280,'Ticket',91,4,2,0,0,'2025-02-18 18:14:21','2025-02-18 18:14:21',NULL,'[GLPI #0000091] Novo acompanhamento CHAMADO RAYLLA','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000091] Novo acompanhamento CHAMADO RAYLLA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_91\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_91&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:CHAMADO RAYLLA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:18-02-2025 14:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- raylla.vitoria@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CHAMADO RAYLLA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;raylla.vitoria@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84988082753&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Boa tarde, Alex!&#60;br /&#62;Não consigo rever emails antigos nem enviados.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [18-02-2025 15:14]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde,&#60;/p&#62;\r\n&#60;p&#62;Favor me passe o anydesk para eu acessar.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;18-02-2025 15:14&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_91 \n\n Chamado: Descrição\n\n Título : CHAMADO RAYLLA\n Requerentes :  tecnomulti  \n Data de abertura : 18-02-2025 14:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - raylla.vitoria@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CHAMADO RAYLLA\n2) E-MAIL : raylla.vitoria@tecnomulti.com\n3) TELEFONE : 84988082753\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nBoa tarde, Alex!\nNão consigo rever emails antigos nem enviados.\n \n\n\n[18-02-2025 15:14]\nAutor Alexsandro Cruz\nDescrição Boa tarde,\n\nFavor me passe o anydesk para eu acessar.\nData de abertura 18-02-2025 15:14\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-91/add_followup.1739902461.1797759034@oswintech.ddns.net','','mailing','add_followup'),
(1281,'Ticket',91,4,2,0,0,'2025-02-18 18:14:21','2025-02-18 18:14:21',NULL,'[GLPI #0000091] Novo acompanhamento CHAMADO RAYLLA','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000091] Novo acompanhamento CHAMADO RAYLLA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_91\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_91&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:CHAMADO RAYLLA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:18-02-2025 14:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- raylla.vitoria@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CHAMADO RAYLLA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;raylla.vitoria@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84988082753&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Boa tarde, Alex!&#60;br /&#62;Não consigo rever emails antigos nem enviados.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [18-02-2025 15:14]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde,&#60;/p&#62;\r\n&#60;p&#62;Favor me passe o anydesk para eu acessar.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;18-02-2025 15:14&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_91 \n\n Chamado: Descrição\n\n Título : CHAMADO RAYLLA\n Requerentes :  tecnomulti  \n Data de abertura : 18-02-2025 14:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - raylla.vitoria@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CHAMADO RAYLLA\n2) E-MAIL : raylla.vitoria@tecnomulti.com\n3) TELEFONE : 84988082753\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nBoa tarde, Alex!\nNão consigo rever emails antigos nem enviados.\n \n\n\n[18-02-2025 15:14]\nAutor Alexsandro Cruz\nDescrição Boa tarde,\n\nFavor me passe o anydesk para eu acessar.\nData de abertura 18-02-2025 15:14\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-91/add_followup.1739902461.1277951239@oswintech.ddns.net','','mailing','add_followup'),
(1282,'Ticket',91,4,2,1,0,'2025-02-18 18:14:35','2025-02-18 18:14:35','2025-02-18 18:14:37','[GLPI #0000091] Atualização de um chamado CHAMADO RAYLLA',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_91 \n\n Chamado: Descrição\n\n Título : CHAMADO RAYLLA\n Requerentes :  tecnomulti  \n Data de abertura : 18-02-2025 14:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - raylla.vitoria@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CHAMADO RAYLLA\n2) E-MAIL : raylla.vitoria@tecnomulti.com\n3) TELEFONE : 84988082753\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nBoa tarde, Alex!\nNão consigo rever emails antigos nem enviados.\n \n\n\n[18-02-2025 15:14]\nAutor Alexsandro Cruz\nDescrição Boa tarde,\n\nFavor me passe o anydesk para eu acessar.\nData de abertura 18-02-2025 15:14\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','update'),
(1283,'Ticket',91,4,2,0,0,'2025-02-18 18:14:35','2025-02-18 18:14:35',NULL,'[GLPI #0000091] Atualização de um chamado CHAMADO RAYLLA','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000091] Atualiza&#38;ccedil;&#38;atilde;o de um chamado CHAMADO RAYLLA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_91\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_91&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:CHAMADO RAYLLA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:18-02-2025 14:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- raylla.vitoria@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CHAMADO RAYLLA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;raylla.vitoria@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84988082753&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Boa tarde, Alex!&#60;br /&#62;Não consigo rever emails antigos nem enviados.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [18-02-2025 15:14]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde,&#60;/p&#62;\r\n&#60;p&#62;Favor me passe o anydesk para eu acessar.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;18-02-2025 15:14&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_91 \n\n Chamado: Descrição\n\n Título : CHAMADO RAYLLA\n Requerentes :  tecnomulti  \n Data de abertura : 18-02-2025 14:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - raylla.vitoria@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CHAMADO RAYLLA\n2) E-MAIL : raylla.vitoria@tecnomulti.com\n3) TELEFONE : 84988082753\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nBoa tarde, Alex!\nNão consigo rever emails antigos nem enviados.\n \n\n\n[18-02-2025 15:14]\nAutor Alexsandro Cruz\nDescrição Boa tarde,\n\nFavor me passe o anydesk para eu acessar.\nData de abertura 18-02-2025 15:14\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-91/update.1739902475.1931831556@oswintech.ddns.net','','mailing','update'),
(1284,'Ticket',91,4,2,0,0,'2025-02-18 18:14:35','2025-02-18 18:14:35',NULL,'[GLPI #0000091] Atualização de um chamado CHAMADO RAYLLA','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000091] Atualiza&#38;ccedil;&#38;atilde;o de um chamado CHAMADO RAYLLA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_91\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_91&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:CHAMADO RAYLLA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:18-02-2025 14:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- raylla.vitoria@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CHAMADO RAYLLA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;raylla.vitoria@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84988082753&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Boa tarde, Alex!&#60;br /&#62;Não consigo rever emails antigos nem enviados.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [18-02-2025 15:14]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde,&#60;/p&#62;\r\n&#60;p&#62;Favor me passe o anydesk para eu acessar.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;18-02-2025 15:14&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_91 \n\n Chamado: Descrição\n\n Título : CHAMADO RAYLLA\n Requerentes :  tecnomulti  \n Data de abertura : 18-02-2025 14:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - raylla.vitoria@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CHAMADO RAYLLA\n2) E-MAIL : raylla.vitoria@tecnomulti.com\n3) TELEFONE : 84988082753\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nBoa tarde, Alex!\nNão consigo rever emails antigos nem enviados.\n \n\n\n[18-02-2025 15:14]\nAutor Alexsandro Cruz\nDescrição Boa tarde,\n\nFavor me passe o anydesk para eu acessar.\nData de abertura 18-02-2025 15:14\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-91/update.1739902475.991070724@oswintech.ddns.net','','mailing','update'),
(1285,'Ticket',90,4,2,1,0,'2025-02-18 18:16:04','2025-02-18 18:16:04','2025-02-18 18:16:06','[GLPI #0000090] Novo acompanhamento não consigo acessar meu outlook',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_90 \n\n Chamado: Descrição\n\n Título : não consigo acessar meu outlook\n Requerentes :  tecnomulti  \n Data de abertura : 18-02-2025 14:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - aprendiz.recifela@tecnomult.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : não consigo acessar meu outlook\n2) E-MAIL : aprendiz.recifela@tecnomult.com\n3) TELEFONE : 81 986981633\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \n[47cb7c5c-b2d8e96f-67b4c9ad2804d1.68109059] [https://oswintech.ddns.net/front/document.send.php?docid=17&#38;itemtype=Ticket&#38;items_id=90]\n \n\n\n[18-02-2025 15:16]\nAutor Alexsandro Cruz\nDescrição Boa tarde,\n\nMe passa o anydesk para analisar.\nData de abertura 18-02-2025 15:16\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1286,'Ticket',90,4,2,0,0,'2025-02-18 18:16:04','2025-02-18 18:16:04',NULL,'[GLPI #0000090] Novo acompanhamento não consigo acessar meu outlook',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_90 \n\n Chamado: Descrição\n\n Título : não consigo acessar meu outlook\n Requerentes :  tecnomulti  \n Data de abertura : 18-02-2025 14:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - aprendiz.recifela@tecnomult.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : não consigo acessar meu outlook\n2) E-MAIL : aprendiz.recifela@tecnomult.com\n3) TELEFONE : 81 986981633\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \n[47cb7c5c-b2d8e96f-67b4c9ad2804d1.68109059] [https://oswintech.ddns.net/front/document.send.php?docid=17&#38;itemtype=Ticket&#38;items_id=90]\n \n\n\n[18-02-2025 15:16]\nAutor Alexsandro Cruz\nDescrição Boa tarde,\n\nMe passa o anydesk para analisar.\nData de abertura 18-02-2025 15:16\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1287,'Ticket',90,4,2,0,0,'2025-02-18 18:16:04','2025-02-18 18:16:04',NULL,'[GLPI #0000090] Novo acompanhamento não consigo acessar meu outlook',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_90 \n\n Chamado: Descrição\n\n Título : não consigo acessar meu outlook\n Requerentes :  tecnomulti  \n Data de abertura : 18-02-2025 14:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - aprendiz.recifela@tecnomult.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : não consigo acessar meu outlook\n2) E-MAIL : aprendiz.recifela@tecnomult.com\n3) TELEFONE : 81 986981633\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \n[47cb7c5c-b2d8e96f-67b4c9ad2804d1.68109059] [https://oswintech.ddns.net/front/document.send.php?docid=17&#38;itemtype=Ticket&#38;items_id=90]\n \n\n\n[18-02-2025 15:16]\nAutor Alexsandro Cruz\nDescrição Boa tarde,\n\nMe passa o anydesk para analisar.\nData de abertura 18-02-2025 15:16\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1288,'Ticket',90,4,2,0,0,'2025-02-18 18:16:04','2025-02-18 18:16:04',NULL,'[GLPI #0000090] Novo acompanhamento não consigo acessar meu outlook',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_90 \n\n Chamado: Descrição\n\n Título : não consigo acessar meu outlook\n Requerentes :  tecnomulti  \n Data de abertura : 18-02-2025 14:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - aprendiz.recifela@tecnomult.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : não consigo acessar meu outlook\n2) E-MAIL : aprendiz.recifela@tecnomult.com\n3) TELEFONE : 81 986981633\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \n[47cb7c5c-b2d8e96f-67b4c9ad2804d1.68109059] [https://oswintech.ddns.net/front/document.send.php?docid=17&#38;itemtype=Ticket&#38;items_id=90]\n \n\n\n[18-02-2025 15:16]\nAutor Alexsandro Cruz\nDescrição Boa tarde,\n\nMe passa o anydesk para analisar.\nData de abertura 18-02-2025 15:16\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1289,'Ticket',90,4,2,0,0,'2025-02-18 18:16:04','2025-02-18 18:16:04',NULL,'[GLPI #0000090] Novo acompanhamento não consigo acessar meu outlook','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000090] Novo acompanhamento n&#38;atilde;o consigo acessar meu outlook&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_90\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_90&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:n&#38;atilde;o consigo acessar meu outlook &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:18-02-2025 14:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- aprendiz.recifela@tecnomult.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;não consigo acessar meu outlook&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;aprendiz.recifela@tecnomult.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 986981633&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;&#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=17&#38;amp;itemtype=Ticket&#38;amp;items_id=90\" target=\"_blank\"&#62;&#60;img alt=\"47cb7c5c-b2d8e96f-67b4c9ad2804d1.68109059\" width=\"545\" src=\"/front/document.send.php?docid=17&#38;amp;itemtype=Ticket&#38;amp;items_id=90\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [18-02-2025 15:16]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde,&#60;/p&#62;\r\n&#60;p&#62;Me passa o anydesk para analisar.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;18-02-2025 15:16&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_90 \n\n Chamado: Descrição\n\n Título : não consigo acessar meu outlook\n Requerentes :  tecnomulti  \n Data de abertura : 18-02-2025 14:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - aprendiz.recifela@tecnomult.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : não consigo acessar meu outlook\n2) E-MAIL : aprendiz.recifela@tecnomult.com\n3) TELEFONE : 81 986981633\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \n[47cb7c5c-b2d8e96f-67b4c9ad2804d1.68109059] [https://oswintech.ddns.net/front/document.send.php?docid=17&#38;itemtype=Ticket&#38;items_id=90]\n \n\n\n[18-02-2025 15:16]\nAutor Alexsandro Cruz\nDescrição Boa tarde,\n\nMe passa o anydesk para analisar.\nData de abertura 18-02-2025 15:16\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-90/add_followup.1739902564.197616474@oswintech.ddns.net','','mailing','add_followup'),
(1290,'Ticket',90,4,2,0,0,'2025-02-18 18:16:04','2025-02-18 18:16:04',NULL,'[GLPI #0000090] Novo acompanhamento não consigo acessar meu outlook','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000090] Novo acompanhamento n&#38;atilde;o consigo acessar meu outlook&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_90\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_90&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:n&#38;atilde;o consigo acessar meu outlook &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:18-02-2025 14:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- aprendiz.recifela@tecnomult.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;não consigo acessar meu outlook&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;aprendiz.recifela@tecnomult.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 986981633&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;&#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=17&#38;amp;itemtype=Ticket&#38;amp;items_id=90\" target=\"_blank\"&#62;&#60;img alt=\"47cb7c5c-b2d8e96f-67b4c9ad2804d1.68109059\" width=\"545\" src=\"/front/document.send.php?docid=17&#38;amp;itemtype=Ticket&#38;amp;items_id=90\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [18-02-2025 15:16]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde,&#60;/p&#62;\r\n&#60;p&#62;Me passa o anydesk para analisar.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;18-02-2025 15:16&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_90 \n\n Chamado: Descrição\n\n Título : não consigo acessar meu outlook\n Requerentes :  tecnomulti  \n Data de abertura : 18-02-2025 14:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - aprendiz.recifela@tecnomult.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : não consigo acessar meu outlook\n2) E-MAIL : aprendiz.recifela@tecnomult.com\n3) TELEFONE : 81 986981633\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \n[47cb7c5c-b2d8e96f-67b4c9ad2804d1.68109059] [https://oswintech.ddns.net/front/document.send.php?docid=17&#38;itemtype=Ticket&#38;items_id=90]\n \n\n\n[18-02-2025 15:16]\nAutor Alexsandro Cruz\nDescrição Boa tarde,\n\nMe passa o anydesk para analisar.\nData de abertura 18-02-2025 15:16\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-90/add_followup.1739902564.1250894189@oswintech.ddns.net','','mailing','add_followup'),
(1291,'Ticket',90,4,2,0,0,'2025-02-18 18:16:04','2025-02-18 18:16:04',NULL,'[GLPI #0000090] Novo acompanhamento não consigo acessar meu outlook','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000090] Novo acompanhamento n&#38;atilde;o consigo acessar meu outlook&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_90\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_90&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:n&#38;atilde;o consigo acessar meu outlook &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:18-02-2025 14:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- aprendiz.recifela@tecnomult.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;não consigo acessar meu outlook&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;aprendiz.recifela@tecnomult.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 986981633&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;&#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=17&#38;amp;itemtype=Ticket&#38;amp;items_id=90\" target=\"_blank\"&#62;&#60;img alt=\"47cb7c5c-b2d8e96f-67b4c9ad2804d1.68109059\" width=\"545\" src=\"/front/document.send.php?docid=17&#38;amp;itemtype=Ticket&#38;amp;items_id=90\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [18-02-2025 15:16]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde,&#60;/p&#62;\r\n&#60;p&#62;Me passa o anydesk para analisar.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;18-02-2025 15:16&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_90 \n\n Chamado: Descrição\n\n Título : não consigo acessar meu outlook\n Requerentes :  tecnomulti  \n Data de abertura : 18-02-2025 14:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - aprendiz.recifela@tecnomult.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : não consigo acessar meu outlook\n2) E-MAIL : aprendiz.recifela@tecnomult.com\n3) TELEFONE : 81 986981633\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \n[47cb7c5c-b2d8e96f-67b4c9ad2804d1.68109059] [https://oswintech.ddns.net/front/document.send.php?docid=17&#38;itemtype=Ticket&#38;items_id=90]\n \n\n\n[18-02-2025 15:16]\nAutor Alexsandro Cruz\nDescrição Boa tarde,\n\nMe passa o anydesk para analisar.\nData de abertura 18-02-2025 15:16\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-90/add_followup.1739902564.1731441018@oswintech.ddns.net','','mailing','add_followup'),
(1292,'Ticket',90,4,2,0,0,'2025-02-18 18:16:04','2025-02-18 18:16:04',NULL,'[GLPI #0000090] Novo acompanhamento não consigo acessar meu outlook','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000090] Novo acompanhamento n&#38;atilde;o consigo acessar meu outlook&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_90\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_90&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:n&#38;atilde;o consigo acessar meu outlook &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:18-02-2025 14:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- aprendiz.recifela@tecnomult.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;não consigo acessar meu outlook&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;aprendiz.recifela@tecnomult.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 986981633&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;&#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=17&#38;amp;itemtype=Ticket&#38;amp;items_id=90\" target=\"_blank\"&#62;&#60;img alt=\"47cb7c5c-b2d8e96f-67b4c9ad2804d1.68109059\" width=\"545\" src=\"/front/document.send.php?docid=17&#38;amp;itemtype=Ticket&#38;amp;items_id=90\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [18-02-2025 15:16]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde,&#60;/p&#62;\r\n&#60;p&#62;Me passa o anydesk para analisar.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;18-02-2025 15:16&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_90 \n\n Chamado: Descrição\n\n Título : não consigo acessar meu outlook\n Requerentes :  tecnomulti  \n Data de abertura : 18-02-2025 14:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - aprendiz.recifela@tecnomult.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : não consigo acessar meu outlook\n2) E-MAIL : aprendiz.recifela@tecnomult.com\n3) TELEFONE : 81 986981633\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \n[47cb7c5c-b2d8e96f-67b4c9ad2804d1.68109059] [https://oswintech.ddns.net/front/document.send.php?docid=17&#38;itemtype=Ticket&#38;items_id=90]\n \n\n\n[18-02-2025 15:16]\nAutor Alexsandro Cruz\nDescrição Boa tarde,\n\nMe passa o anydesk para analisar.\nData de abertura 18-02-2025 15:16\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-90/add_followup.1739902564.2759909@oswintech.ddns.net','','mailing','add_followup'),
(1293,'Ticket',90,4,2,1,0,'2025-02-18 18:16:39','2025-02-18 18:16:39','2025-02-18 18:16:41','[GLPI #0000090] Atualização de um chamado não consigo acessar meu outlook',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_90 \n\n Chamado: Descrição\n\n Título : não consigo acessar meu outlook\n Requerentes :  tecnomulti  \n Data de abertura : 18-02-2025 14:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - aprendiz.recifela@tecnomult.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : não consigo acessar meu outlook\n2) E-MAIL : aprendiz.recifela@tecnomult.com\n3) TELEFONE : 81 986981633\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \n[47cb7c5c-b2d8e96f-67b4c9ad2804d1.68109059] [https://oswintech.ddns.net/front/document.send.php?docid=17&#38;itemtype=Ticket&#38;items_id=90]\n \n\n\n[18-02-2025 15:16]\nAutor Alexsandro Cruz\nDescrição Boa tarde,\n\nMe passa o anydesk para analisar.\nData de abertura 18-02-2025 15:16\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','update'),
(1294,'Ticket',90,4,2,0,0,'2025-02-18 18:16:39','2025-02-18 18:16:39',NULL,'[GLPI #0000090] Atualização de um chamado não consigo acessar meu outlook','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000090] Atualiza&#38;ccedil;&#38;atilde;o de um chamado n&#38;atilde;o consigo acessar meu outlook&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_90\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_90&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:n&#38;atilde;o consigo acessar meu outlook &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:18-02-2025 14:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- aprendiz.recifela@tecnomult.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;não consigo acessar meu outlook&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;aprendiz.recifela@tecnomult.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 986981633&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;&#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=17&#38;amp;itemtype=Ticket&#38;amp;items_id=90\" target=\"_blank\"&#62;&#60;img alt=\"47cb7c5c-b2d8e96f-67b4c9ad2804d1.68109059\" width=\"545\" src=\"/front/document.send.php?docid=17&#38;amp;itemtype=Ticket&#38;amp;items_id=90\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [18-02-2025 15:16]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde,&#60;/p&#62;\r\n&#60;p&#62;Me passa o anydesk para analisar.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;18-02-2025 15:16&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_90 \n\n Chamado: Descrição\n\n Título : não consigo acessar meu outlook\n Requerentes :  tecnomulti  \n Data de abertura : 18-02-2025 14:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - aprendiz.recifela@tecnomult.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : não consigo acessar meu outlook\n2) E-MAIL : aprendiz.recifela@tecnomult.com\n3) TELEFONE : 81 986981633\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \n[47cb7c5c-b2d8e96f-67b4c9ad2804d1.68109059] [https://oswintech.ddns.net/front/document.send.php?docid=17&#38;itemtype=Ticket&#38;items_id=90]\n \n\n\n[18-02-2025 15:16]\nAutor Alexsandro Cruz\nDescrição Boa tarde,\n\nMe passa o anydesk para analisar.\nData de abertura 18-02-2025 15:16\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-90/update.1739902599.649197203@oswintech.ddns.net','','mailing','update'),
(1295,'Ticket',90,4,2,0,0,'2025-02-18 18:16:39','2025-02-18 18:16:39',NULL,'[GLPI #0000090] Atualização de um chamado não consigo acessar meu outlook','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000090] Atualiza&#38;ccedil;&#38;atilde;o de um chamado n&#38;atilde;o consigo acessar meu outlook&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_90\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_90&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:n&#38;atilde;o consigo acessar meu outlook &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:18-02-2025 14:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- aprendiz.recifela@tecnomult.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;não consigo acessar meu outlook&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;aprendiz.recifela@tecnomult.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 986981633&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;&#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=17&#38;amp;itemtype=Ticket&#38;amp;items_id=90\" target=\"_blank\"&#62;&#60;img alt=\"47cb7c5c-b2d8e96f-67b4c9ad2804d1.68109059\" width=\"545\" src=\"/front/document.send.php?docid=17&#38;amp;itemtype=Ticket&#38;amp;items_id=90\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [18-02-2025 15:16]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde,&#60;/p&#62;\r\n&#60;p&#62;Me passa o anydesk para analisar.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;18-02-2025 15:16&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_90 \n\n Chamado: Descrição\n\n Título : não consigo acessar meu outlook\n Requerentes :  tecnomulti  \n Data de abertura : 18-02-2025 14:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - aprendiz.recifela@tecnomult.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : não consigo acessar meu outlook\n2) E-MAIL : aprendiz.recifela@tecnomult.com\n3) TELEFONE : 81 986981633\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \n[47cb7c5c-b2d8e96f-67b4c9ad2804d1.68109059] [https://oswintech.ddns.net/front/document.send.php?docid=17&#38;itemtype=Ticket&#38;items_id=90]\n \n\n\n[18-02-2025 15:16]\nAutor Alexsandro Cruz\nDescrição Boa tarde,\n\nMe passa o anydesk para analisar.\nData de abertura 18-02-2025 15:16\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-90/update.1739902599.497671313@oswintech.ddns.net','','mailing','update'),
(1296,'Ticket',90,4,2,1,0,'2025-02-18 18:17:50','2025-02-18 18:17:50','2025-02-18 18:17:53','[GLPI #0000090] Novo acompanhamento não consigo acessar meu outlook',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_90 \n\n Chamado: Descrição\n\n Título : não consigo acessar meu outlook\n Requerentes :  tecnomulti  \n Data de abertura : 18-02-2025 14:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - aprendiz.recifela@tecnomult.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : não consigo acessar meu outlook\n2) E-MAIL : aprendiz.recifela@tecnomult.com\n3) TELEFONE : 81 986981633\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \n[47cb7c5c-b2d8e96f-67b4c9ad2804d1.68109059] [https://oswintech.ddns.net/front/document.send.php?docid=17&#38;itemtype=Ticket&#38;items_id=90]\n \n\n\n[18-02-2025 15:17]\nAutor tecnomulti\nDescrição 751 863 645\n\n \nData de abertura 18-02-2025 15:17\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[18-02-2025 15:16]\nAutor Alexsandro Cruz\nDescrição Boa tarde,\n\nMe passa o anydesk para analisar.\nData de abertura 18-02-2025 15:16\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1297,'Ticket',90,4,2,0,0,'2025-02-18 18:17:50','2025-02-18 18:17:50',NULL,'[GLPI #0000090] Novo acompanhamento não consigo acessar meu outlook',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_90 \n\n Chamado: Descrição\n\n Título : não consigo acessar meu outlook\n Requerentes :  tecnomulti  \n Data de abertura : 18-02-2025 14:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - aprendiz.recifela@tecnomult.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : não consigo acessar meu outlook\n2) E-MAIL : aprendiz.recifela@tecnomult.com\n3) TELEFONE : 81 986981633\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \n[47cb7c5c-b2d8e96f-67b4c9ad2804d1.68109059] [https://oswintech.ddns.net/front/document.send.php?docid=17&#38;itemtype=Ticket&#38;items_id=90]\n \n\n\n[18-02-2025 15:17]\nAutor tecnomulti\nDescrição 751 863 645\n\n \nData de abertura 18-02-2025 15:17\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[18-02-2025 15:16]\nAutor Alexsandro Cruz\nDescrição Boa tarde,\n\nMe passa o anydesk para analisar.\nData de abertura 18-02-2025 15:16\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1298,'Ticket',90,4,2,0,0,'2025-02-18 18:17:50','2025-02-18 18:17:50',NULL,'[GLPI #0000090] Novo acompanhamento não consigo acessar meu outlook',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_90 \n\n Chamado: Descrição\n\n Título : não consigo acessar meu outlook\n Requerentes :  tecnomulti  \n Data de abertura : 18-02-2025 14:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - aprendiz.recifela@tecnomult.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : não consigo acessar meu outlook\n2) E-MAIL : aprendiz.recifela@tecnomult.com\n3) TELEFONE : 81 986981633\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \n[47cb7c5c-b2d8e96f-67b4c9ad2804d1.68109059] [https://oswintech.ddns.net/front/document.send.php?docid=17&#38;itemtype=Ticket&#38;items_id=90]\n \n\n\n[18-02-2025 15:17]\nAutor tecnomulti\nDescrição 751 863 645\n\n \nData de abertura 18-02-2025 15:17\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[18-02-2025 15:16]\nAutor Alexsandro Cruz\nDescrição Boa tarde,\n\nMe passa o anydesk para analisar.\nData de abertura 18-02-2025 15:16\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1299,'Ticket',90,4,2,0,0,'2025-02-18 18:17:50','2025-02-18 18:17:50',NULL,'[GLPI #0000090] Novo acompanhamento não consigo acessar meu outlook',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_90 \n\n Chamado: Descrição\n\n Título : não consigo acessar meu outlook\n Requerentes :  tecnomulti  \n Data de abertura : 18-02-2025 14:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - aprendiz.recifela@tecnomult.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : não consigo acessar meu outlook\n2) E-MAIL : aprendiz.recifela@tecnomult.com\n3) TELEFONE : 81 986981633\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \n[47cb7c5c-b2d8e96f-67b4c9ad2804d1.68109059] [https://oswintech.ddns.net/front/document.send.php?docid=17&#38;itemtype=Ticket&#38;items_id=90]\n \n\n\n[18-02-2025 15:17]\nAutor tecnomulti\nDescrição 751 863 645\n\n \nData de abertura 18-02-2025 15:17\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[18-02-2025 15:16]\nAutor Alexsandro Cruz\nDescrição Boa tarde,\n\nMe passa o anydesk para analisar.\nData de abertura 18-02-2025 15:16\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1300,'Ticket',90,4,2,0,0,'2025-02-18 18:17:50','2025-02-18 18:17:50',NULL,'[GLPI #0000090] Novo acompanhamento não consigo acessar meu outlook','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000090] Novo acompanhamento n&#38;atilde;o consigo acessar meu outlook&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_90\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_90&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:n&#38;atilde;o consigo acessar meu outlook &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:18-02-2025 14:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- aprendiz.recifela@tecnomult.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;não consigo acessar meu outlook&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;aprendiz.recifela@tecnomult.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 986981633&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;&#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=17&#38;amp;itemtype=Ticket&#38;amp;items_id=90\" target=\"_blank\"&#62;&#60;img alt=\"47cb7c5c-b2d8e96f-67b4c9ad2804d1.68109059\" width=\"545\" src=\"/front/document.send.php?docid=17&#38;amp;itemtype=Ticket&#38;amp;items_id=90\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [18-02-2025 15:17]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;751 863 645&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;18-02-2025 15:17&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [18-02-2025 15:16]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde,&#60;/p&#62;\r\n&#60;p&#62;Me passa o anydesk para analisar.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;18-02-2025 15:16&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_90 \n\n Chamado: Descrição\n\n Título : não consigo acessar meu outlook\n Requerentes :  tecnomulti  \n Data de abertura : 18-02-2025 14:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - aprendiz.recifela@tecnomult.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : não consigo acessar meu outlook\n2) E-MAIL : aprendiz.recifela@tecnomult.com\n3) TELEFONE : 81 986981633\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \n[47cb7c5c-b2d8e96f-67b4c9ad2804d1.68109059] [https://oswintech.ddns.net/front/document.send.php?docid=17&#38;itemtype=Ticket&#38;items_id=90]\n \n\n\n[18-02-2025 15:17]\nAutor tecnomulti\nDescrição 751 863 645\n\n \nData de abertura 18-02-2025 15:17\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[18-02-2025 15:16]\nAutor Alexsandro Cruz\nDescrição Boa tarde,\n\nMe passa o anydesk para analisar.\nData de abertura 18-02-2025 15:16\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-90/add_followup.1739902670.882609257@oswintech.ddns.net','','mailing','add_followup'),
(1301,'Ticket',90,4,2,0,0,'2025-02-18 18:17:50','2025-02-18 18:17:50',NULL,'[GLPI #0000090] Novo acompanhamento não consigo acessar meu outlook','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000090] Novo acompanhamento n&#38;atilde;o consigo acessar meu outlook&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_90\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_90&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:n&#38;atilde;o consigo acessar meu outlook &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:18-02-2025 14:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- aprendiz.recifela@tecnomult.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;não consigo acessar meu outlook&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;aprendiz.recifela@tecnomult.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 986981633&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;&#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=17&#38;amp;itemtype=Ticket&#38;amp;items_id=90\" target=\"_blank\"&#62;&#60;img alt=\"47cb7c5c-b2d8e96f-67b4c9ad2804d1.68109059\" width=\"545\" src=\"/front/document.send.php?docid=17&#38;amp;itemtype=Ticket&#38;amp;items_id=90\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [18-02-2025 15:17]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;751 863 645&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;18-02-2025 15:17&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [18-02-2025 15:16]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde,&#60;/p&#62;\r\n&#60;p&#62;Me passa o anydesk para analisar.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;18-02-2025 15:16&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_90 \n\n Chamado: Descrição\n\n Título : não consigo acessar meu outlook\n Requerentes :  tecnomulti  \n Data de abertura : 18-02-2025 14:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - aprendiz.recifela@tecnomult.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : não consigo acessar meu outlook\n2) E-MAIL : aprendiz.recifela@tecnomult.com\n3) TELEFONE : 81 986981633\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \n[47cb7c5c-b2d8e96f-67b4c9ad2804d1.68109059] [https://oswintech.ddns.net/front/document.send.php?docid=17&#38;itemtype=Ticket&#38;items_id=90]\n \n\n\n[18-02-2025 15:17]\nAutor tecnomulti\nDescrição 751 863 645\n\n \nData de abertura 18-02-2025 15:17\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[18-02-2025 15:16]\nAutor Alexsandro Cruz\nDescrição Boa tarde,\n\nMe passa o anydesk para analisar.\nData de abertura 18-02-2025 15:16\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-90/add_followup.1739902670.74825279@oswintech.ddns.net','','mailing','add_followup'),
(1302,'Ticket',90,4,2,0,0,'2025-02-18 18:17:50','2025-02-18 18:17:50',NULL,'[GLPI #0000090] Novo acompanhamento não consigo acessar meu outlook','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000090] Novo acompanhamento n&#38;atilde;o consigo acessar meu outlook&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_90\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_90&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:n&#38;atilde;o consigo acessar meu outlook &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:18-02-2025 14:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- aprendiz.recifela@tecnomult.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;não consigo acessar meu outlook&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;aprendiz.recifela@tecnomult.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 986981633&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;&#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=17&#38;amp;itemtype=Ticket&#38;amp;items_id=90\" target=\"_blank\"&#62;&#60;img alt=\"47cb7c5c-b2d8e96f-67b4c9ad2804d1.68109059\" width=\"545\" src=\"/front/document.send.php?docid=17&#38;amp;itemtype=Ticket&#38;amp;items_id=90\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [18-02-2025 15:17]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;751 863 645&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;18-02-2025 15:17&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [18-02-2025 15:16]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde,&#60;/p&#62;\r\n&#60;p&#62;Me passa o anydesk para analisar.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;18-02-2025 15:16&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_90 \n\n Chamado: Descrição\n\n Título : não consigo acessar meu outlook\n Requerentes :  tecnomulti  \n Data de abertura : 18-02-2025 14:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - aprendiz.recifela@tecnomult.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : não consigo acessar meu outlook\n2) E-MAIL : aprendiz.recifela@tecnomult.com\n3) TELEFONE : 81 986981633\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \n[47cb7c5c-b2d8e96f-67b4c9ad2804d1.68109059] [https://oswintech.ddns.net/front/document.send.php?docid=17&#38;itemtype=Ticket&#38;items_id=90]\n \n\n\n[18-02-2025 15:17]\nAutor tecnomulti\nDescrição 751 863 645\n\n \nData de abertura 18-02-2025 15:17\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[18-02-2025 15:16]\nAutor Alexsandro Cruz\nDescrição Boa tarde,\n\nMe passa o anydesk para analisar.\nData de abertura 18-02-2025 15:16\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-90/add_followup.1739902670.1196359882@oswintech.ddns.net','','mailing','add_followup'),
(1303,'Ticket',90,4,2,0,0,'2025-02-18 18:17:50','2025-02-18 18:17:50',NULL,'[GLPI #0000090] Novo acompanhamento não consigo acessar meu outlook','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000090] Novo acompanhamento n&#38;atilde;o consigo acessar meu outlook&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_90\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_90&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:n&#38;atilde;o consigo acessar meu outlook &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:18-02-2025 14:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- aprendiz.recifela@tecnomult.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;não consigo acessar meu outlook&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;aprendiz.recifela@tecnomult.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 986981633&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;&#60;a href=\"https://oswintech.ddns.net/front/document.send.php?docid=17&#38;amp;itemtype=Ticket&#38;amp;items_id=90\" target=\"_blank\"&#62;&#60;img alt=\"47cb7c5c-b2d8e96f-67b4c9ad2804d1.68109059\" width=\"545\" src=\"/front/document.send.php?docid=17&#38;amp;itemtype=Ticket&#38;amp;items_id=90\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [18-02-2025 15:17]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;751 863 645&#60;/p&#62;\r\n&#60;p&#62; &#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;18-02-2025 15:17&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [18-02-2025 15:16]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde,&#60;/p&#62;\r\n&#60;p&#62;Me passa o anydesk para analisar.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;18-02-2025 15:16&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_90 \n\n Chamado: Descrição\n\n Título : não consigo acessar meu outlook\n Requerentes :  tecnomulti  \n Data de abertura : 18-02-2025 14:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - aprendiz.recifela@tecnomult.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : não consigo acessar meu outlook\n2) E-MAIL : aprendiz.recifela@tecnomult.com\n3) TELEFONE : 81 986981633\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \n[47cb7c5c-b2d8e96f-67b4c9ad2804d1.68109059] [https://oswintech.ddns.net/front/document.send.php?docid=17&#38;itemtype=Ticket&#38;items_id=90]\n \n\n\n[18-02-2025 15:17]\nAutor tecnomulti\nDescrição 751 863 645\n\n \nData de abertura 18-02-2025 15:17\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[18-02-2025 15:16]\nAutor Alexsandro Cruz\nDescrição Boa tarde,\n\nMe passa o anydesk para analisar.\nData de abertura 18-02-2025 15:16\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-90/add_followup.1739902670.394482044@oswintech.ddns.net','','mailing','add_followup'),
(1304,'Ticket',91,4,2,1,0,'2025-02-18 18:22:40','2025-02-18 18:22:40','2025-02-18 18:22:42','[GLPI #0000091] Novo acompanhamento CHAMADO RAYLLA',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_91 \n\n Chamado: Descrição\n\n Título : CHAMADO RAYLLA\n Requerentes :  tecnomulti  \n Data de abertura : 18-02-2025 14:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - raylla.vitoria@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CHAMADO RAYLLA\n2) E-MAIL : raylla.vitoria@tecnomulti.com\n3) TELEFONE : 84988082753\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nBoa tarde, Alex!\nNão consigo rever emails antigos nem enviados.\n \n\n\n[18-02-2025 15:22]\nAutor tecnomulti\nDescrição 751 863 645\nData de abertura 18-02-2025 15:22\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[18-02-2025 15:14]\nAutor Alexsandro Cruz\nDescrição Boa tarde,\n\nFavor me passe o anydesk para eu acessar.\nData de abertura 18-02-2025 15:14\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1305,'Ticket',91,4,2,0,0,'2025-02-18 18:22:40','2025-02-18 18:22:40',NULL,'[GLPI #0000091] Novo acompanhamento CHAMADO RAYLLA',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_91 \n\n Chamado: Descrição\n\n Título : CHAMADO RAYLLA\n Requerentes :  tecnomulti  \n Data de abertura : 18-02-2025 14:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - raylla.vitoria@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CHAMADO RAYLLA\n2) E-MAIL : raylla.vitoria@tecnomulti.com\n3) TELEFONE : 84988082753\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nBoa tarde, Alex!\nNão consigo rever emails antigos nem enviados.\n \n\n\n[18-02-2025 15:22]\nAutor tecnomulti\nDescrição 751 863 645\nData de abertura 18-02-2025 15:22\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[18-02-2025 15:14]\nAutor Alexsandro Cruz\nDescrição Boa tarde,\n\nFavor me passe o anydesk para eu acessar.\nData de abertura 18-02-2025 15:14\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1306,'Ticket',91,4,2,0,0,'2025-02-18 18:22:40','2025-02-18 18:22:40',NULL,'[GLPI #0000091] Novo acompanhamento CHAMADO RAYLLA',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_91 \n\n Chamado: Descrição\n\n Título : CHAMADO RAYLLA\n Requerentes :  tecnomulti  \n Data de abertura : 18-02-2025 14:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - raylla.vitoria@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CHAMADO RAYLLA\n2) E-MAIL : raylla.vitoria@tecnomulti.com\n3) TELEFONE : 84988082753\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nBoa tarde, Alex!\nNão consigo rever emails antigos nem enviados.\n \n\n\n[18-02-2025 15:22]\nAutor tecnomulti\nDescrição 751 863 645\nData de abertura 18-02-2025 15:22\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[18-02-2025 15:14]\nAutor Alexsandro Cruz\nDescrição Boa tarde,\n\nFavor me passe o anydesk para eu acessar.\nData de abertura 18-02-2025 15:14\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1307,'Ticket',91,4,2,0,0,'2025-02-18 18:22:40','2025-02-18 18:22:40',NULL,'[GLPI #0000091] Novo acompanhamento CHAMADO RAYLLA',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_91 \n\n Chamado: Descrição\n\n Título : CHAMADO RAYLLA\n Requerentes :  tecnomulti  \n Data de abertura : 18-02-2025 14:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - raylla.vitoria@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CHAMADO RAYLLA\n2) E-MAIL : raylla.vitoria@tecnomulti.com\n3) TELEFONE : 84988082753\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nBoa tarde, Alex!\nNão consigo rever emails antigos nem enviados.\n \n\n\n[18-02-2025 15:22]\nAutor tecnomulti\nDescrição 751 863 645\nData de abertura 18-02-2025 15:22\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[18-02-2025 15:14]\nAutor Alexsandro Cruz\nDescrição Boa tarde,\n\nFavor me passe o anydesk para eu acessar.\nData de abertura 18-02-2025 15:14\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1308,'Ticket',91,4,2,0,0,'2025-02-18 18:22:40','2025-02-18 18:22:40',NULL,'[GLPI #0000091] Novo acompanhamento CHAMADO RAYLLA','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000091] Novo acompanhamento CHAMADO RAYLLA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_91\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_91&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:CHAMADO RAYLLA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:18-02-2025 14:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- raylla.vitoria@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CHAMADO RAYLLA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;raylla.vitoria@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84988082753&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Boa tarde, Alex!&#60;br /&#62;Não consigo rever emails antigos nem enviados.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [18-02-2025 15:22]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;751 863 645&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;18-02-2025 15:22&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [18-02-2025 15:14]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde,&#60;/p&#62;\r\n&#60;p&#62;Favor me passe o anydesk para eu acessar.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;18-02-2025 15:14&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_91 \n\n Chamado: Descrição\n\n Título : CHAMADO RAYLLA\n Requerentes :  tecnomulti  \n Data de abertura : 18-02-2025 14:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - raylla.vitoria@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CHAMADO RAYLLA\n2) E-MAIL : raylla.vitoria@tecnomulti.com\n3) TELEFONE : 84988082753\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nBoa tarde, Alex!\nNão consigo rever emails antigos nem enviados.\n \n\n\n[18-02-2025 15:22]\nAutor tecnomulti\nDescrição 751 863 645\nData de abertura 18-02-2025 15:22\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[18-02-2025 15:14]\nAutor Alexsandro Cruz\nDescrição Boa tarde,\n\nFavor me passe o anydesk para eu acessar.\nData de abertura 18-02-2025 15:14\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-91/add_followup.1739902961.1103070403@oswintech.ddns.net','','mailing','add_followup'),
(1309,'Ticket',91,4,2,0,0,'2025-02-18 18:22:40','2025-02-18 18:22:40',NULL,'[GLPI #0000091] Novo acompanhamento CHAMADO RAYLLA','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000091] Novo acompanhamento CHAMADO RAYLLA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_91\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_91&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:CHAMADO RAYLLA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:18-02-2025 14:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- raylla.vitoria@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CHAMADO RAYLLA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;raylla.vitoria@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84988082753&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Boa tarde, Alex!&#60;br /&#62;Não consigo rever emails antigos nem enviados.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [18-02-2025 15:22]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;751 863 645&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;18-02-2025 15:22&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [18-02-2025 15:14]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde,&#60;/p&#62;\r\n&#60;p&#62;Favor me passe o anydesk para eu acessar.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;18-02-2025 15:14&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_91 \n\n Chamado: Descrição\n\n Título : CHAMADO RAYLLA\n Requerentes :  tecnomulti  \n Data de abertura : 18-02-2025 14:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - raylla.vitoria@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CHAMADO RAYLLA\n2) E-MAIL : raylla.vitoria@tecnomulti.com\n3) TELEFONE : 84988082753\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nBoa tarde, Alex!\nNão consigo rever emails antigos nem enviados.\n \n\n\n[18-02-2025 15:22]\nAutor tecnomulti\nDescrição 751 863 645\nData de abertura 18-02-2025 15:22\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[18-02-2025 15:14]\nAutor Alexsandro Cruz\nDescrição Boa tarde,\n\nFavor me passe o anydesk para eu acessar.\nData de abertura 18-02-2025 15:14\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-91/add_followup.1739902961.948479398@oswintech.ddns.net','','mailing','add_followup'),
(1310,'Ticket',91,4,2,0,0,'2025-02-18 18:22:40','2025-02-18 18:22:40',NULL,'[GLPI #0000091] Novo acompanhamento CHAMADO RAYLLA','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000091] Novo acompanhamento CHAMADO RAYLLA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_91\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_91&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:CHAMADO RAYLLA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:18-02-2025 14:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- raylla.vitoria@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CHAMADO RAYLLA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;raylla.vitoria@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84988082753&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Boa tarde, Alex!&#60;br /&#62;Não consigo rever emails antigos nem enviados.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [18-02-2025 15:22]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;751 863 645&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;18-02-2025 15:22&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [18-02-2025 15:14]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde,&#60;/p&#62;\r\n&#60;p&#62;Favor me passe o anydesk para eu acessar.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;18-02-2025 15:14&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_91 \n\n Chamado: Descrição\n\n Título : CHAMADO RAYLLA\n Requerentes :  tecnomulti  \n Data de abertura : 18-02-2025 14:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - raylla.vitoria@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CHAMADO RAYLLA\n2) E-MAIL : raylla.vitoria@tecnomulti.com\n3) TELEFONE : 84988082753\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nBoa tarde, Alex!\nNão consigo rever emails antigos nem enviados.\n \n\n\n[18-02-2025 15:22]\nAutor tecnomulti\nDescrição 751 863 645\nData de abertura 18-02-2025 15:22\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[18-02-2025 15:14]\nAutor Alexsandro Cruz\nDescrição Boa tarde,\n\nFavor me passe o anydesk para eu acessar.\nData de abertura 18-02-2025 15:14\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-91/add_followup.1739902961.213950383@oswintech.ddns.net','','mailing','add_followup'),
(1311,'Ticket',91,4,2,0,0,'2025-02-18 18:22:40','2025-02-18 18:22:40',NULL,'[GLPI #0000091] Novo acompanhamento CHAMADO RAYLLA','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000091] Novo acompanhamento CHAMADO RAYLLA&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_91\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_91&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:CHAMADO RAYLLA &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:18-02-2025 14:56 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- raylla.vitoria@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CHAMADO RAYLLA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;raylla.vitoria@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84988082753&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Boa tarde, Alex!&#60;br /&#62;Não consigo rever emails antigos nem enviados.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [18-02-2025 15:22]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;tecnomulti&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;751 863 645&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;18-02-2025 15:22&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [18-02-2025 15:14]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde,&#60;/p&#62;\r\n&#60;p&#62;Favor me passe o anydesk para eu acessar.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;18-02-2025 15:14&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 2&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_91 \n\n Chamado: Descrição\n\n Título : CHAMADO RAYLLA\n Requerentes :  tecnomulti  \n Data de abertura : 18-02-2025 14:56\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - raylla.vitoria@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : CHAMADO RAYLLA\n2) E-MAIL : raylla.vitoria@tecnomulti.com\n3) TELEFONE : 84988082753\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nBoa tarde, Alex!\nNão consigo rever emails antigos nem enviados.\n \n\n\n[18-02-2025 15:22]\nAutor tecnomulti\nDescrição 751 863 645\nData de abertura 18-02-2025 15:22\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n[18-02-2025 15:14]\nAutor Alexsandro Cruz\nDescrição Boa tarde,\n\nFavor me passe o anydesk para eu acessar.\nData de abertura 18-02-2025 15:14\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 2\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-91/add_followup.1739902961.1167944858@oswintech.ddns.net','','mailing','add_followup'),
(1312,'Ticket',89,4,2,1,0,'2025-02-18 18:30:33','2025-02-18 18:30:33','2025-02-18 18:30:39','[GLPI #0000089] Novo acompanhamento INSTALAR E-MAIL OUTLOOK',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_89 \n\n Chamado: Descrição\n\n Título : INSTALAR E-MAIL OUTLOOK\n Requerentes :  tecnomulti  \n Data de abertura : 17-02-2025 09:35\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - bruno.ciriaco@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : INSTALAR E-MAIL OUTLOOK\n2) E-MAIL : bruno.ciriaco@tecnomulti.com\n3) TELEFONE : 85981013501\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nBom dia configurar o outlook e instalar o DWG. \n \n\n\n[18-02-2025 15:30]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nFavor entrar em contato via whatsapp para a configuração.\nData de abertura 18-02-2025 15:30\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1313,'Ticket',89,4,2,0,0,'2025-02-18 18:30:33','2025-02-18 18:30:33',NULL,'[GLPI #0000089] Novo acompanhamento INSTALAR E-MAIL OUTLOOK',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_89 \n\n Chamado: Descrição\n\n Título : INSTALAR E-MAIL OUTLOOK\n Requerentes :  tecnomulti  \n Data de abertura : 17-02-2025 09:35\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - bruno.ciriaco@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : INSTALAR E-MAIL OUTLOOK\n2) E-MAIL : bruno.ciriaco@tecnomulti.com\n3) TELEFONE : 85981013501\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nBom dia configurar o outlook e instalar o DWG. \n \n\n\n[18-02-2025 15:30]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nFavor entrar em contato via whatsapp para a configuração.\nData de abertura 18-02-2025 15:30\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1314,'Ticket',89,4,2,0,0,'2025-02-18 18:30:33','2025-02-18 18:30:33',NULL,'[GLPI #0000089] Novo acompanhamento INSTALAR E-MAIL OUTLOOK',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_89 \n\n Chamado: Descrição\n\n Título : INSTALAR E-MAIL OUTLOOK\n Requerentes :  tecnomulti  \n Data de abertura : 17-02-2025 09:35\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - bruno.ciriaco@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : INSTALAR E-MAIL OUTLOOK\n2) E-MAIL : bruno.ciriaco@tecnomulti.com\n3) TELEFONE : 85981013501\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nBom dia configurar o outlook e instalar o DWG. \n \n\n\n[18-02-2025 15:30]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nFavor entrar em contato via whatsapp para a configuração.\nData de abertura 18-02-2025 15:30\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1315,'Ticket',89,4,2,0,0,'2025-02-18 18:30:33','2025-02-18 18:30:33',NULL,'[GLPI #0000089] Novo acompanhamento INSTALAR E-MAIL OUTLOOK',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_89 \n\n Chamado: Descrição\n\n Título : INSTALAR E-MAIL OUTLOOK\n Requerentes :  tecnomulti  \n Data de abertura : 17-02-2025 09:35\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - bruno.ciriaco@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : INSTALAR E-MAIL OUTLOOK\n2) E-MAIL : bruno.ciriaco@tecnomulti.com\n3) TELEFONE : 85981013501\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nBom dia configurar o outlook e instalar o DWG. \n \n\n\n[18-02-2025 15:30]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nFavor entrar em contato via whatsapp para a configuração.\nData de abertura 18-02-2025 15:30\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','add_followup'),
(1316,'Ticket',89,4,2,0,0,'2025-02-18 18:30:33','2025-02-18 18:30:33',NULL,'[GLPI #0000089] Novo acompanhamento INSTALAR E-MAIL OUTLOOK','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000089] Novo acompanhamento INSTALAR E-MAIL OUTLOOK&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_89\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_89&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:INSTALAR E-MAIL OUTLOOK &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:17-02-2025 09:35 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- bruno.ciriaco@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;INSTALAR E-MAIL OUTLOOK&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;bruno.ciriaco@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;85981013501&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Bom dia configurar o outlook e instalar o DWG. &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [18-02-2025 15:30]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, &#60;/p&#62;\r\n&#60;p&#62;Favor entrar em contato via whatsapp para a configuração.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;18-02-2025 15:30&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_89 \n\n Chamado: Descrição\n\n Título : INSTALAR E-MAIL OUTLOOK\n Requerentes :  tecnomulti  \n Data de abertura : 17-02-2025 09:35\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - bruno.ciriaco@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : INSTALAR E-MAIL OUTLOOK\n2) E-MAIL : bruno.ciriaco@tecnomulti.com\n3) TELEFONE : 85981013501\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nBom dia configurar o outlook e instalar o DWG. \n \n\n\n[18-02-2025 15:30]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nFavor entrar em contato via whatsapp para a configuração.\nData de abertura 18-02-2025 15:30\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-89/add_followup.1739903433.1859179327@oswintech.ddns.net','','mailing','add_followup'),
(1317,'Ticket',89,4,2,0,0,'2025-02-18 18:30:33','2025-02-18 18:30:33',NULL,'[GLPI #0000089] Novo acompanhamento INSTALAR E-MAIL OUTLOOK','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000089] Novo acompanhamento INSTALAR E-MAIL OUTLOOK&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_89\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_89&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:INSTALAR E-MAIL OUTLOOK &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:17-02-2025 09:35 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- bruno.ciriaco@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;INSTALAR E-MAIL OUTLOOK&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;bruno.ciriaco@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;85981013501&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Bom dia configurar o outlook e instalar o DWG. &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [18-02-2025 15:30]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, &#60;/p&#62;\r\n&#60;p&#62;Favor entrar em contato via whatsapp para a configuração.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;18-02-2025 15:30&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_89 \n\n Chamado: Descrição\n\n Título : INSTALAR E-MAIL OUTLOOK\n Requerentes :  tecnomulti  \n Data de abertura : 17-02-2025 09:35\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - bruno.ciriaco@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : INSTALAR E-MAIL OUTLOOK\n2) E-MAIL : bruno.ciriaco@tecnomulti.com\n3) TELEFONE : 85981013501\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nBom dia configurar o outlook e instalar o DWG. \n \n\n\n[18-02-2025 15:30]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nFavor entrar em contato via whatsapp para a configuração.\nData de abertura 18-02-2025 15:30\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-89/add_followup.1739903433.1185892605@oswintech.ddns.net','','mailing','add_followup'),
(1318,'Ticket',89,4,2,0,0,'2025-02-18 18:30:33','2025-02-18 18:30:33',NULL,'[GLPI #0000089] Novo acompanhamento INSTALAR E-MAIL OUTLOOK','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000089] Novo acompanhamento INSTALAR E-MAIL OUTLOOK&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_89\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_89&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:INSTALAR E-MAIL OUTLOOK &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:17-02-2025 09:35 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- bruno.ciriaco@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;INSTALAR E-MAIL OUTLOOK&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;bruno.ciriaco@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;85981013501&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Bom dia configurar o outlook e instalar o DWG. &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [18-02-2025 15:30]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, &#60;/p&#62;\r\n&#60;p&#62;Favor entrar em contato via whatsapp para a configuração.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;18-02-2025 15:30&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_89 \n\n Chamado: Descrição\n\n Título : INSTALAR E-MAIL OUTLOOK\n Requerentes :  tecnomulti  \n Data de abertura : 17-02-2025 09:35\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - bruno.ciriaco@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : INSTALAR E-MAIL OUTLOOK\n2) E-MAIL : bruno.ciriaco@tecnomulti.com\n3) TELEFONE : 85981013501\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nBom dia configurar o outlook e instalar o DWG. \n \n\n\n[18-02-2025 15:30]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nFavor entrar em contato via whatsapp para a configuração.\nData de abertura 18-02-2025 15:30\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-89/add_followup.1739903433.1645234072@oswintech.ddns.net','','mailing','add_followup'),
(1319,'Ticket',89,4,2,0,0,'2025-02-18 18:30:33','2025-02-18 18:30:33',NULL,'[GLPI #0000089] Novo acompanhamento INSTALAR E-MAIL OUTLOOK','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000089] Novo acompanhamento INSTALAR E-MAIL OUTLOOK&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_89\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_89&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:INSTALAR E-MAIL OUTLOOK &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:17-02-2025 09:35 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- bruno.ciriaco@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;INSTALAR E-MAIL OUTLOOK&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;bruno.ciriaco@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;85981013501&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Bom dia configurar o outlook e instalar o DWG. &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [18-02-2025 15:30]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, &#60;/p&#62;\r\n&#60;p&#62;Favor entrar em contato via whatsapp para a configuração.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;18-02-2025 15:30&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_89 \n\n Chamado: Descrição\n\n Título : INSTALAR E-MAIL OUTLOOK\n Requerentes :  tecnomulti  \n Data de abertura : 17-02-2025 09:35\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - bruno.ciriaco@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : INSTALAR E-MAIL OUTLOOK\n2) E-MAIL : bruno.ciriaco@tecnomulti.com\n3) TELEFONE : 85981013501\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nBom dia configurar o outlook e instalar o DWG. \n \n\n\n[18-02-2025 15:30]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nFavor entrar em contato via whatsapp para a configuração.\nData de abertura 18-02-2025 15:30\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-89/add_followup.1739903433.1951313694@oswintech.ddns.net','','mailing','add_followup'),
(1320,'Ticket',89,4,2,1,0,'2025-02-18 18:30:40','2025-02-18 18:30:40','2025-02-18 18:30:50','[GLPI #0000089] Atualização de um chamado INSTALAR E-MAIL OUTLOOK',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_89 \n\n Chamado: Descrição\n\n Título : INSTALAR E-MAIL OUTLOOK\n Requerentes :  tecnomulti  \n Data de abertura : 17-02-2025 09:35\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - bruno.ciriaco@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : INSTALAR E-MAIL OUTLOOK\n2) E-MAIL : bruno.ciriaco@tecnomulti.com\n3) TELEFONE : 85981013501\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nBom dia configurar o outlook e instalar o DWG. \n \n\n\n[18-02-2025 15:30]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nFavor entrar em contato via whatsapp para a configuração.\nData de abertura 18-02-2025 15:30\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','update'),
(1321,'Ticket',89,4,2,0,0,'2025-02-18 18:30:40','2025-02-18 18:30:40',NULL,'[GLPI #0000089] Atualização de um chamado INSTALAR E-MAIL OUTLOOK','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000089] Atualiza&#38;ccedil;&#38;atilde;o de um chamado INSTALAR E-MAIL OUTLOOK&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_89\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_89&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:INSTALAR E-MAIL OUTLOOK &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:17-02-2025 09:35 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- bruno.ciriaco@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;INSTALAR E-MAIL OUTLOOK&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;bruno.ciriaco@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;85981013501&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Bom dia configurar o outlook e instalar o DWG. &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [18-02-2025 15:30]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, &#60;/p&#62;\r\n&#60;p&#62;Favor entrar em contato via whatsapp para a configuração.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;18-02-2025 15:30&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_89 \n\n Chamado: Descrição\n\n Título : INSTALAR E-MAIL OUTLOOK\n Requerentes :  tecnomulti  \n Data de abertura : 17-02-2025 09:35\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - bruno.ciriaco@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : INSTALAR E-MAIL OUTLOOK\n2) E-MAIL : bruno.ciriaco@tecnomulti.com\n3) TELEFONE : 85981013501\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nBom dia configurar o outlook e instalar o DWG. \n \n\n\n[18-02-2025 15:30]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nFavor entrar em contato via whatsapp para a configuração.\nData de abertura 18-02-2025 15:30\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-89/update.1739903440.582732560@oswintech.ddns.net','','mailing','update'),
(1322,'Ticket',89,4,2,0,0,'2025-02-18 18:30:40','2025-02-18 18:30:40',NULL,'[GLPI #0000089] Atualização de um chamado INSTALAR E-MAIL OUTLOOK','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000089] Atualiza&#38;ccedil;&#38;atilde;o de um chamado INSTALAR E-MAIL OUTLOOK&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_89\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_89&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:INSTALAR E-MAIL OUTLOOK &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:17-02-2025 09:35 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62; Resposta do formul&#38;aacute;rio&#38;#160;- bruno.ciriaco@tecnomulti.com     &#60;/div&#62;&#60;br /&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Em atendimento (atribu&#38;iacute;do)&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:E-mail      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;INSTALAR E-MAIL OUTLOOK&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;bruno.ciriaco@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;85981013501&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Bom dia configurar o outlook e instalar o DWG. &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;&#60;br /&#62;&#60;strong&#62; [18-02-2025 15:30]&#60;/strong&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Autor &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Alexsandro Cruz&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;&#60;p&#62;Boa tarde, &#60;/p&#62;\r\n&#60;p&#62;Favor entrar em contato via whatsapp para a configuração.&#60;/p&#62;&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;18-02-2025 15:30&#60;/span&#62;&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Posi&#38;ccedil;&#38;atilde;o &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; left&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo interno &#60;/span&#62;&#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62; ITILFollowup&#60;/span&#62;&#60;/div&#62;\n&#60;div class=\"description b\"&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Tipo &#60;/span&#62; &#60;span style=\"color: #000000; font-weight: bold; text-decoration: underline;\"&#62;Acompanhamento&#60;/span&#62;&#60;/div&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 1&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_89 \n\n Chamado: Descrição\n\n Título : INSTALAR E-MAIL OUTLOOK\n Requerentes :  tecnomulti  \n Data de abertura : 17-02-2025 09:35\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n \n  Resposta do formulário - bruno.ciriaco@tecnomulti.com\n  \n  \n  \n \n\n\n\n Status : Em atendimento (atribuído)\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : E-mail  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : INSTALAR E-MAIL OUTLOOK\n2) E-MAIL : bruno.ciriaco@tecnomulti.com\n3) TELEFONE : 85981013501\n4) CATEGORIA : E-mail\n5) INFORME MAIS DETALHES : \nBom dia configurar o outlook e instalar o DWG. \n \n\n\n[18-02-2025 15:30]\nAutor Alexsandro Cruz\nDescrição Boa tarde, \n\nFavor entrar em contato via whatsapp para a configuração.\nData de abertura 18-02-2025 15:30\nPosição left\nTipo interno ITILFollowup\nTipo Acompanhamento\n\n\nNúmero de acompanhamentos : 1\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-89/update.1739903441.332132461@oswintech.ddns.net','','mailing','update'),
(1323,'PluginFormcreatorFormAnswer',56,29,2,0,0,'2025-02-18 18:48:25','2025-02-18 18:48:25',NULL,'[GLPI] Sua requisição foi salva','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI] Sua requisi&#38;ccedil;&#38;atilde;o foi salva&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;p&#62;Olá,&#60;br /&#62;Sua requisição do GLPI foi salva com sucesso com o número 56 e transmitido para a equipe de helpdesk.&#60;br /&#62;Você pode ver suas respostas no seguinte link:&#60;br /&#62;https://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=56&#60;/p&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;','Olá,\nSua requisição do GLPI foi salva com sucesso com o número 56 e transmitido para a equipe de helpdesk.\nVocê pode ver suas respostas no seguinte link:\nhttps://oswintech.ddns.net/marketplace/formcreator/front/formanswer.form.php?id=56\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-PluginFormcreatorFormAnswer-56/plugin_formcreator_form_created.1739904505.612506910@oswintech.ddns.net','','mailing','plugin_formcreator_form_created'),
(1324,'Ticket',92,4,2,1,0,'2025-02-18 18:48:25','2025-02-18 18:48:25','2025-02-18 18:48:26','[GLPI #0000092] Novo chamado TROCA DE NOTEBOOK',NULL,'','9',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_92 \n\n Chamado: Descrição\n\n Título : TROCA DE NOTEBOOK\n Requerentes :  tecnomulti  \n Data de abertura : 18-02-2025 15:48\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : TROCA DE NOTEBOOK\n2) E-MAIL : evelyn.azevedo@tecnomulti.com\n3) TELEFONE : 84981052542\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nTroca de notebook, liberar acessos.\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(1325,'Ticket',92,4,2,0,0,'2025-02-18 18:48:25','2025-02-18 18:48:25',NULL,'[GLPI #0000092] Novo chamado TROCA DE NOTEBOOK',NULL,'','8',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_92 \n\n Chamado: Descrição\n\n Título : TROCA DE NOTEBOOK\n Requerentes :  tecnomulti  \n Data de abertura : 18-02-2025 15:48\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : TROCA DE NOTEBOOK\n2) E-MAIL : evelyn.azevedo@tecnomulti.com\n3) TELEFONE : 84981052542\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nTroca de notebook, liberar acessos.\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(1326,'Ticket',92,4,2,0,0,'2025-02-18 18:48:25','2025-02-18 18:48:25',NULL,'[GLPI #0000092] Novo chamado TROCA DE NOTEBOOK',NULL,'','10',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_92 \n\n Chamado: Descrição\n\n Título : TROCA DE NOTEBOOK\n Requerentes :  tecnomulti  \n Data de abertura : 18-02-2025 15:48\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : TROCA DE NOTEBOOK\n2) E-MAIL : evelyn.azevedo@tecnomulti.com\n3) TELEFONE : 84981052542\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nTroca de notebook, liberar acessos.\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(1327,'Ticket',92,4,2,0,0,'2025-02-18 18:48:25','2025-02-18 18:48:25',NULL,'[GLPI #0000092] Novo chamado TROCA DE NOTEBOOK',NULL,'','7',NULL,NULL,NULL,'',NULL,' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_92 \n\n Chamado: Descrição\n\n Título : TROCA DE NOTEBOOK\n Requerentes :  tecnomulti  \n Data de abertura : 18-02-2025 15:48\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : TROCA DE NOTEBOOK\n2) E-MAIL : evelyn.azevedo@tecnomulti.com\n3) TELEFONE : 84981052542\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nTroca de notebook, liberar acessos.\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \n\nGerado automaticamente pelo GLPI\n\n',NULL,'','ajax','new'),
(1328,'Ticket',92,4,2,0,0,'2025-02-18 18:48:25','2025-02-18 18:48:25',NULL,'[GLPI #0000092] Novo chamado TROCA DE NOTEBOOK','admsys@localhost','','admsys@localhost','',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000092] Novo chamado TROCA DE NOTEBOOK&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_92\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_92&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:TROCA DE NOTEBOOK &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:18-02-2025 15:48 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;TROCA DE NOTEBOOK&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;evelyn.azevedo@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84981052542&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Troca de notebook, liberar acessos.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_92 \n\n Chamado: Descrição\n\n Título : TROCA DE NOTEBOOK\n Requerentes :  tecnomulti  \n Data de abertura : 18-02-2025 15:48\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : TROCA DE NOTEBOOK\n2) E-MAIL : evelyn.azevedo@tecnomulti.com\n3) TELEFONE : 84981052542\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nTroca de notebook, liberar acessos.\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-92/new@oswintech.ddns.net','','mailing','new'),
(1329,'Ticket',92,4,2,0,0,'2025-02-18 18:48:25','2025-02-18 18:48:25',NULL,'[GLPI #0000092] Novo chamado TROCA DE NOTEBOOK','admsys@localhost','','suporte@tecnomulti.com','tecnomulti',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000092] Novo chamado TROCA DE NOTEBOOK&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_92\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_92&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:TROCA DE NOTEBOOK &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:18-02-2025 15:48 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;TROCA DE NOTEBOOK&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;evelyn.azevedo@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84981052542&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Troca de notebook, liberar acessos.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_92 \n\n Chamado: Descrição\n\n Título : TROCA DE NOTEBOOK\n Requerentes :  tecnomulti  \n Data de abertura : 18-02-2025 15:48\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : TROCA DE NOTEBOOK\n2) E-MAIL : evelyn.azevedo@tecnomulti.com\n3) TELEFONE : 84981052542\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nTroca de notebook, liberar acessos.\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-92/new@oswintech.ddns.net','','mailing','new'),
(1330,'Ticket',92,4,2,0,0,'2025-02-18 18:48:25','2025-02-18 18:48:25',NULL,'[GLPI #0000092] Novo chamado TROCA DE NOTEBOOK','admsys@localhost','','alexcruzfab@hotmail.com','Alexsandro Cruz',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000092] Novo chamado TROCA DE NOTEBOOK&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_92\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_92&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:TROCA DE NOTEBOOK &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:18-02-2025 15:48 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;TROCA DE NOTEBOOK&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;evelyn.azevedo@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84981052542&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Troca de notebook, liberar acessos.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_92 \n\n Chamado: Descrição\n\n Título : TROCA DE NOTEBOOK\n Requerentes :  tecnomulti  \n Data de abertura : 18-02-2025 15:48\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : TROCA DE NOTEBOOK\n2) E-MAIL : evelyn.azevedo@tecnomulti.com\n3) TELEFONE : 84981052542\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nTroca de notebook, liberar acessos.\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-92/new@oswintech.ddns.net','','mailing','new'),
(1331,'Ticket',92,4,2,0,0,'2025-02-18 18:48:25','2025-02-18 18:48:25',NULL,'[GLPI #0000092] Novo chamado TROCA DE NOTEBOOK','admsys@localhost','','p.victordsouza@gmail.com','Paulo Victor Souza',NULL,NULL,'{\"Auto-Submitted\":\"auto-generated\",\"X-Auto-Response-Suppress\":\"OOF, DR, NDR, RN, NRN\"}','&#60;!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n                        \'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\'&#62;&#60;html&#62;\n                        &#60;head&#62;\n                         &#60;META http-equiv=\'Content-Type\' content=\'text/html; charset=utf-8\'&#62;\n                         &#60;title&#62;[GLPI #0000092] Novo chamado TROCA DE NOTEBOOK&#60;/title&#62;\n                         &#60;style type=\'text/css\'&#62;\n                           \n                         &#60;/style&#62;\n                        &#60;/head&#62;\n                        &#60;body&#62;\n&#60;!-- description{ color: inherit; background: #ebebeb; border-style: solid;border-color: #8d8d8d; border-width: 0px 1px 1px 0px; }    --&#62;\n&#60;div&#62;&#60;/div&#62;\n&#60;div&#62; URL : &#60;a href=\"https://oswintech.ddns.net/index.php?redirect=ticket_92\"&#62;https://oswintech.ddns.net/index.php?redirect=ticket_92&#60;/a&#62; &#60;/div&#62;\n&#60;p class=\"description b\"&#62;&#60;strong&#62;Chamado: Descri&#38;ccedil;&#38;atilde;o&#60;/strong&#62;&#60;/p&#62;\n&#60;p&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; T&#38;iacute;tulo&#60;/span&#62;&#38;#160;:TROCA DE NOTEBOOK &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Requerentes&#60;/span&#62;&#38;#160;: tecnomulti      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de abertura&#60;/span&#62;&#38;#160;:18-02-2025 15:48 &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Data de fechamento&#60;/span&#62;&#38;#160;: &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Origem da requisi&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;:Formcreator&#60;br /&#62;\n&#60;br /&#62;&#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Item associado&#60;/span&#62;&#38;#160;:\n&#60;p&#62;&#60;/p&#62;\n&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Status &#60;/span&#62;&#38;#160;: Novo&#60;br /&#62; &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Urg&#38;ecirc;ncia&#60;/span&#62;&#38;#160;: M&#38;eacute;dia&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Impacto&#60;/span&#62;&#38;#160;: M&#38;eacute;dio&#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Prioridade&#60;/span&#62;&#38;#160;: M&#38;eacute;dia &#60;br /&#62;     &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62;Categoria &#60;/span&#62;&#38;#160;:Sistema Operacional/Programas      &#60;br /&#62; &#60;span style=\"color: #8b8c8f; font-weight: bold; text-decoration: underline;\"&#62; Descri&#38;ccedil;&#38;atilde;o&#60;/span&#62;&#38;#160;: &#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;TROCA DE NOTEBOOK&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;evelyn.azevedo@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84981052542&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Troca de notebook, liberar acessos.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;&#60;/p&#62;\n&#60;br /&#62;&#60;/p&#62;\n&#60;p&#62;&#60;/p&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de acompanhamentos&#38;#160;: 0&#60;/div&#62;\n&#60;div class=\"description b\"&#62;N&#38;uacute;mero de tarefas&#38;#160;: 0&#60;/div&#62;&#60;br&#62;&#60;br&#62;-- \n&#60;br&#62;&#60;p&#62;SIGNATURE&#60;/p&#62;&#60;br&#62;Gerado automaticamente pelo GLPI&#60;br&#62;&#60;br&#62;\n\n&#60;/body&#62;&#60;/html&#62;',' \n  URL : https://oswintech.ddns.net/index.php?redirect=ticket_92 \n\n Chamado: Descrição\n\n Título : TROCA DE NOTEBOOK\n Requerentes :  tecnomulti  \n Data de abertura : 18-02-2025 15:48\n Data de fechamento : \n Origem da requisição : Formcreator\nItem associado :\n\n\n\n Status : Novo\n\n Urgência : Média\n Impacto : Médio\n Prioridade : Média\n\n Categoria : Sistema Operacional/Programas  \n Descrição : DADOS DO FORMULÁRIO\n\nNOVO CHAMADO\n\n1) TÍTULO : TROCA DE NOTEBOOK\n2) E-MAIL : evelyn.azevedo@tecnomulti.com\n3) TELEFONE : 84981052542\n4) CATEGORIA : Sistema Operacional/Programas\n5) INFORME MAIS DETALHES : \nTroca de notebook, liberar acessos.\n \n\n\n\nNúmero de acompanhamentos : 0\nNúmero de tarefas : 0\n\n-- \nSIGNATURE\nGerado automaticamente pelo GLPI\n\n','GLPI_Kub6iB1AE5vrE9ktmi9blG8bNkNHdf03JI406urn-Ticket-92/new@oswintech.ddns.net','','mailing','new');
/*!40000 ALTER TABLE `glpi_queuednotifications` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_rackmodels`
--

DROP TABLE IF EXISTS `glpi_rackmodels`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_rackmodels` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `product_number` varchar(255) DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  `pictures` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `product_number` (`product_number`),
  KEY `date_creation` (`date_creation`),
  KEY `date_mod` (`date_mod`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_rackmodels`
--

LOCK TABLES `glpi_rackmodels` WRITE;
/*!40000 ALTER TABLE `glpi_rackmodels` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_rackmodels` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_racks`
--

DROP TABLE IF EXISTS `glpi_racks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_racks` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `locations_id` int(10) unsigned NOT NULL DEFAULT 0,
  `serial` varchar(255) DEFAULT NULL,
  `otherserial` varchar(255) DEFAULT NULL,
  `rackmodels_id` int(10) unsigned DEFAULT NULL,
  `manufacturers_id` int(10) unsigned NOT NULL DEFAULT 0,
  `racktypes_id` int(10) unsigned NOT NULL DEFAULT 0,
  `states_id` int(10) unsigned NOT NULL DEFAULT 0,
  `users_id_tech` int(10) unsigned NOT NULL DEFAULT 0,
  `groups_id_tech` int(10) unsigned NOT NULL DEFAULT 0,
  `width` int(11) DEFAULT NULL,
  `height` int(11) DEFAULT NULL,
  `depth` int(11) DEFAULT NULL,
  `number_units` int(11) DEFAULT 0,
  `is_template` tinyint(4) NOT NULL DEFAULT 0,
  `template_name` varchar(255) DEFAULT NULL,
  `is_deleted` tinyint(4) NOT NULL DEFAULT 0,
  `dcrooms_id` int(10) unsigned NOT NULL DEFAULT 0,
  `room_orientation` int(11) NOT NULL DEFAULT 0,
  `position` varchar(50) DEFAULT NULL,
  `bgcolor` varchar(7) DEFAULT NULL,
  `max_power` int(11) NOT NULL DEFAULT 0,
  `mesured_power` int(11) NOT NULL DEFAULT 0,
  `max_weight` int(11) NOT NULL DEFAULT 0,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `locations_id` (`locations_id`),
  KEY `rackmodels_id` (`rackmodels_id`),
  KEY `manufacturers_id` (`manufacturers_id`),
  KEY `racktypes_id` (`racktypes_id`),
  KEY `states_id` (`states_id`),
  KEY `users_id_tech` (`users_id_tech`),
  KEY `group_id_tech` (`groups_id_tech`),
  KEY `is_template` (`is_template`),
  KEY `is_deleted` (`is_deleted`),
  KEY `dcrooms_id` (`dcrooms_id`),
  KEY `date_creation` (`date_creation`),
  KEY `date_mod` (`date_mod`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_racks`
--

LOCK TABLES `glpi_racks` WRITE;
/*!40000 ALTER TABLE `glpi_racks` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_racks` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_racktypes`
--

DROP TABLE IF EXISTS `glpi_racktypes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_racktypes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `name` (`name`),
  KEY `date_creation` (`date_creation`),
  KEY `date_mod` (`date_mod`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_racktypes`
--

LOCK TABLES `glpi_racktypes` WRITE;
/*!40000 ALTER TABLE `glpi_racktypes` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_racktypes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_recurrentchanges`
--

DROP TABLE IF EXISTS `glpi_recurrentchanges`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_recurrentchanges` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `is_active` tinyint(4) NOT NULL DEFAULT 0,
  `changetemplates_id` int(10) unsigned NOT NULL DEFAULT 0,
  `begin_date` timestamp NULL DEFAULT NULL,
  `periodicity` varchar(255) DEFAULT NULL,
  `create_before` int(11) NOT NULL DEFAULT 0,
  `next_creation_date` timestamp NULL DEFAULT NULL,
  `calendars_id` int(10) unsigned NOT NULL DEFAULT 0,
  `end_date` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `is_active` (`is_active`),
  KEY `changetemplates_id` (`changetemplates_id`),
  KEY `next_creation_date` (`next_creation_date`),
  KEY `calendars_id` (`calendars_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_recurrentchanges`
--

LOCK TABLES `glpi_recurrentchanges` WRITE;
/*!40000 ALTER TABLE `glpi_recurrentchanges` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_recurrentchanges` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_refusedequipments`
--

DROP TABLE IF EXISTS `glpi_refusedequipments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_refusedequipments` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `itemtype` varchar(100) DEFAULT NULL,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `ip` text DEFAULT NULL,
  `mac` text DEFAULT NULL,
  `rules_id` int(10) unsigned NOT NULL DEFAULT 0,
  `method` varchar(255) DEFAULT NULL,
  `serial` varchar(255) DEFAULT NULL,
  `uuid` varchar(255) DEFAULT NULL,
  `agents_id` int(10) unsigned NOT NULL DEFAULT 0,
  `autoupdatesystems_id` int(10) unsigned NOT NULL DEFAULT 0,
  `date_creation` timestamp NULL DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `entities_id` (`entities_id`),
  KEY `agents_id` (`agents_id`),
  KEY `autoupdatesystems_id` (`autoupdatesystems_id`),
  KEY `rules_id` (`rules_id`),
  KEY `date_creation` (`date_creation`),
  KEY `date_mod` (`date_mod`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_refusedequipments`
--

LOCK TABLES `glpi_refusedequipments` WRITE;
/*!40000 ALTER TABLE `glpi_refusedequipments` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_refusedequipments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_registeredids`
--

DROP TABLE IF EXISTS `glpi_registeredids`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_registeredids` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `items_id` int(10) unsigned NOT NULL DEFAULT 0,
  `itemtype` varchar(100) NOT NULL,
  `device_type` varchar(100) NOT NULL COMMENT 'USB, PCI ...',
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `item` (`itemtype`,`items_id`),
  KEY `device_type` (`device_type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_registeredids`
--

LOCK TABLES `glpi_registeredids` WRITE;
/*!40000 ALTER TABLE `glpi_registeredids` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_registeredids` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_reminders`
--

DROP TABLE IF EXISTS `glpi_reminders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_reminders` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `uuid` varchar(255) DEFAULT NULL,
  `date` timestamp NULL DEFAULT NULL,
  `users_id` int(10) unsigned NOT NULL DEFAULT 0,
  `name` varchar(255) DEFAULT NULL,
  `text` text DEFAULT NULL,
  `begin` timestamp NULL DEFAULT NULL,
  `end` timestamp NULL DEFAULT NULL,
  `is_planned` tinyint(4) NOT NULL DEFAULT 0,
  `date_mod` timestamp NULL DEFAULT NULL,
  `state` int(11) NOT NULL DEFAULT 0,
  `begin_view_date` timestamp NULL DEFAULT NULL,
  `end_view_date` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `uuid` (`uuid`),
  KEY `name` (`name`),
  KEY `date` (`date`),
  KEY `begin` (`begin`),
  KEY `end` (`end`),
  KEY `users_id` (`users_id`),
  KEY `is_planned` (`is_planned`),
  KEY `state` (`state`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_reminders`
--

LOCK TABLES `glpi_reminders` WRITE;
/*!40000 ALTER TABLE `glpi_reminders` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_reminders` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_reminders_users`
--

DROP TABLE IF EXISTS `glpi_reminders_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_reminders_users` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `reminders_id` int(10) unsigned NOT NULL DEFAULT 0,
  `users_id` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `reminders_id` (`reminders_id`),
  KEY `users_id` (`users_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_reminders_users`
--

LOCK TABLES `glpi_reminders_users` WRITE;
/*!40000 ALTER TABLE `glpi_reminders_users` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_reminders_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_remindertranslations`
--

DROP TABLE IF EXISTS `glpi_remindertranslations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_remindertranslations` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `reminders_id` int(10) unsigned NOT NULL DEFAULT 0,
  `language` varchar(5) DEFAULT NULL,
  `name` text DEFAULT NULL,
  `text` longtext DEFAULT NULL,
  `users_id` int(10) unsigned NOT NULL DEFAULT 0,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `item` (`reminders_id`,`language`),
  KEY `users_id` (`users_id`),
  KEY `date_creation` (`date_creation`),
  KEY `date_mod` (`date_mod`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_remindertranslations`
--

LOCK TABLES `glpi_remindertranslations` WRITE;
/*!40000 ALTER TABLE `glpi_remindertranslations` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_remindertranslations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_requesttypes`
--

DROP TABLE IF EXISTS `glpi_requesttypes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_requesttypes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `is_helpdesk_default` tinyint(4) NOT NULL DEFAULT 0,
  `is_followup_default` tinyint(4) NOT NULL DEFAULT 0,
  `is_mail_default` tinyint(4) NOT NULL DEFAULT 0,
  `is_mailfollowup_default` tinyint(4) NOT NULL DEFAULT 0,
  `is_active` tinyint(4) NOT NULL DEFAULT 1,
  `is_ticketheader` tinyint(4) NOT NULL DEFAULT 1,
  `is_itilfollowup` tinyint(4) NOT NULL DEFAULT 1,
  `comment` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `is_helpdesk_default` (`is_helpdesk_default`),
  KEY `is_followup_default` (`is_followup_default`),
  KEY `is_mail_default` (`is_mail_default`),
  KEY `is_mailfollowup_default` (`is_mailfollowup_default`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`),
  KEY `is_active` (`is_active`),
  KEY `is_ticketheader` (`is_ticketheader`),
  KEY `is_itilfollowup` (`is_itilfollowup`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_requesttypes`
--

LOCK TABLES `glpi_requesttypes` WRITE;
/*!40000 ALTER TABLE `glpi_requesttypes` DISABLE KEYS */;
INSERT INTO `glpi_requesttypes` VALUES
(1,'Helpdesk',0,1,0,0,1,1,1,NULL,NULL,NULL),
(2,'E-Mail',0,0,1,1,1,1,1,NULL,NULL,NULL),
(3,'Phone',0,0,0,0,1,1,1,NULL,NULL,NULL),
(4,'Direct',0,0,0,0,1,1,1,NULL,NULL,NULL),
(5,'Written',0,0,0,0,1,1,1,NULL,NULL,NULL),
(6,'Other',0,0,0,0,1,1,1,NULL,NULL,NULL),
(7,'Formcreator',1,0,0,0,1,1,1,NULL,'2025-01-16 00:57:44',NULL);
/*!40000 ALTER TABLE `glpi_requesttypes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_reservationitems`
--

DROP TABLE IF EXISTS `glpi_reservationitems`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_reservationitems` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `itemtype` varchar(100) NOT NULL,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `items_id` int(10) unsigned NOT NULL DEFAULT 0,
  `comment` text DEFAULT NULL,
  `is_active` tinyint(4) NOT NULL DEFAULT 1,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`itemtype`,`items_id`),
  KEY `is_active` (`is_active`),
  KEY `item` (`itemtype`,`items_id`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_reservationitems`
--

LOCK TABLES `glpi_reservationitems` WRITE;
/*!40000 ALTER TABLE `glpi_reservationitems` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_reservationitems` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_reservations`
--

DROP TABLE IF EXISTS `glpi_reservations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_reservations` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `reservationitems_id` int(10) unsigned NOT NULL DEFAULT 0,
  `begin` timestamp NULL DEFAULT NULL,
  `end` timestamp NULL DEFAULT NULL,
  `users_id` int(10) unsigned NOT NULL DEFAULT 0,
  `comment` text DEFAULT NULL,
  `group` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `begin` (`begin`),
  KEY `end` (`end`),
  KEY `users_id` (`users_id`),
  KEY `resagroup` (`reservationitems_id`,`group`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_reservations`
--

LOCK TABLES `glpi_reservations` WRITE;
/*!40000 ALTER TABLE `glpi_reservations` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_reservations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_rssfeeds`
--

DROP TABLE IF EXISTS `glpi_rssfeeds`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_rssfeeds` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `users_id` int(10) unsigned NOT NULL DEFAULT 0,
  `comment` text DEFAULT NULL,
  `url` text DEFAULT NULL,
  `refresh_rate` int(11) NOT NULL DEFAULT 86400,
  `max_items` int(11) NOT NULL DEFAULT 20,
  `have_error` tinyint(4) NOT NULL DEFAULT 0,
  `is_active` tinyint(4) NOT NULL DEFAULT 0,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `users_id` (`users_id`),
  KEY `date_mod` (`date_mod`),
  KEY `have_error` (`have_error`),
  KEY `is_active` (`is_active`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_rssfeeds`
--

LOCK TABLES `glpi_rssfeeds` WRITE;
/*!40000 ALTER TABLE `glpi_rssfeeds` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_rssfeeds` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_rssfeeds_users`
--

DROP TABLE IF EXISTS `glpi_rssfeeds_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_rssfeeds_users` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `rssfeeds_id` int(10) unsigned NOT NULL DEFAULT 0,
  `users_id` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `rssfeeds_id` (`rssfeeds_id`),
  KEY `users_id` (`users_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_rssfeeds_users`
--

LOCK TABLES `glpi_rssfeeds_users` WRITE;
/*!40000 ALTER TABLE `glpi_rssfeeds_users` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_rssfeeds_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_ruleactions`
--

DROP TABLE IF EXISTS `glpi_ruleactions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_ruleactions` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `rules_id` int(10) unsigned NOT NULL DEFAULT 0,
  `action_type` varchar(255) DEFAULT NULL COMMENT 'VALUE IN (assign, regex_result, append_regex_result, affectbyip, affectbyfqdn, affectbymac)',
  `field` varchar(255) DEFAULT NULL,
  `value` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `rules_id` (`rules_id`),
  KEY `field_value` (`field`(50),`value`(50))
) ENGINE=InnoDB AUTO_INCREMENT=91 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_ruleactions`
--

LOCK TABLES `glpi_ruleactions` WRITE;
/*!40000 ALTER TABLE `glpi_ruleactions` DISABLE KEYS */;
INSERT INTO `glpi_ruleactions` VALUES
(1,1,'assign','_ignore_import','1'),
(2,2,'assign','_inventory','0'),
(3,3,'assign','_inventory','0'),
(4,4,'assign','_inventory','0'),
(5,5,'assign','_inventory','0'),
(6,6,'assign','_inventory','0'),
(7,7,'assign','_inventory','0'),
(8,8,'assign','_inventory','0'),
(9,9,'assign','_inventory','0'),
(10,10,'assign','_ignore_import','1'),
(11,11,'assign','_inventory','0'),
(12,12,'assign','_inventory','0'),
(13,13,'assign','_inventory','0'),
(14,14,'assign','_inventory','0'),
(15,15,'assign','_inventory','0'),
(16,16,'assign','_inventory','0'),
(17,17,'assign','_inventory','0'),
(18,18,'assign','_inventory','0'),
(19,19,'assign','_inventory','0'),
(20,20,'assign','_inventory','0'),
(21,21,'assign','_inventory','0'),
(22,22,'assign','_ignore_import','1'),
(23,23,'assign','_ignore_import','1'),
(24,24,'assign','_inventory','0'),
(25,25,'assign','_inventory','0'),
(26,26,'assign','_inventory','0'),
(27,27,'assign','_inventory','0'),
(28,28,'assign','_ignore_import','1'),
(29,29,'assign','_ignore_import','1'),
(30,30,'assign','_inventory','0'),
(31,31,'assign','_inventory','0'),
(32,32,'assign','_inventory','0'),
(33,33,'assign','_inventory','0'),
(34,34,'assign','_ignore_import','1'),
(35,35,'assign','_inventory','0'),
(36,36,'assign','_inventory','0'),
(37,37,'assign','_ignore_import','1'),
(38,38,'assign','_inventory','0'),
(39,39,'assign','_inventory','0'),
(40,40,'assign','_ignore_import','1'),
(41,41,'assign','_ignore_import','1'),
(42,42,'assign','_inventory','0'),
(43,43,'assign','_inventory','0'),
(44,44,'assign','_inventory','0'),
(45,45,'assign','_inventory','0'),
(46,46,'assign','_inventory','0'),
(47,47,'assign','_inventory','0'),
(48,48,'assign','_inventory','0'),
(49,49,'assign','_inventory','0'),
(50,50,'assign','_inventory','0'),
(51,51,'assign','_inventory','0'),
(52,52,'assign','_inventory','0'),
(53,53,'assign','_ignore_import','1'),
(54,54,'assign','_inventory','0'),
(55,55,'assign','_inventory','0'),
(56,56,'assign','_ignore_import','1'),
(57,57,'assign','_inventory','0'),
(58,58,'assign','_inventory','0'),
(59,59,'assign','_ignore_import','1'),
(60,60,'assign','_ignore_import','1'),
(61,61,'assign','_inventory','0'),
(62,62,'assign','_inventory','0'),
(63,63,'assign','_inventory','0'),
(64,64,'assign','_inventory','0'),
(65,65,'assign','_ignore_import','1'),
(66,66,'assign','_inventory','0'),
(67,67,'assign','_inventory','0'),
(68,68,'assign','_ignore_import','1'),
(69,69,'assign','_inventory','0'),
(70,70,'assign','_inventory','0'),
(71,71,'assign','_ignore_import','1'),
(72,72,'assign','entities_id','0'),
(73,73,'assign','_refuse_email_no_response','1'),
(74,74,'assign','_refuse_email_no_response','1'),
(75,75,'assign','entities_id','0'),
(76,76,'assign','_import_category','1'),
(77,77,'fromitem','locations_id','1'),
(78,78,'fromuser','locations_id','1'),
(79,79,'regex_result','_affect_user_by_regex','#0'),
(80,80,'regex_result','_affect_user_by_regex','#0'),
(81,81,'regex_result','_affect_user_by_regex','#0'),
(82,82,'append_regex_result','name','#0'),
(83,83,'append_regex_result','name','#1'),
(84,84,'append_regex_result','name','#1 #2'),
(85,85,'append_regex_result','name','#1'),
(86,86,'append_regex_result','name','#2'),
(87,87,'append_regex_result','name','#3'),
(88,88,'append_regex_result','name','#2'),
(89,89,'append_regex_result','name','#4'),
(90,90,'append_regex_result','name','#4');
/*!40000 ALTER TABLE `glpi_ruleactions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_rulecriterias`
--

DROP TABLE IF EXISTS `glpi_rulecriterias`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_rulecriterias` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `rules_id` int(10) unsigned NOT NULL DEFAULT 0,
  `criteria` varchar(255) DEFAULT NULL,
  `condition` int(11) NOT NULL DEFAULT 0 COMMENT 'see define.php PATTERN_* and REGEX_* constant',
  `pattern` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `rules_id` (`rules_id`),
  KEY `condition` (`condition`)
) ENGINE=InnoDB AUTO_INCREMENT=207 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_rulecriterias`
--

LOCK TABLES `glpi_rulecriterias` WRITE;
/*!40000 ALTER TABLE `glpi_rulecriterias` DISABLE KEYS */;
INSERT INTO `glpi_rulecriterias` VALUES
(1,1,'partial',0,'1'),
(2,1,'itemtype',9,'1'),
(3,2,'itemtype',9,'1'),
(4,2,'mac',10,'1'),
(5,2,'mac',8,'1'),
(6,2,'ifnumber',10,'1'),
(7,2,'ifnumber',8,'1'),
(8,2,'link_criteria_port',203,'1'),
(9,3,'itemtype',9,'1'),
(10,3,'mac',10,'1'),
(11,3,'mac',8,'1'),
(12,3,'ifnumber',10,'1'),
(13,3,'ifnumber',8,'1'),
(14,4,'itemtype',9,'1'),
(15,4,'mac',8,'1'),
(16,4,'ifnumber',8,'1'),
(17,5,'itemtype',9,'1'),
(18,5,'ip',10,'1'),
(19,5,'ip',8,'1'),
(20,5,'ifdescr',10,'1'),
(21,5,'ifdescr',8,'1'),
(22,5,'link_criteria_port',203,'1'),
(23,6,'itemtype',9,'1'),
(24,6,'ip',10,'1'),
(25,6,'ip',8,'1'),
(26,6,'ifdescr',10,'1'),
(27,6,'ifdescr',8,'1'),
(28,7,'itemtype',9,'1'),
(29,7,'ip',8,'1'),
(30,7,'ifdescr',8,'1'),
(31,8,'itemtype',9,'1'),
(32,8,'mac',10,'1'),
(33,8,'mac',8,'1'),
(34,8,'only_these_criteria',204,'1'),
(35,9,'itemtype',9,'1'),
(36,9,'mac',8,'1'),
(37,9,'only_these_criteria',204,'1'),
(38,10,'itemtype',0,'Computer'),
(39,10,'name',9,'1'),
(40,11,'itemtype',0,'Computer'),
(41,11,'serial',10,'1'),
(42,11,'serial',8,'1'),
(43,11,'uuid',10,'1'),
(44,11,'uuid',8,'1'),
(45,12,'itemtype',0,'Computer'),
(46,12,'serial',10,'1'),
(47,12,'serial',8,'1'),
(48,12,'uuid',30,'1'),
(49,13,'itemtype',0,'Computer'),
(50,13,'uuid',8,'1'),
(51,13,'serial',8,'1'),
(52,14,'itemtype',0,'Computer'),
(53,14,'serial',10,'1'),
(54,14,'serial',8,'1'),
(55,15,'itemtype',0,'Computer'),
(56,15,'uuid',10,'1'),
(57,15,'uuid',8,'1'),
(58,16,'itemtype',0,'Computer'),
(59,16,'mac',10,'1'),
(60,16,'mac',8,'1'),
(61,17,'itemtype',0,'Computer'),
(62,17,'name',10,'1'),
(63,17,'name',8,'1'),
(64,18,'itemtype',0,'Computer'),
(65,18,'serial',8,'1'),
(66,19,'itemtype',0,'Computer'),
(67,19,'uuid',8,'1'),
(68,20,'itemtype',0,'Computer'),
(69,20,'mac',8,'1'),
(70,21,'itemtype',0,'Computer'),
(71,21,'name',8,'1'),
(72,22,'itemtype',0,'Computer'),
(73,23,'itemtype',0,'Printer'),
(74,23,'name',9,'1'),
(75,24,'itemtype',0,'Printer'),
(76,24,'serial',8,'1'),
(77,24,'serial',10,'1'),
(78,25,'itemtype',0,'Printer'),
(79,25,'mac',8,'1'),
(80,25,'mac',10,'1'),
(81,26,'itemtype',0,'Printer'),
(82,26,'serial',8,'1'),
(83,27,'itemtype',0,'Printer'),
(84,27,'mac',8,'1'),
(85,28,'itemtype',0,'Printer'),
(86,29,'itemtype',0,'NetworkEquipment'),
(87,29,'name',9,'1'),
(88,30,'itemtype',0,'NetworkEquipment'),
(89,30,'serial',8,'1'),
(90,30,'serial',10,'1'),
(91,31,'itemtype',0,'NetworkEquipment'),
(92,31,'mac',8,'1'),
(93,31,'mac',10,'1'),
(94,32,'itemtype',0,'NetworkEquipment'),
(95,32,'serial',8,'1'),
(96,33,'itemtype',0,'NetworkEquipment'),
(97,33,'mac',8,'1'),
(98,34,'itemtype',0,'NetworkEquipment'),
(99,35,'itemtype',0,'Peripheral'),
(100,35,'serial',8,'1'),
(101,35,'serial',10,'1'),
(102,36,'itemtype',0,'Peripheral'),
(103,36,'serial',8,'1'),
(104,37,'itemtype',0,'Peripheral'),
(105,38,'itemtype',0,'Monitor'),
(106,38,'serial',8,'1'),
(107,38,'serial',10,'1'),
(108,39,'itemtype',0,'Monitor'),
(109,39,'serial',8,'1'),
(110,40,'itemtype',0,'Monitor'),
(111,41,'itemtype',0,'Phone'),
(112,41,'name',9,'1'),
(113,42,'itemtype',0,'Phone'),
(114,42,'serial',10,'1'),
(115,42,'serial',8,'1'),
(116,42,'uuid',10,'1'),
(117,42,'uuid',8,'1'),
(118,43,'itemtype',0,'Phone'),
(119,43,'serial',10,'1'),
(120,43,'serial',8,'1'),
(121,43,'uuid',30,'1'),
(122,44,'itemtype',0,'Phone'),
(123,44,'uuid',8,'1'),
(124,44,'serial',8,'1'),
(125,45,'itemtype',0,'Phone'),
(126,45,'serial',10,'1'),
(127,45,'serial',8,'1'),
(128,46,'itemtype',0,'Phone'),
(129,46,'uuid',10,'1'),
(130,46,'uuid',8,'1'),
(131,47,'itemtype',0,'Phone'),
(132,47,'mac',10,'1'),
(133,47,'mac',8,'1'),
(134,48,'itemtype',0,'Phone'),
(135,48,'name',10,'1'),
(136,48,'name',8,'1'),
(137,49,'itemtype',0,'Phone'),
(138,49,'serial',8,'1'),
(139,50,'itemtype',0,'Phone'),
(140,50,'uuid',8,'1'),
(141,51,'itemtype',0,'Phone'),
(142,51,'mac',8,'1'),
(143,52,'itemtype',0,'Phone'),
(144,52,'name',8,'1'),
(145,53,'itemtype',0,'Phone'),
(146,54,'itemtype',0,'Cluster'),
(147,54,'uuid',8,'1'),
(148,54,'uuid',10,'1'),
(149,55,'itemtype',0,'Cluster'),
(150,55,'uuid',8,'1'),
(151,56,'itemtype',0,'Cluster'),
(152,57,'itemtype',0,'Enclosure'),
(153,57,'serial',8,'1'),
(154,57,'serial',10,'1'),
(155,58,'itemtype',0,'Enclosure'),
(156,58,'serial',8,'1'),
(157,59,'itemtype',0,'Enclosure'),
(158,60,'name',9,'1'),
(159,61,'serial',8,'1'),
(160,61,'serial',10,'1'),
(161,62,'mac',8,'1'),
(162,62,'mac',10,'1'),
(163,63,'serial',8,'1'),
(164,64,'mac',8,'1'),
(165,65,'itemtype',0,''),
(166,66,'itemtype',0,'DatabaseInstance'),
(167,66,'name',8,'1'),
(168,66,'name',10,'1'),
(169,66,'linked_item',10,'1'),
(170,67,'itemtype',0,'DatabaseInstance'),
(171,67,'name',8,'1'),
(172,68,'itemtype',0,'DatabaseInstance'),
(173,69,'itemtype',0,'Unmanaged'),
(174,69,'name',8,'1'),
(175,69,'name',10,'1'),
(176,70,'itemtype',0,'Unmanaged'),
(177,70,'name',8,'1'),
(178,71,'itemtype',0,'Unmanaged'),
(179,72,'subject',6,'/.*/'),
(180,73,'x-auto-response-suppress',6,'/\\S+/'),
(181,74,'auto-submitted',6,'/^(?!.*no).+$/i'),
(182,75,'TYPE',0,'3'),
(183,75,'TYPE',0,'2'),
(184,76,'name',0,'*'),
(185,77,'locations_id',9,'1'),
(186,77,'_locations_id_of_item',8,'1'),
(187,78,'locations_id',9,'1'),
(188,78,'_locations_id_of_requester',8,'1'),
(189,79,'_itemtype',0,'Computer'),
(190,79,'_auto',0,'1'),
(191,79,'contact',6,'/(.*)@/'),
(192,80,'_itemtype',0,'Computer'),
(193,80,'_auto',0,'1'),
(194,80,'contact',6,'/(.*)[,|\\/]/'),
(195,81,'_itemtype',0,'Computer'),
(196,81,'_auto',0,'1'),
(197,81,'contact',6,'/(.*)/'),
(198,82,'os_name',6,'/(SUSE|SunOS|Red Hat|CentOS|Ubuntu|Debian|Fedora|AlmaLinux|Oracle|Amazon Linux)(?:\\D+|)([\\d.]*) ?(?:\\(?([\\w ]+)\\)?)?/'),
(199,83,'os_name',6,'/(Microsoft)(?&#62;\\(R\\)|®)? (Windows) (XP|\\d\\.\\d|\\d{1,4}|Vista)(™)? ?(.*)/'),
(200,84,'os_name',6,'/(Microsoft)(?&#62;\\(R\\)|®)? (?:(Hyper-V|Windows)(?:\\(R\\))?) ((?:Server|))(?:\\(R\\)|®)? (\\d{4}(?: R2)?)(?:[,\\s]++)?([^\\s]*)(?: Edition(?: x64)?)?$/'),
(201,85,'os_name',6,'/(SUSE|SunOS|Red Hat|CentOS|Ubuntu|Debian|Fedora|AlmaLinux|Oracle)(?:\\D+|)([\\d.]+) ?(?:\\(?([\\w ]+)\\)?)?/'),
(202,86,'os_name',6,'/(Microsoft)(?&#62;\\(R\\)|®)? (Windows) (XP|\\d\\.\\d|\\d{1,4}|Vista)(™)? ?(.*)/'),
(203,87,'os_name',6,'/(Microsoft)(?&#62;\\(R\\)|®)? (?:(Hyper-V|Windows)(?:\\(R\\))?) ((?:Server|))(?:\\(R\\)|®)? (\\d{4}(?: R2)?)(?:[,\\s]++)?([^\\s]*)(?: Edition(?: x64)?)?$/'),
(204,88,'os_name',6,'/(SUSE|SunOS|Red Hat|CentOS|Ubuntu|Debian|Fedora|AlmaLinux|Oracle)(?:\\D+|)([\\d.]+) ?(?:\\(?([\\w ]+)\\)?)?/'),
(205,89,'os_name',6,'/(Microsoft)(?&#62;\\(R\\)|®)? (Windows) (XP|\\d\\.\\d|\\d{1,4}|Vista)(™)? ?(.*)/'),
(206,90,'os_name',6,'/(Microsoft)(?&#62;\\(R\\)|®)? (?:(Hyper-V|Windows)(?:\\(R\\))?) ((?:Server|))(?:\\(R\\)|®)? (\\d{4}(?: R2)?)(?:[,\\s]++)?([^\\s]*)(?: Edition(?: x64)?)?$/');
/*!40000 ALTER TABLE `glpi_rulecriterias` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_rulematchedlogs`
--

DROP TABLE IF EXISTS `glpi_rulematchedlogs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_rulematchedlogs` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `date` timestamp NULL DEFAULT NULL,
  `items_id` int(10) unsigned NOT NULL DEFAULT 0,
  `itemtype` varchar(100) DEFAULT NULL,
  `rules_id` int(10) unsigned DEFAULT NULL,
  `agents_id` int(10) unsigned NOT NULL DEFAULT 0,
  `method` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `agents_id` (`agents_id`),
  KEY `item` (`itemtype`,`items_id`),
  KEY `rules_id` (`rules_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_rulematchedlogs`
--

LOCK TABLES `glpi_rulematchedlogs` WRITE;
/*!40000 ALTER TABLE `glpi_rulematchedlogs` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_rulematchedlogs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_rulerightparameters`
--

DROP TABLE IF EXISTS `glpi_rulerightparameters`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_rulerightparameters` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `value` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_rulerightparameters`
--

LOCK TABLES `glpi_rulerightparameters` WRITE;
/*!40000 ALTER TABLE `glpi_rulerightparameters` DISABLE KEYS */;
INSERT INTO `glpi_rulerightparameters` VALUES
(1,'(LDAP)Organization','o',NULL,NULL,NULL),
(2,'(LDAP)Common Name','cn',NULL,NULL,NULL),
(3,'(LDAP)Department Number','departmentnumber',NULL,NULL,NULL),
(4,'(LDAP)Email','mail',NULL,NULL,NULL),
(5,'Object Class','objectclass',NULL,NULL,NULL),
(6,'(LDAP)User ID','uid',NULL,NULL,NULL),
(7,'(LDAP)Telephone Number','phone',NULL,NULL,NULL),
(8,'(LDAP)Employee Number','employeenumber',NULL,NULL,NULL),
(9,'(LDAP)Manager','manager',NULL,NULL,NULL),
(10,'(LDAP)DistinguishedName','dn',NULL,NULL,NULL),
(12,'(AD)User ID','samaccountname',NULL,NULL,NULL),
(13,'(LDAP) Title','title',NULL,NULL,NULL),
(14,'(LDAP) MemberOf','memberof',NULL,NULL,NULL);
/*!40000 ALTER TABLE `glpi_rulerightparameters` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_rules`
--

DROP TABLE IF EXISTS `glpi_rules`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_rules` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `sub_type` varchar(255) NOT NULL DEFAULT '',
  `ranking` int(11) NOT NULL DEFAULT 0,
  `name` varchar(255) DEFAULT NULL,
  `description` text DEFAULT NULL,
  `match` char(10) DEFAULT NULL COMMENT 'see define.php *_MATCHING constant',
  `is_active` tinyint(4) NOT NULL DEFAULT 1,
  `comment` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `uuid` varchar(255) DEFAULT NULL,
  `condition` int(11) NOT NULL DEFAULT 0,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `entities_id` (`entities_id`),
  KEY `is_active` (`is_active`),
  KEY `sub_type` (`sub_type`),
  KEY `date_mod` (`date_mod`),
  KEY `is_recursive` (`is_recursive`),
  KEY `condition` (`condition`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB AUTO_INCREMENT=91 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_rules`
--

LOCK TABLES `glpi_rules` WRITE;
/*!40000 ALTER TABLE `glpi_rules` DISABLE KEYS */;
INSERT INTO `glpi_rules` VALUES
(1,0,'RuleImportAsset',1,'No creation on partial import','','AND',1,'','2024-12-27 05:21:51',1,'glpi_rule_import_asset_no_creation_on_partial_import',0,'2024-12-27 05:21:51'),
(2,0,'RuleImportAsset',2,'Global update (by mac+ifnumber restricted port)','','AND',1,'','2024-12-27 05:21:51',1,'glpi_rule_import_asset_global_update_mac_ifnumber_restricted_port',0,'2024-12-27 05:21:51'),
(3,0,'RuleImportAsset',3,'Global update (by mac+ifnumber not restricted port)','','AND',1,'','2024-12-27 05:21:51',1,'glpi_rule_import_asset_global_update_mac_ifnumber_no_restricted_port',0,'2024-12-27 05:21:51'),
(4,0,'RuleImportAsset',4,'Global import (by mac+ifnumber)','','AND',1,'','2024-12-27 05:21:51',1,'glpi_rule_import_asset_global_import_mac_ifnumber',0,'2024-12-27 05:21:51'),
(5,0,'RuleImportAsset',5,'Global update (by ip+ifdescr restricted port)','','AND',1,'','2024-12-27 05:21:51',1,'glpi_rule_import_asset_global_update_mac_ifdescr_restricted_port',0,'2024-12-27 05:21:51'),
(6,0,'RuleImportAsset',6,'Global update (by ip+ifdescr not restricted port)','','AND',1,'','2024-12-27 05:21:51',1,'glpi_rule_import_asset_global_update_ip_ifdescr_no_restricted_port',0,'2024-12-27 05:21:51'),
(7,0,'RuleImportAsset',7,'Global import (by ip+ifdescr)','','AND',1,'','2024-12-27 05:21:51',1,'glpi_rule_import_asset_global_import_ip_ifdescr',0,'2024-12-27 05:21:51'),
(8,0,'RuleImportAsset',8,'Update only mac address (mac on switch port)','','AND',1,'','2024-12-27 05:21:51',1,'glpi_rule_import_asset_update_only_mac_adress',0,'2024-12-27 05:21:51'),
(9,0,'RuleImportAsset',9,'Import only mac address (mac on switch port)','','AND',1,'','2024-12-27 05:21:51',1,'glpi_rule_import_asset_import_only_mac_adress',0,'2024-12-27 05:21:51'),
(10,0,'RuleImportAsset',10,'Computer constraint (name)','','AND',1,'','2024-12-27 05:21:51',1,'glpi_rule_import_asset_computer_constraint_name',0,'2024-12-27 05:21:51'),
(11,0,'RuleImportAsset',11,'Computer update (by serial + uuid)','','AND',1,'','2024-12-27 05:21:51',1,'glpi_rule_import_asset_computer_update_serial_uuid',0,'2024-12-27 05:21:51'),
(12,0,'RuleImportAsset',12,'Computer update (by serial + uuid is empty in GLPI)','','AND',1,'','2024-12-27 05:21:51',1,'glpi_rule_import_asset_computer_update_serial_uuid_empty',0,'2024-12-27 05:21:51'),
(13,0,'RuleImportAsset',13,'Computer import (by serial + uuid)','','AND',1,'','2024-12-27 05:21:51',1,'glpi_rule_import_asset_computer_import_serial_uuid',0,'2024-12-27 05:21:51'),
(14,0,'RuleImportAsset',14,'Computer update (by serial)','','AND',1,'','2024-12-27 05:21:51',1,'glpi_rule_import_asset_computer_update_serial',0,'2024-12-27 05:21:51'),
(15,0,'RuleImportAsset',15,'Computer update (by uuid)','','AND',0,'','2024-12-27 05:21:51',1,'glpi_rule_import_asset_computer_update_uuid',0,'2024-12-27 05:21:51'),
(16,0,'RuleImportAsset',16,'Computer update (by mac)','','AND',0,'','2024-12-27 05:21:51',1,'glpi_rule_import_asset_computer_update_mac',0,'2024-12-27 05:21:51'),
(17,0,'RuleImportAsset',17,'Computer update (by name)','','AND',1,'','2024-12-27 05:21:51',1,'glpi_rule_import_asset_computer_update_name',0,'2024-12-27 05:21:51'),
(18,0,'RuleImportAsset',18,'Computer import (by serial)','','AND',1,'','2024-12-27 05:21:51',1,'glpi_rule_import_asset_computer_import_serial',0,'2024-12-27 05:21:51'),
(19,0,'RuleImportAsset',19,'Computer import (by uuid)','','AND',0,'','2024-12-27 05:21:51',1,'glpi_rule_import_asset_computer_import_uuid',0,'2024-12-27 05:21:51'),
(20,0,'RuleImportAsset',20,'Computer import (by mac)','','AND',0,'','2024-12-27 05:21:51',1,'glpi_rule_import_asset_computer_import_mac',0,'2024-12-27 05:21:51'),
(21,0,'RuleImportAsset',21,'Computer import (by name)','','AND',1,'','2024-12-27 05:21:51',1,'glpi_rule_import_asset_computer_import_name',0,'2024-12-27 05:21:51'),
(22,0,'RuleImportAsset',22,'Computer import denied','','AND',1,'','2024-12-27 05:21:51',1,'glpi_rule_import_asset_computer_import_denied',0,'2024-12-27 05:21:51'),
(23,0,'RuleImportAsset',23,'Printer constraint (name)','','AND',1,'','2024-12-27 05:21:51',1,'glpi_rule_import_asset_printer_constraint_name',0,'2024-12-27 05:21:51'),
(24,0,'RuleImportAsset',24,'Printer update (by serial)','','AND',1,'','2024-12-27 05:21:51',1,'glpi_rule_import_asset_printer_update_serial',0,'2024-12-27 05:21:51'),
(25,0,'RuleImportAsset',25,'Printer update (by mac)','','AND',0,'','2024-12-27 05:21:51',1,'glpi_rule_import_asset_printer_update_mac',0,'2024-12-27 05:21:51'),
(26,0,'RuleImportAsset',26,'Printer import (by serial)','','AND',1,'','2024-12-27 05:21:51',1,'glpi_rule_import_asset_printer_import_serial',0,'2024-12-27 05:21:51'),
(27,0,'RuleImportAsset',27,'Printer import (by mac)','','AND',0,'','2024-12-27 05:21:51',1,'glpi_rule_import_asset_printer_import_mac',0,'2024-12-27 05:21:51'),
(28,0,'RuleImportAsset',28,'Printer import denied','','AND',1,'','2024-12-27 05:21:51',1,'glpi_rule_import_asset_printer_import_denied',0,'2024-12-27 05:21:51'),
(29,0,'RuleImportAsset',29,'NetworkEquipment constraint (name)','','AND',1,'','2024-12-27 05:21:51',1,'glpi_rule_import_asset_networkequipment_constraint_name',0,'2024-12-27 05:21:51'),
(30,0,'RuleImportAsset',30,'NetworkEquipment update (by serial)','','AND',1,'','2024-12-27 05:21:51',1,'glpi_rule_import_asset_networkequipment_update_serial',0,'2024-12-27 05:21:51'),
(31,0,'RuleImportAsset',31,'NetworkEquipment update (by mac)','','AND',0,'','2024-12-27 05:21:51',1,'glpi_rule_import_asset_networkequipment_update_mac',0,'2024-12-27 05:21:51'),
(32,0,'RuleImportAsset',32,'NetworkEquipment import (by serial)','','AND',1,'','2024-12-27 05:21:51',1,'glpi_rule_import_asset_networkequipment_import_serial',0,'2024-12-27 05:21:51'),
(33,0,'RuleImportAsset',33,'NetworkEquipment import (by mac)','','AND',0,'','2024-12-27 05:21:51',1,'glpi_rule_import_asset_networkequipment_import_mac',0,'2024-12-27 05:21:51'),
(34,0,'RuleImportAsset',34,'NetworkEquipment import denied','','AND',1,'','2024-12-27 05:21:51',1,'glpi_rule_import_asset_networkequipment_import_denied',0,'2024-12-27 05:21:51'),
(35,0,'RuleImportAsset',35,'Device update (by serial)','','AND',1,'','2024-12-27 05:21:51',1,'glpi_rule_import_asset_device_update_serial',0,'2024-12-27 05:21:51'),
(36,0,'RuleImportAsset',36,'Device import (by serial)','','AND',1,'','2024-12-27 05:21:51',1,'glpi_rule_import_asset_device_importe_serial',0,'2024-12-27 05:21:51'),
(37,0,'RuleImportAsset',37,'Device import denied','','AND',1,'','2024-12-27 05:21:51',1,'glpi_rule_import_asset_device_import_denied',0,'2024-12-27 05:21:51'),
(38,0,'RuleImportAsset',38,'Monitor update (by serial)','','AND',1,'','2024-12-27 05:21:51',1,'glpi_rule_import_asset_monitor_update_serial',0,'2024-12-27 05:21:51'),
(39,0,'RuleImportAsset',39,'Monitor import (by serial)','','AND',1,'','2024-12-27 05:21:51',1,'glpi_rule_import_asset_monitor_import_serial',0,'2024-12-27 05:21:51'),
(40,0,'RuleImportAsset',40,'Monitor import denied','','AND',1,'','2024-12-27 05:21:51',1,'glpi_rule_import_asset_monitor_import_denied',0,'2024-12-27 05:21:51'),
(41,0,'RuleImportAsset',41,'Phone constraint (name)','','AND',1,'','2024-12-27 05:21:51',1,'glpi_rule_import_asset_phone_constraint_name',0,'2024-12-27 05:21:51'),
(42,0,'RuleImportAsset',42,'Phone update (by serial + uuid)','','AND',1,'','2024-12-27 05:21:51',1,'glpi_rule_import_asset_phone_update_serial_uuid',0,'2024-12-27 05:21:51'),
(43,0,'RuleImportAsset',43,'Phone update (by serial + uuid is empty in GLPI)','','AND',1,'','2024-12-27 05:21:51',1,'glpi_rule_import_asset_phone_update_serial_uuid_empty',0,'2024-12-27 05:21:51'),
(44,0,'RuleImportAsset',44,'Phone import (by serial + uuid)','','AND',1,'','2024-12-27 05:21:51',1,'glpi_rule_import_asset_phone_import_serial_uuid',0,'2024-12-27 05:21:51'),
(45,0,'RuleImportAsset',45,'Phone update (by serial)','','AND',1,'','2024-12-27 05:21:51',1,'glpi_rule_import_asset_phone_update_serial',0,'2024-12-27 05:21:51'),
(46,0,'RuleImportAsset',46,'Phone update (by uuid)','','AND',0,'','2024-12-27 05:21:51',1,'glpi_rule_import_asset_phone_update_uuid',0,'2024-12-27 05:21:51'),
(47,0,'RuleImportAsset',47,'Phone update (by mac)','','AND',0,'','2024-12-27 05:21:51',1,'glpi_rule_import_asset_phone_update_mac',0,'2024-12-27 05:21:51'),
(48,0,'RuleImportAsset',48,'Phone update (by name)','','AND',1,'','2024-12-27 05:21:51',1,'glpi_rule_import_asset_phone_update_name',0,'2024-12-27 05:21:51'),
(49,0,'RuleImportAsset',49,'Phone import (by serial)','','AND',1,'','2024-12-27 05:21:51',1,'glpi_rule_import_asset_phone_import_serial',0,'2024-12-27 05:21:51'),
(50,0,'RuleImportAsset',50,'Phone import (by uuid)','','AND',0,'','2024-12-27 05:21:51',1,'glpi_rule_import_asset_phone_import_uuid',0,'2024-12-27 05:21:51'),
(51,0,'RuleImportAsset',51,'Phone import (by mac)','','AND',0,'','2024-12-27 05:21:51',1,'glpi_rule_import_asset_phone_import_mac',0,'2024-12-27 05:21:51'),
(52,0,'RuleImportAsset',52,'Phone import (by name)','','AND',1,'','2024-12-27 05:21:51',1,'glpi_rule_import_asset_phone_import_name',0,'2024-12-27 05:21:51'),
(53,0,'RuleImportAsset',53,'Phone import denied','','AND',1,'','2024-12-27 05:21:51',1,'glpi_rule_import_asset_phone_import_denied',0,'2024-12-27 05:21:51'),
(54,0,'RuleImportAsset',54,'Cluster update (by uuid)','','AND',1,'','2024-12-27 05:21:51',1,'glpi_rule_import_asset_cluster_update_uuid',0,'2024-12-27 05:21:51'),
(55,0,'RuleImportAsset',55,'Cluster import (by uuid)','','AND',1,'','2024-12-27 05:21:51',1,'glpi_rule_import_asset_cluster_import_uuid',0,'2024-12-27 05:21:51'),
(56,0,'RuleImportAsset',56,'Cluster import denied','','AND',1,'','2024-12-27 05:21:51',1,'glpi_rule_import_asset_cluster_import_denied',0,'2024-12-27 05:21:51'),
(57,0,'RuleImportAsset',57,'Enclosure update (by serial)','','AND',1,'','2024-12-27 05:21:51',1,'glpi_rule_import_asset_enclosure_update_serial',0,'2024-12-27 05:21:51'),
(58,0,'RuleImportAsset',58,'Enclosure import (by serial)','','AND',1,'','2024-12-27 05:21:51',1,'glpi_rule_import_asset_enclosure_import_serial',0,'2024-12-27 05:21:51'),
(59,0,'RuleImportAsset',59,'Enclosure import denied','','AND',1,'','2024-12-27 05:21:51',1,'glpi_rule_import_asset_enclosure_import_denied',0,'2024-12-27 05:21:51'),
(60,0,'RuleImportAsset',60,'Global constraint (name)','','AND',1,'','2024-12-27 05:21:51',1,'glpi_rule_import_asset_global_constraint_name',0,'2024-12-27 05:21:51'),
(61,0,'RuleImportAsset',61,'Global update (by serial)','','AND',1,'','2024-12-27 05:21:51',1,'glpi_rule_import_asset_global_update_serial',0,'2024-12-27 05:21:51'),
(62,0,'RuleImportAsset',62,'Global update (by mac)','','AND',0,'','2024-12-27 05:21:51',1,'glpi_rule_import_asset_global_update_mac',0,'2024-12-27 05:21:51'),
(63,0,'RuleImportAsset',63,'Global import (by serial)','','AND',1,'','2024-12-27 05:21:51',1,'glpi_rule_import_asset_global_import_serial',0,'2024-12-27 05:21:51'),
(64,0,'RuleImportAsset',64,'Global import (by mac)','','AND',0,'','2024-12-27 05:21:51',1,'glpi_rule_import_asset_global_import_mac',0,'2024-12-27 05:21:51'),
(65,0,'RuleImportAsset',65,'Global import denied','','AND',1,'','2024-12-27 05:21:51',1,'glpi_rule_import_asset_global_import_denied',0,'2024-12-27 05:21:51'),
(66,0,'RuleImportAsset',66,'Database update (by name)','','AND',1,'','2024-12-27 05:21:51',1,'glpi_rule_import_asset_database_update_name',0,'2024-12-27 05:21:51'),
(67,0,'RuleImportAsset',67,'Database import (by name)','','AND',1,'','2024-12-27 05:21:51',1,'glpi_rule_import_asset_database_import_name',0,'2024-12-27 05:21:51'),
(68,0,'RuleImportAsset',68,'Database import denied','','AND',1,'','2024-12-27 05:21:51',1,'glpi_rule_import_asset_database_import_denied',0,'2024-12-27 05:21:51'),
(69,0,'RuleImportAsset',69,'Unmanaged update (by name)','','AND',1,'','2024-12-27 05:21:51',1,'glpi_rule_import_asset_unmanaged_update_name',0,'2024-12-27 05:21:51'),
(70,0,'RuleImportAsset',70,'Unmanaged import (by name)','','AND',1,'','2024-12-27 05:21:51',1,'glpi_rule_import_asset_unmanaged_import_name',0,'2024-12-27 05:21:51'),
(71,0,'RuleImportAsset',71,'Unmanaged import denied','','AND',1,'','2024-12-27 05:21:51',1,'glpi_rule_import_asset_unmanaged_import_denied',0,'2024-12-27 05:21:51'),
(72,0,'RuleMailCollector',3,'Root','','OR',1,'','2024-12-27 05:21:51',0,'glpi_rule_mail_collector_root',0,'2024-12-27 05:21:51'),
(73,0,'RuleMailCollector',1,'X-Auto-Response-Suppress','Exclude Auto-Reply emails using X-Auto-Response-Suppress header','AND',0,'','2024-12-27 05:21:51',1,'glpi_rule_mail_collector_x_auto_response_suppress',0,'2024-12-27 05:21:51'),
(74,0,'RuleMailCollector',2,'Auto-Reply Auto-Submitted','Exclude Auto-Reply emails using Auto-Submitted header','OR',1,'','2024-12-27 05:21:51',1,'glpi_rule_mail_collector_auto_reply_auto_submitted',0,'2024-12-27 05:21:51'),
(75,0,'RuleRight',1,'Root','','OR',1,'','2024-12-27 05:21:51',0,'glpi_rule_right_root',0,'2024-12-27 05:21:51'),
(76,0,'RuleSoftwareCategory',1,'Import category from inventory tool','','AND',0,'','2024-12-27 05:21:51',1,'glpi_rule_rule_software_category_import_category_from_inventory_tool',1,'2024-12-27 05:21:51'),
(77,0,'RuleTicket',1,'Ticket location from item','','AND',0,'','2024-12-27 05:21:51',1,'glpi_rule_rule_ticket_location_from_item',1,'2024-12-27 05:21:51'),
(78,0,'RuleTicket',2,'Ticket location from user','','AND',0,'','2024-12-27 05:21:51',1,'glpi_rule_rule_ticket_location_from_user',1,'2024-12-27 05:21:51'),
(79,0,'RuleAsset',1,'Domain user assignation','','AND',1,'','2024-12-27 05:21:51',1,'glpi_rule_rule_asset_domain_user_assignation',3,'2024-12-27 05:21:51'),
(80,0,'RuleAsset',2,'Multiple users: assign to the first','','AND',1,'','2024-12-27 05:21:51',1,'glpi_rule_rule_asset_multiple_user_assign_to_first',3,'2024-12-27 05:21:51'),
(81,0,'RuleAsset',3,'One user assignation','','AND',1,'','2024-12-27 05:21:51',1,'glpi_rule_rule_asset_one_user_assignation',3,'2024-12-27 05:21:51'),
(82,0,'RuleDictionnaryOperatingSystem',1,'Clean Linux OS Name','','AND',0,'/(SUSE|SunOS|Red Hat|CentOS|Ubuntu|Debian|Fedora|AlmaLinux|Oracle|Amazon Linux)(?:\\D+|)([\\d.]*) ?(?:\\(?([\\w ]+)\\)?)?/\n\n            Example :\n            Ubuntu 22.04.1 LTS -&#62; #0 = Ubuntu\n            SUSE Linux Enterprise Server 11 (x86_64)  -&#62;#0 = SUSE\n            SunOS -&#62; #0 = SunOS\n            Red Hat Enterprise Linux Server release 7.9 (Maipo) -&#62; #0 = Red Hat\n            Oracle Linux Server release 7.3 -&#62; #0 = Oracle\n            Fedora release 36 (Thirty Six) -&#62; #0 = Fedora\n            Debian GNU/Linux 9.5 (stretch) -&#62; #0 = Debian\n            CentOS Stream release 8 -&#62; #0 = CentOS\n            AlmaLinux 9.0 (Emerald Puma) -&#62; #0 = AlmaLinux\n            Amazon Linux 2023 -&#62; #0 = Amazon Linux','2024-12-27 05:21:51',1,'clean_linux_os_name',0,'2024-12-27 05:21:51'),
(83,0,'RuleDictionnaryOperatingSystem',2,'Clean Windows OS Name','','AND',0,'/(Microsoft)(?&#62;\\(R\\)|®)? (Windows) (XP|\\d\\.\\d|\\d{1,4}|Vista)(™)? ?(.*)/\n\n            Example :\n            Microsoft Windows XP Professionnel -&#62; #1 : Windows\n            Microsoft Windows 7 Enterprise  -&#62; #1 : Windows\n            Microsoft® Windows Vista Professionnel  -&#62; #1 : Windows\n            Microsoft Windows XP Édition familiale  -&#62; #1 : Windows\n            Microsoft Windows 10 Entreprise  -&#62; #1 : Windows\n            Microsoft Windows 10 Professionnel  -&#62; #1 : Windows\n            Microsoft Windows 11 Professionnel  -&#62; #1 : Windows','2024-12-27 05:21:51',1,'clean_windows_os_name',0,'2024-12-27 05:21:51'),
(84,0,'RuleDictionnaryOperatingSystem',3,'Clean Windows Server OS Name','','AND',0,'/(Microsoft)(?&#62;\\(R\\)|®)? (?:(Hyper-V|Windows)(?:\\(R\\))?) ((?:Server|))(?:\\(R\\)|®)? (\\d{4}(?: R2)?)(?:[,\\s]++)?([^\\s]*)(?: Edition(?: x64)?)?$/\n\n            Example :\n            Microsoft Windows Server 2012 R2 Datacenter -&#62; #1 #2 : Windows Server\n            Microsoft(R) Windows(R) Server 2003, Standard Edition x64 -&#62; #1 #2 : Windows Server\n            Microsoft Hyper-V Server 2012 R2 -&#62; #1 #2 : Hyper-V Server\n            Microsoft® Windows Server® 2008 Standard -&#62; #1 #2 : Windows Server','2024-12-27 05:21:51',1,'clean_windows_server_os_name',0,'2024-12-27 05:21:51'),
(85,0,'RuleDictionnaryOperatingSystemVersion',1,'Clean Linux OS Version','','AND',0,'/(SUSE|SunOS|Red Hat|CentOS|Ubuntu|Debian|Fedora|AlmaLinux|Oracle)(?:\\D+|)([\\d.]+) ?(?:\\(?([\\w ]+)\\)?)?/\n\n            Example :\n            Ubuntu 22.04.1 LTS -&#62; #1 = 22.04.1\n            SUSE Linux Enterprise Server 11 (x86_64) -&#62; #1 =  11\n            SunOS 5.10 -&#62; #1 = 5.10\n            Red Hat Enterprise Linux Server release 7.9 (Maipo) -&#62; #1 = 7.9\n            Oracle Linux Server release 7.3 -&#62; #1 = 7.3\n            Fedora release 36 (Thirty Six) -&#62; #1 =  36\n            Debian GNU/Linux 9.5 (stretch) -&#62; #1 = 9.5\n            CentOS release 6.9 (Final) -&#62; #1 = 6.9\n            AlmaLinux 9.0 (Emerald Puma) -&#62; #1 = 9.0','2024-12-27 05:21:51',1,'clean_linux_os_version',0,'2024-12-27 05:21:51'),
(86,0,'RuleDictionnaryOperatingSystemVersion',2,'Clean Windows OS Version','','AND',0,'/(Microsoft)(?&#62;\\(R\\)|®)? (Windows) (XP|\\d\\.\\d|\\d{1,4}|Vista)(™)? ?(.*)/\n\n            Example :\n            Microsoft Windows XP Professionnel -&#62; #2 : XP\n            Microsoft Windows 7 Enterprise  -&#62; #2 : 7\n            Microsoft® Windows Vista Professionnel  -&#62; #2 : Vista\n            Microsoft Windows XP Édition familiale  -&#62; #2 : XP\n            Microsoft Windows 10 Entreprise  -&#62; #2 : 10\n            Microsoft Windows 10 Professionnel  -&#62; #2 : 10\n            Microsoft Windows 11 Professionnel  -&#62; #2 : 11','2024-12-27 05:21:51',1,'clean_windows_os_version',0,'2024-12-27 05:21:51'),
(87,0,'RuleDictionnaryOperatingSystemVersion',3,'Clean Windows Server OS Version','','AND',0,'/(Microsoft)(?&#62;\\(R\\)|®)? (?:(Hyper-V|Windows)(?:\\(R\\))?) ((?:Server|))(?:\\(R\\)|®)? (\\d{4}(?: R2)?)(?:[,\\s]++)?([^\\s]*)(?: Edition(?: x64)?)?$/\n\n            Example :\n            Microsoft Windows Server 2012 R2 Datacenter -&#62; #3 : 2012 R2\n            Microsoft(R) Windows(R) Server 2003, Standard Edition x64 -&#62; #3 : 2003\n            Microsoft Hyper-V Server 2012 R2 -&#62; #3 : 2012 R2\n            Microsoft® Windows Server® 2008 Standard -&#62; #3 : 2008','2024-12-27 05:21:51',1,'clean_windows_server_os_version',0,'2024-12-27 05:21:51'),
(88,0,'RuleDictionnaryOperatingSystemEdition',1,'Clean Linux OS Edition','','AND',0,'/(SUSE|SunOS|Red Hat|CentOS|Ubuntu|Debian|Fedora|AlmaLinux|Oracle)(?:\\D+|)([\\d.]+) ?(?:\\(?([\\w ]+)\\)?)?/\n\n        Example :\n        Ubuntu 22.04.1 LTS -&#62; #2 = LTS\n        SUSE Linux Enterprise Server 11 (x86_64) -&#62; #2 = x86_64\n        Red Hat Enterprise Linux Server release 7.9 (Maipo) -&#62; #2 = Maipo\n        Red Hat Enterprise Linux Server release 6.10 (Santiago) -&#62; #2 = Santiago\n        Fedora release 36 (Thirty Six) -&#62; #2 = Thirty Six\n        Debian GNU/Linux 9.5 (stretch) -&#62; #2 = stretch\n        Debian GNU/Linux 8.9 (jessie) -&#62; #2 = jessie\n        CentOS Linux release 7.2.1511 (Core) -&#62; #2 = Core\n        AlmaLinux 9.0 (Emerald Puma) -&#62; #2 = Emerald Puma\n        AlmaLinux 8.6 (Sky Tiger) -&#62; #2 = Sky Tiger','2024-12-27 05:21:51',1,'clean_linux_os_edition',0,'2024-12-27 05:21:51'),
(89,0,'RuleDictionnaryOperatingSystemEdition',2,'Clean Windows OS Edition','','AND',0,'/(Microsoft)(?&#62;\\(R\\)|®)? (Windows) (XP|\\d\\.\\d|\\d{1,4}|Vista)(™)? ?(.*)/\n\n        Example :\n        Microsoft Windows XP Professionnel -&#62; #4 : Professionnel\n        Microsoft Windows 7 Enterprise  -&#62; #4 : Enterprise\n        Microsoft® Windows Vista Professionnel  -&#62; #4 : Professionnel\n        Microsoft Windows XP Édition familiale  -&#62; #4 : Édition familiale\n        Microsoft Windows 10 Entreprise  -&#62; #4 : Entreprise\n        Microsoft Windows 10 Professionnel  -&#62; #4 : Professionnel\n        Microsoft Windows 11 Professionnel  -&#62; #4 : Professionnel','2024-12-27 05:21:51',1,'clean_windows_os_edition',0,'2024-12-27 05:21:51'),
(90,0,'RuleDictionnaryOperatingSystemEdition',3,'Clean Windows Server OS Edition','','AND',0,'/(Microsoft)(?&#62;\\(R\\)|®)? (?:(Hyper-V|Windows)(?:\\(R\\))?) ((?:Server|))(?:\\(R\\)|®)? (\\d{4}(?: R2)?)(?:[,\\s]++)?([^\\s]*)(?: Edition(?: x64)?)?$/\n\n        Example :\n        Microsoft Windows Server 2012 R2 Datacenter -&#62; #4 : Datacenter\n        Microsoft(R) Windows(R) Server 2003, Standard Edition x64 -&#62; #4 : Standard\n        Microsoft Hyper-V Server 2012 R2 -&#62; #4 :\n        Microsoft® Windows Server® 2008 Standard -&#62; #4: Standard','2024-12-27 05:21:51',1,'clean_windows_server_os_edition',0,'2024-12-27 05:21:51');
/*!40000 ALTER TABLE `glpi_rules` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_savedsearches`
--

DROP TABLE IF EXISTS `glpi_savedsearches`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_savedsearches` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `type` int(11) NOT NULL DEFAULT 0 COMMENT 'see SavedSearch:: constants',
  `itemtype` varchar(100) NOT NULL,
  `users_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_private` tinyint(4) NOT NULL DEFAULT 1,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `query` text DEFAULT NULL,
  `last_execution_time` int(11) DEFAULT NULL,
  `do_count` tinyint(4) NOT NULL DEFAULT 2 COMMENT 'Do or do not count results on list display see SavedSearch::COUNT_* constants',
  `last_execution_date` timestamp NULL DEFAULT NULL,
  `counter` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `type` (`type`),
  KEY `itemtype` (`itemtype`),
  KEY `entities_id` (`entities_id`),
  KEY `users_id` (`users_id`),
  KEY `is_private` (`is_private`),
  KEY `is_recursive` (`is_recursive`),
  KEY `last_execution_time` (`last_execution_time`),
  KEY `last_execution_date` (`last_execution_date`),
  KEY `do_count` (`do_count`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_savedsearches`
--

LOCK TABLES `glpi_savedsearches` WRITE;
/*!40000 ALTER TABLE `glpi_savedsearches` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_savedsearches` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_savedsearches_alerts`
--

DROP TABLE IF EXISTS `glpi_savedsearches_alerts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_savedsearches_alerts` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `savedsearches_id` int(10) unsigned NOT NULL DEFAULT 0,
  `name` varchar(255) DEFAULT NULL,
  `is_active` tinyint(4) NOT NULL DEFAULT 0,
  `operator` tinyint(4) NOT NULL,
  `value` int(11) NOT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  `frequency` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`savedsearches_id`,`operator`,`value`),
  KEY `name` (`name`),
  KEY `is_active` (`is_active`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_savedsearches_alerts`
--

LOCK TABLES `glpi_savedsearches_alerts` WRITE;
/*!40000 ALTER TABLE `glpi_savedsearches_alerts` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_savedsearches_alerts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_savedsearches_users`
--

DROP TABLE IF EXISTS `glpi_savedsearches_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_savedsearches_users` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `users_id` int(10) unsigned NOT NULL DEFAULT 0,
  `itemtype` varchar(100) NOT NULL,
  `savedsearches_id` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`users_id`,`itemtype`),
  KEY `savedsearches_id` (`savedsearches_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_savedsearches_users`
--

LOCK TABLES `glpi_savedsearches_users` WRITE;
/*!40000 ALTER TABLE `glpi_savedsearches_users` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_savedsearches_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_slalevelactions`
--

DROP TABLE IF EXISTS `glpi_slalevelactions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_slalevelactions` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `slalevels_id` int(10) unsigned NOT NULL DEFAULT 0,
  `action_type` varchar(255) DEFAULT NULL,
  `field` varchar(255) DEFAULT NULL,
  `value` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `slalevels_id` (`slalevels_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_slalevelactions`
--

LOCK TABLES `glpi_slalevelactions` WRITE;
/*!40000 ALTER TABLE `glpi_slalevelactions` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_slalevelactions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_slalevelcriterias`
--

DROP TABLE IF EXISTS `glpi_slalevelcriterias`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_slalevelcriterias` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `slalevels_id` int(10) unsigned NOT NULL DEFAULT 0,
  `criteria` varchar(255) DEFAULT NULL,
  `condition` int(11) NOT NULL DEFAULT 0 COMMENT 'see define.php PATTERN_* and REGEX_* constant',
  `pattern` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `slalevels_id` (`slalevels_id`),
  KEY `condition` (`condition`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_slalevelcriterias`
--

LOCK TABLES `glpi_slalevelcriterias` WRITE;
/*!40000 ALTER TABLE `glpi_slalevelcriterias` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_slalevelcriterias` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_slalevels`
--

DROP TABLE IF EXISTS `glpi_slalevels`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_slalevels` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `slas_id` int(10) unsigned NOT NULL DEFAULT 0,
  `execution_time` int(11) NOT NULL,
  `is_active` tinyint(4) NOT NULL DEFAULT 1,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `match` char(10) DEFAULT NULL COMMENT 'see define.php *_MATCHING constant',
  `uuid` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `is_active` (`is_active`),
  KEY `slas_id` (`slas_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_slalevels`
--

LOCK TABLES `glpi_slalevels` WRITE;
/*!40000 ALTER TABLE `glpi_slalevels` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_slalevels` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_slalevels_tickets`
--

DROP TABLE IF EXISTS `glpi_slalevels_tickets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_slalevels_tickets` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `tickets_id` int(10) unsigned NOT NULL DEFAULT 0,
  `slalevels_id` int(10) unsigned NOT NULL DEFAULT 0,
  `date` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`tickets_id`,`slalevels_id`),
  KEY `slalevels_id` (`slalevels_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_slalevels_tickets`
--

LOCK TABLES `glpi_slalevels_tickets` WRITE;
/*!40000 ALTER TABLE `glpi_slalevels_tickets` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_slalevels_tickets` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_slas`
--

DROP TABLE IF EXISTS `glpi_slas`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_slas` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `type` int(11) NOT NULL DEFAULT 0,
  `comment` text DEFAULT NULL,
  `number_time` int(11) NOT NULL,
  `use_ticket_calendar` tinyint(4) NOT NULL DEFAULT 0,
  `calendars_id` int(10) unsigned NOT NULL DEFAULT 0,
  `date_mod` timestamp NULL DEFAULT NULL,
  `definition_time` varchar(255) DEFAULT NULL,
  `end_of_working_day` tinyint(4) NOT NULL DEFAULT 0,
  `date_creation` timestamp NULL DEFAULT NULL,
  `slms_id` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`),
  KEY `calendars_id` (`calendars_id`),
  KEY `slms_id` (`slms_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_slas`
--

LOCK TABLES `glpi_slas` WRITE;
/*!40000 ALTER TABLE `glpi_slas` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_slas` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_slms`
--

DROP TABLE IF EXISTS `glpi_slms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_slms` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `comment` text DEFAULT NULL,
  `use_ticket_calendar` tinyint(4) NOT NULL DEFAULT 0,
  `calendars_id` int(10) unsigned NOT NULL DEFAULT 0,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `calendars_id` (`calendars_id`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_slms`
--

LOCK TABLES `glpi_slms` WRITE;
/*!40000 ALTER TABLE `glpi_slms` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_slms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_snmpcredentials`
--

DROP TABLE IF EXISTS `glpi_snmpcredentials`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_snmpcredentials` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(64) DEFAULT NULL,
  `snmpversion` varchar(8) NOT NULL DEFAULT '1',
  `community` varchar(255) DEFAULT NULL,
  `username` varchar(255) DEFAULT NULL,
  `authentication` varchar(255) DEFAULT NULL,
  `auth_passphrase` varchar(255) DEFAULT NULL,
  `encryption` varchar(255) DEFAULT NULL,
  `priv_passphrase` varchar(255) DEFAULT NULL,
  `is_deleted` tinyint(4) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `snmpversion` (`snmpversion`),
  KEY `is_deleted` (`is_deleted`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_snmpcredentials`
--

LOCK TABLES `glpi_snmpcredentials` WRITE;
/*!40000 ALTER TABLE `glpi_snmpcredentials` DISABLE KEYS */;
INSERT INTO `glpi_snmpcredentials` VALUES
(1,'Public community v1','1','public',NULL,NULL,NULL,NULL,NULL,0),
(2,'Public community v2c','2','public',NULL,NULL,NULL,NULL,NULL,0);
/*!40000 ALTER TABLE `glpi_snmpcredentials` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_socketmodels`
--

DROP TABLE IF EXISTS `glpi_socketmodels`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_socketmodels` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_socketmodels`
--

LOCK TABLES `glpi_socketmodels` WRITE;
/*!40000 ALTER TABLE `glpi_socketmodels` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_socketmodels` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_sockets`
--

DROP TABLE IF EXISTS `glpi_sockets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_sockets` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `position` int(11) NOT NULL DEFAULT 0,
  `locations_id` int(10) unsigned NOT NULL DEFAULT 0,
  `name` varchar(255) DEFAULT NULL,
  `socketmodels_id` int(10) unsigned NOT NULL DEFAULT 0,
  `wiring_side` tinyint(4) DEFAULT 1,
  `itemtype` varchar(255) DEFAULT NULL,
  `items_id` int(10) unsigned NOT NULL DEFAULT 0,
  `networkports_id` int(10) unsigned NOT NULL DEFAULT 0,
  `comment` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `socketmodels_id` (`socketmodels_id`),
  KEY `location_name` (`locations_id`,`name`),
  KEY `item` (`itemtype`,`items_id`),
  KEY `networkports_id` (`networkports_id`),
  KEY `wiring_side` (`wiring_side`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_sockets`
--

LOCK TABLES `glpi_sockets` WRITE;
/*!40000 ALTER TABLE `glpi_sockets` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_sockets` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_softwarecategories`
--

DROP TABLE IF EXISTS `glpi_softwarecategories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_softwarecategories` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `softwarecategories_id` int(10) unsigned NOT NULL DEFAULT 0,
  `completename` text DEFAULT NULL,
  `level` int(11) NOT NULL DEFAULT 0,
  `ancestors_cache` longtext DEFAULT NULL,
  `sons_cache` longtext DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `softwarecategories_id` (`softwarecategories_id`),
  KEY `level` (`level`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_softwarecategories`
--

LOCK TABLES `glpi_softwarecategories` WRITE;
/*!40000 ALTER TABLE `glpi_softwarecategories` DISABLE KEYS */;
INSERT INTO `glpi_softwarecategories` VALUES
(1,'Inventoried',NULL,0,'Software from inventories',1,NULL,NULL);
/*!40000 ALTER TABLE `glpi_softwarecategories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_softwarelicenses`
--

DROP TABLE IF EXISTS `glpi_softwarelicenses`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_softwarelicenses` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `softwares_id` int(10) unsigned NOT NULL DEFAULT 0,
  `softwarelicenses_id` int(10) unsigned NOT NULL DEFAULT 0,
  `completename` text DEFAULT NULL,
  `level` int(11) NOT NULL DEFAULT 0,
  `ancestors_cache` longtext DEFAULT NULL,
  `sons_cache` longtext DEFAULT NULL,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `number` int(11) NOT NULL DEFAULT 0,
  `softwarelicensetypes_id` int(10) unsigned NOT NULL DEFAULT 0,
  `name` varchar(255) DEFAULT NULL,
  `serial` varchar(255) DEFAULT NULL,
  `otherserial` varchar(255) DEFAULT NULL,
  `softwareversions_id_buy` int(10) unsigned NOT NULL DEFAULT 0,
  `softwareversions_id_use` int(10) unsigned NOT NULL DEFAULT 0,
  `expire` date DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `is_valid` tinyint(4) NOT NULL DEFAULT 1,
  `date_creation` timestamp NULL DEFAULT NULL,
  `is_deleted` tinyint(4) NOT NULL DEFAULT 0,
  `locations_id` int(10) unsigned NOT NULL DEFAULT 0,
  `users_id_tech` int(10) unsigned NOT NULL DEFAULT 0,
  `users_id` int(10) unsigned NOT NULL DEFAULT 0,
  `groups_id_tech` int(10) unsigned NOT NULL DEFAULT 0,
  `groups_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_helpdesk_visible` tinyint(4) NOT NULL DEFAULT 0,
  `is_template` tinyint(4) NOT NULL DEFAULT 0,
  `template_name` varchar(255) DEFAULT NULL,
  `states_id` int(10) unsigned NOT NULL DEFAULT 0,
  `manufacturers_id` int(10) unsigned NOT NULL DEFAULT 0,
  `contact` varchar(255) DEFAULT NULL,
  `contact_num` varchar(255) DEFAULT NULL,
  `allow_overquota` tinyint(4) NOT NULL DEFAULT 0,
  `pictures` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `is_template` (`is_template`),
  KEY `serial` (`serial`),
  KEY `otherserial` (`otherserial`),
  KEY `expire` (`expire`),
  KEY `softwareversions_id_buy` (`softwareversions_id_buy`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `softwarelicensetypes_id` (`softwarelicensetypes_id`),
  KEY `softwareversions_id_use` (`softwareversions_id_use`),
  KEY `date_mod` (`date_mod`),
  KEY `softwares_id_expire_number` (`softwares_id`,`expire`,`number`),
  KEY `locations_id` (`locations_id`),
  KEY `users_id_tech` (`users_id_tech`),
  KEY `users_id` (`users_id`),
  KEY `groups_id_tech` (`groups_id_tech`),
  KEY `groups_id` (`groups_id`),
  KEY `is_helpdesk_visible` (`is_helpdesk_visible`),
  KEY `is_deleted` (`is_deleted`),
  KEY `date_creation` (`date_creation`),
  KEY `manufacturers_id` (`manufacturers_id`),
  KEY `states_id` (`states_id`),
  KEY `allow_overquota` (`allow_overquota`),
  KEY `softwarelicenses_id` (`softwarelicenses_id`),
  KEY `level` (`level`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_softwarelicenses`
--

LOCK TABLES `glpi_softwarelicenses` WRITE;
/*!40000 ALTER TABLE `glpi_softwarelicenses` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_softwarelicenses` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_softwarelicensetypes`
--

DROP TABLE IF EXISTS `glpi_softwarelicensetypes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_softwarelicensetypes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  `softwarelicensetypes_id` int(10) unsigned NOT NULL DEFAULT 0,
  `level` int(11) NOT NULL DEFAULT 0,
  `ancestors_cache` longtext DEFAULT NULL,
  `sons_cache` longtext DEFAULT NULL,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `completename` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`),
  KEY `softwarelicensetypes_id` (`softwarelicensetypes_id`),
  KEY `level` (`level`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_softwarelicensetypes`
--

LOCK TABLES `glpi_softwarelicensetypes` WRITE;
/*!40000 ALTER TABLE `glpi_softwarelicensetypes` DISABLE KEYS */;
INSERT INTO `glpi_softwarelicensetypes` VALUES
(1,'OEM',NULL,NULL,NULL,0,0,NULL,NULL,0,1,'OEM');
/*!40000 ALTER TABLE `glpi_softwarelicensetypes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_softwares`
--

DROP TABLE IF EXISTS `glpi_softwares`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_softwares` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `locations_id` int(10) unsigned NOT NULL DEFAULT 0,
  `users_id_tech` int(10) unsigned NOT NULL DEFAULT 0,
  `groups_id_tech` int(10) unsigned NOT NULL DEFAULT 0,
  `is_update` tinyint(4) NOT NULL DEFAULT 0,
  `softwares_id` int(10) unsigned NOT NULL DEFAULT 0,
  `manufacturers_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_deleted` tinyint(4) NOT NULL DEFAULT 0,
  `is_template` tinyint(4) NOT NULL DEFAULT 0,
  `template_name` varchar(255) DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `users_id` int(10) unsigned NOT NULL DEFAULT 0,
  `groups_id` int(10) unsigned NOT NULL DEFAULT 0,
  `ticket_tco` decimal(20,4) DEFAULT 0.0000,
  `is_helpdesk_visible` tinyint(4) NOT NULL DEFAULT 1,
  `softwarecategories_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_valid` tinyint(4) NOT NULL DEFAULT 1,
  `date_creation` timestamp NULL DEFAULT NULL,
  `pictures` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `date_mod` (`date_mod`),
  KEY `name` (`name`),
  KEY `is_template` (`is_template`),
  KEY `is_update` (`is_update`),
  KEY `softwarecategories_id` (`softwarecategories_id`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `manufacturers_id` (`manufacturers_id`),
  KEY `groups_id` (`groups_id`),
  KEY `users_id` (`users_id`),
  KEY `locations_id` (`locations_id`),
  KEY `users_id_tech` (`users_id_tech`),
  KEY `softwares_id` (`softwares_id`),
  KEY `is_deleted` (`is_deleted`),
  KEY `is_helpdesk_visible` (`is_helpdesk_visible`),
  KEY `groups_id_tech` (`groups_id_tech`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_softwares`
--

LOCK TABLES `glpi_softwares` WRITE;
/*!40000 ALTER TABLE `glpi_softwares` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_softwares` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_softwareversions`
--

DROP TABLE IF EXISTS `glpi_softwareversions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_softwareversions` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `softwares_id` int(10) unsigned NOT NULL DEFAULT 0,
  `states_id` int(10) unsigned NOT NULL DEFAULT 0,
  `name` varchar(255) DEFAULT NULL,
  `arch` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `operatingsystems_id` int(10) unsigned NOT NULL DEFAULT 0,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `arch` (`arch`),
  KEY `softwares_id` (`softwares_id`),
  KEY `states_id` (`states_id`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `operatingsystems_id` (`operatingsystems_id`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_softwareversions`
--

LOCK TABLES `glpi_softwareversions` WRITE;
/*!40000 ALTER TABLE `glpi_softwareversions` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_softwareversions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_solutiontemplates`
--

DROP TABLE IF EXISTS `glpi_solutiontemplates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_solutiontemplates` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `name` varchar(255) DEFAULT NULL,
  `content` mediumtext DEFAULT NULL,
  `solutiontypes_id` int(10) unsigned NOT NULL DEFAULT 0,
  `comment` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `is_recursive` (`is_recursive`),
  KEY `solutiontypes_id` (`solutiontypes_id`),
  KEY `entities_id` (`entities_id`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_solutiontemplates`
--

LOCK TABLES `glpi_solutiontemplates` WRITE;
/*!40000 ALTER TABLE `glpi_solutiontemplates` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_solutiontemplates` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_solutiontypes`
--

DROP TABLE IF EXISTS `glpi_solutiontypes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_solutiontypes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 1,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_solutiontypes`
--

LOCK TABLES `glpi_solutiontypes` WRITE;
/*!40000 ALTER TABLE `glpi_solutiontypes` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_solutiontypes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_ssovariables`
--

DROP TABLE IF EXISTS `glpi_ssovariables`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_ssovariables` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_ssovariables`
--

LOCK TABLES `glpi_ssovariables` WRITE;
/*!40000 ALTER TABLE `glpi_ssovariables` DISABLE KEYS */;
INSERT INTO `glpi_ssovariables` VALUES
(1,'HTTP_AUTH_USER',NULL,NULL,NULL),
(2,'REMOTE_USER',NULL,NULL,NULL),
(3,'PHP_AUTH_USER',NULL,NULL,NULL),
(4,'USERNAME',NULL,NULL,NULL),
(5,'REDIRECT_REMOTE_USER',NULL,NULL,NULL),
(6,'HTTP_REMOTE_USER',NULL,NULL,NULL);
/*!40000 ALTER TABLE `glpi_ssovariables` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_states`
--

DROP TABLE IF EXISTS `glpi_states`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_states` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `comment` text DEFAULT NULL,
  `states_id` int(10) unsigned NOT NULL DEFAULT 0,
  `completename` text DEFAULT NULL,
  `level` int(11) NOT NULL DEFAULT 0,
  `ancestors_cache` longtext DEFAULT NULL,
  `sons_cache` longtext DEFAULT NULL,
  `is_visible_computer` tinyint(4) NOT NULL DEFAULT 1,
  `is_visible_monitor` tinyint(4) NOT NULL DEFAULT 1,
  `is_visible_networkequipment` tinyint(4) NOT NULL DEFAULT 1,
  `is_visible_peripheral` tinyint(4) NOT NULL DEFAULT 1,
  `is_visible_phone` tinyint(4) NOT NULL DEFAULT 1,
  `is_visible_printer` tinyint(4) NOT NULL DEFAULT 1,
  `is_visible_softwareversion` tinyint(4) NOT NULL DEFAULT 1,
  `is_visible_softwarelicense` tinyint(4) NOT NULL DEFAULT 1,
  `is_visible_line` tinyint(4) NOT NULL DEFAULT 1,
  `is_visible_certificate` tinyint(4) NOT NULL DEFAULT 1,
  `is_visible_rack` tinyint(4) NOT NULL DEFAULT 1,
  `is_visible_passivedcequipment` tinyint(4) NOT NULL DEFAULT 1,
  `is_visible_enclosure` tinyint(4) NOT NULL DEFAULT 1,
  `is_visible_pdu` tinyint(4) NOT NULL DEFAULT 1,
  `is_visible_cluster` tinyint(4) NOT NULL DEFAULT 1,
  `is_visible_contract` tinyint(4) NOT NULL DEFAULT 1,
  `is_visible_appliance` tinyint(4) NOT NULL DEFAULT 1,
  `is_visible_databaseinstance` tinyint(4) NOT NULL DEFAULT 1,
  `is_visible_cable` tinyint(4) NOT NULL DEFAULT 1,
  `is_visible_unmanaged` tinyint(4) NOT NULL DEFAULT 1,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`states_id`,`name`),
  KEY `name` (`name`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `is_visible_computer` (`is_visible_computer`),
  KEY `is_visible_monitor` (`is_visible_monitor`),
  KEY `is_visible_networkequipment` (`is_visible_networkequipment`),
  KEY `is_visible_peripheral` (`is_visible_peripheral`),
  KEY `is_visible_phone` (`is_visible_phone`),
  KEY `is_visible_printer` (`is_visible_printer`),
  KEY `is_visible_softwareversion` (`is_visible_softwareversion`),
  KEY `is_visible_softwarelicense` (`is_visible_softwarelicense`),
  KEY `is_visible_line` (`is_visible_line`),
  KEY `is_visible_certificate` (`is_visible_certificate`),
  KEY `is_visible_rack` (`is_visible_rack`),
  KEY `is_visible_passivedcequipment` (`is_visible_passivedcequipment`),
  KEY `is_visible_enclosure` (`is_visible_enclosure`),
  KEY `is_visible_pdu` (`is_visible_pdu`),
  KEY `is_visible_cluster` (`is_visible_cluster`),
  KEY `is_visible_contract` (`is_visible_contract`),
  KEY `is_visible_appliance` (`is_visible_appliance`),
  KEY `is_visible_databaseinstance` (`is_visible_databaseinstance`),
  KEY `is_visible_cable` (`is_visible_cable`),
  KEY `is_visible_unmanaged` (`is_visible_unmanaged`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`),
  KEY `level` (`level`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_states`
--

LOCK TABLES `glpi_states` WRITE;
/*!40000 ALTER TABLE `glpi_states` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_states` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_suppliers`
--

DROP TABLE IF EXISTS `glpi_suppliers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_suppliers` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `name` varchar(255) DEFAULT NULL,
  `suppliertypes_id` int(10) unsigned NOT NULL DEFAULT 0,
  `registration_number` varchar(255) DEFAULT NULL,
  `address` text DEFAULT NULL,
  `postcode` varchar(255) DEFAULT NULL,
  `town` varchar(255) DEFAULT NULL,
  `state` varchar(255) DEFAULT NULL,
  `country` varchar(255) DEFAULT NULL,
  `website` varchar(255) DEFAULT NULL,
  `phonenumber` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `is_deleted` tinyint(4) NOT NULL DEFAULT 0,
  `fax` varchar(255) DEFAULT NULL,
  `email` varchar(255) DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  `is_active` tinyint(4) NOT NULL DEFAULT 0,
  `pictures` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `suppliertypes_id` (`suppliertypes_id`),
  KEY `is_deleted` (`is_deleted`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`),
  KEY `is_active` (`is_active`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_suppliers`
--

LOCK TABLES `glpi_suppliers` WRITE;
/*!40000 ALTER TABLE `glpi_suppliers` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_suppliers` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_suppliers_tickets`
--

DROP TABLE IF EXISTS `glpi_suppliers_tickets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_suppliers_tickets` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `tickets_id` int(10) unsigned NOT NULL DEFAULT 0,
  `suppliers_id` int(10) unsigned NOT NULL DEFAULT 0,
  `type` int(11) NOT NULL DEFAULT 1,
  `use_notification` tinyint(4) NOT NULL DEFAULT 1,
  `alternative_email` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`tickets_id`,`type`,`suppliers_id`),
  KEY `group` (`suppliers_id`,`type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_suppliers_tickets`
--

LOCK TABLES `glpi_suppliers_tickets` WRITE;
/*!40000 ALTER TABLE `glpi_suppliers_tickets` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_suppliers_tickets` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_suppliertypes`
--

DROP TABLE IF EXISTS `glpi_suppliertypes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_suppliertypes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_suppliertypes`
--

LOCK TABLES `glpi_suppliertypes` WRITE;
/*!40000 ALTER TABLE `glpi_suppliertypes` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_suppliertypes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_taskcategories`
--

DROP TABLE IF EXISTS `glpi_taskcategories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_taskcategories` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `taskcategories_id` int(10) unsigned NOT NULL DEFAULT 0,
  `name` varchar(255) DEFAULT NULL,
  `completename` text DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `level` int(11) NOT NULL DEFAULT 0,
  `ancestors_cache` longtext DEFAULT NULL,
  `sons_cache` longtext DEFAULT NULL,
  `is_active` tinyint(4) NOT NULL DEFAULT 1,
  `is_helpdeskvisible` tinyint(4) NOT NULL DEFAULT 1,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  `knowbaseitemcategories_id` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `taskcategories_id` (`taskcategories_id`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `is_active` (`is_active`),
  KEY `is_helpdeskvisible` (`is_helpdeskvisible`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`),
  KEY `knowbaseitemcategories_id` (`knowbaseitemcategories_id`),
  KEY `level` (`level`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_taskcategories`
--

LOCK TABLES `glpi_taskcategories` WRITE;
/*!40000 ALTER TABLE `glpi_taskcategories` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_taskcategories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_tasktemplates`
--

DROP TABLE IF EXISTS `glpi_tasktemplates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_tasktemplates` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `name` varchar(255) DEFAULT NULL,
  `content` mediumtext DEFAULT NULL,
  `taskcategories_id` int(10) unsigned NOT NULL DEFAULT 0,
  `actiontime` int(11) NOT NULL DEFAULT 0,
  `comment` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  `state` int(11) NOT NULL DEFAULT 0,
  `is_private` tinyint(4) NOT NULL DEFAULT 0,
  `users_id_tech` int(10) unsigned NOT NULL DEFAULT 0,
  `groups_id_tech` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `is_recursive` (`is_recursive`),
  KEY `taskcategories_id` (`taskcategories_id`),
  KEY `entities_id` (`entities_id`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`),
  KEY `is_private` (`is_private`),
  KEY `users_id_tech` (`users_id_tech`),
  KEY `groups_id_tech` (`groups_id_tech`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_tasktemplates`
--

LOCK TABLES `glpi_tasktemplates` WRITE;
/*!40000 ALTER TABLE `glpi_tasktemplates` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_tasktemplates` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_ticketcosts`
--

DROP TABLE IF EXISTS `glpi_ticketcosts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_ticketcosts` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `tickets_id` int(10) unsigned NOT NULL DEFAULT 0,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `begin_date` date DEFAULT NULL,
  `end_date` date DEFAULT NULL,
  `actiontime` int(11) NOT NULL DEFAULT 0,
  `cost_time` decimal(20,4) NOT NULL DEFAULT 0.0000,
  `cost_fixed` decimal(20,4) NOT NULL DEFAULT 0.0000,
  `cost_material` decimal(20,4) NOT NULL DEFAULT 0.0000,
  `budgets_id` int(10) unsigned NOT NULL DEFAULT 0,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `tickets_id` (`tickets_id`),
  KEY `begin_date` (`begin_date`),
  KEY `end_date` (`end_date`),
  KEY `entities_id` (`entities_id`),
  KEY `budgets_id` (`budgets_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_ticketcosts`
--

LOCK TABLES `glpi_ticketcosts` WRITE;
/*!40000 ALTER TABLE `glpi_ticketcosts` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_ticketcosts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_ticketrecurrents`
--

DROP TABLE IF EXISTS `glpi_ticketrecurrents`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_ticketrecurrents` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `is_active` tinyint(4) NOT NULL DEFAULT 0,
  `tickettemplates_id` int(10) unsigned NOT NULL DEFAULT 0,
  `begin_date` timestamp NULL DEFAULT NULL,
  `periodicity` varchar(255) DEFAULT NULL,
  `create_before` int(11) NOT NULL DEFAULT 0,
  `next_creation_date` timestamp NULL DEFAULT NULL,
  `calendars_id` int(10) unsigned NOT NULL DEFAULT 0,
  `end_date` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `is_active` (`is_active`),
  KEY `tickettemplates_id` (`tickettemplates_id`),
  KEY `next_creation_date` (`next_creation_date`),
  KEY `calendars_id` (`calendars_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_ticketrecurrents`
--

LOCK TABLES `glpi_ticketrecurrents` WRITE;
/*!40000 ALTER TABLE `glpi_ticketrecurrents` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_ticketrecurrents` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_tickets`
--

DROP TABLE IF EXISTS `glpi_tickets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_tickets` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `name` varchar(255) DEFAULT NULL,
  `date` timestamp NULL DEFAULT NULL,
  `closedate` timestamp NULL DEFAULT NULL,
  `solvedate` timestamp NULL DEFAULT NULL,
  `takeintoaccountdate` timestamp NULL DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `users_id_lastupdater` int(10) unsigned NOT NULL DEFAULT 0,
  `status` int(11) NOT NULL DEFAULT 1,
  `users_id_recipient` int(10) unsigned NOT NULL DEFAULT 0,
  `requesttypes_id` int(10) unsigned NOT NULL DEFAULT 0,
  `content` longtext DEFAULT NULL,
  `urgency` int(11) NOT NULL DEFAULT 1,
  `impact` int(11) NOT NULL DEFAULT 1,
  `priority` int(11) NOT NULL DEFAULT 1,
  `itilcategories_id` int(10) unsigned NOT NULL DEFAULT 0,
  `type` int(11) NOT NULL DEFAULT 1,
  `global_validation` int(11) NOT NULL DEFAULT 1,
  `slas_id_ttr` int(10) unsigned NOT NULL DEFAULT 0,
  `slas_id_tto` int(10) unsigned NOT NULL DEFAULT 0,
  `slalevels_id_ttr` int(10) unsigned NOT NULL DEFAULT 0,
  `time_to_resolve` timestamp NULL DEFAULT NULL,
  `time_to_own` timestamp NULL DEFAULT NULL,
  `begin_waiting_date` timestamp NULL DEFAULT NULL,
  `sla_waiting_duration` int(11) NOT NULL DEFAULT 0,
  `ola_waiting_duration` int(11) NOT NULL DEFAULT 0,
  `olas_id_tto` int(10) unsigned NOT NULL DEFAULT 0,
  `olas_id_ttr` int(10) unsigned NOT NULL DEFAULT 0,
  `olalevels_id_ttr` int(10) unsigned NOT NULL DEFAULT 0,
  `ola_tto_begin_date` timestamp NULL DEFAULT NULL,
  `ola_ttr_begin_date` timestamp NULL DEFAULT NULL,
  `internal_time_to_resolve` timestamp NULL DEFAULT NULL,
  `internal_time_to_own` timestamp NULL DEFAULT NULL,
  `waiting_duration` int(11) NOT NULL DEFAULT 0,
  `close_delay_stat` int(11) NOT NULL DEFAULT 0,
  `solve_delay_stat` int(11) NOT NULL DEFAULT 0,
  `takeintoaccount_delay_stat` int(11) NOT NULL DEFAULT 0,
  `actiontime` int(11) NOT NULL DEFAULT 0,
  `is_deleted` tinyint(4) NOT NULL DEFAULT 0,
  `locations_id` int(10) unsigned NOT NULL DEFAULT 0,
  `validation_percent` int(11) NOT NULL DEFAULT 0,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `date` (`date`),
  KEY `closedate` (`closedate`),
  KEY `status` (`status`),
  KEY `priority` (`priority`),
  KEY `request_type` (`requesttypes_id`),
  KEY `date_mod` (`date_mod`),
  KEY `entities_id` (`entities_id`),
  KEY `users_id_recipient` (`users_id_recipient`),
  KEY `solvedate` (`solvedate`),
  KEY `takeintoaccountdate` (`takeintoaccountdate`),
  KEY `urgency` (`urgency`),
  KEY `impact` (`impact`),
  KEY `global_validation` (`global_validation`),
  KEY `slas_id_tto` (`slas_id_tto`),
  KEY `slas_id_ttr` (`slas_id_ttr`),
  KEY `time_to_resolve` (`time_to_resolve`),
  KEY `time_to_own` (`time_to_own`),
  KEY `olas_id_tto` (`olas_id_tto`),
  KEY `olas_id_ttr` (`olas_id_ttr`),
  KEY `slalevels_id_ttr` (`slalevels_id_ttr`),
  KEY `internal_time_to_resolve` (`internal_time_to_resolve`),
  KEY `internal_time_to_own` (`internal_time_to_own`),
  KEY `users_id_lastupdater` (`users_id_lastupdater`),
  KEY `type` (`type`),
  KEY `itilcategories_id` (`itilcategories_id`),
  KEY `is_deleted` (`is_deleted`),
  KEY `name` (`name`),
  KEY `locations_id` (`locations_id`),
  KEY `date_creation` (`date_creation`),
  KEY `ola_waiting_duration` (`ola_waiting_duration`),
  KEY `olalevels_id_ttr` (`olalevels_id_ttr`)
) ENGINE=InnoDB AUTO_INCREMENT=93 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_tickets`
--

LOCK TABLES `glpi_tickets` WRITE;
/*!40000 ALTER TABLE `glpi_tickets` DISABLE KEYS */;
INSERT INTO `glpi_tickets` VALUES
(17,2,'Sem internet ','2025-01-07 13:39:34','2025-01-08 12:28:46','2025-01-08 12:28:46','2025-01-07 13:48:56','2025-01-08 12:28:46',8,6,9,1,'&#60;p&#62;Telefone: &#60;a href=\"tel:84999811377\"&#62;84999811377&#60;/a&#62;&#60;/p&#62;\n&#60;p&#62;E-mail: Denílson.marques@tecnomtuli.com&#60;/p&#62;',3,3,3,2,1,1,0,0,0,NULL,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,0,82152,82152,562,0,0,0,0,'2025-01-07 13:39:34'),
(18,2,'Não envio de e-mail','2025-01-07 13:56:33','2025-01-07 13:58:07','2025-01-07 13:58:07','2025-01-07 13:57:45','2025-01-07 13:58:07',8,6,9,1,'&#60;p&#62;Telefone: 8199405-5418&#60;/p&#62;\n&#60;p&#62;E-mail: palloma.ferreira@tecnomulti.com&#60;/p&#62;\n&#60;p&#62;&#60;strong&#62;E-mail não esta enviando e-mails&#60;/strong&#62;&#60;/p&#62;',3,3,3,3,1,1,0,0,0,NULL,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,0,94,94,72,0,0,0,0,'2025-01-07 13:56:33'),
(19,2,'email tecnomulti ','2025-01-08 09:38:38','2025-01-10 00:56:50','2025-01-08 20:15:05','2025-01-08 12:22:46','2025-01-10 00:56:50',8,6,9,1,'&#60;p&#62;Telefone: 81 992936741&#60;/p&#62;\n&#60;p&#62;E-mail:fabiano.melo@tecnomulti.com&#60;/p&#62;\n&#60;p&#62;gostaria de colocar o email da empresa em telefone IOS &#60;/p&#62;',3,3,3,3,2,1,0,0,0,NULL,NULL,'2025-01-08 20:15:05',0,0,0,0,0,NULL,NULL,NULL,NULL,0,141492,38187,9848,0,0,0,0,'2025-01-08 09:38:38'),
(20,2,'ERRO PARA ACESSAR O SAP','2025-01-08 13:21:24','2025-01-08 13:36:39','2025-01-08 13:36:39','2025-01-08 13:26:44','2025-01-08 13:36:39',8,6,9,1,'&#60;p&#62;Telefone: 83 99907-5161&#60;/p&#62;\n&#60;p&#62;E-mail: lucia.gomes@tecnomulti.com&#60;/p&#62;',3,3,3,2,1,1,0,0,0,NULL,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,0,915,915,320,0,0,0,0,'2025-01-08 13:21:24'),
(21,2,'Instalação de office 2022','2025-01-08 16:36:37','2025-01-08 20:42:50','2025-01-08 20:42:50','2025-01-08 20:03:48','2025-01-08 20:42:50',8,6,9,1,'&#60;p&#62;Telefone: 85 992080037&#60;/p&#62;\n&#60;p&#62;E-mail: aurelio.matos.for@gmail.com&#60;/p&#62;\n&#60;p&#62;Instalação de office 2022&#60;/p&#62;',3,3,3,5,1,1,0,0,0,NULL,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,0,14773,14773,12431,0,0,0,0,'2025-01-08 16:36:37'),
(22,2,'Instalação Microsoft 365','2025-01-09 17:57:23','2025-01-10 00:55:36','2025-01-10 00:55:36','2025-01-09 23:59:55','2025-01-10 00:55:36',8,6,9,1,'&#60;p&#62;Telefone: 84999460230&#60;/p&#62;\n&#60;p&#62;E-mail: gilmar.lourenco@tecnomulti.com&#60;/p&#62;',3,3,3,5,2,1,0,0,0,NULL,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,0,25093,25093,21752,0,0,0,0,'2025-01-09 17:57:23'),
(23,2,'Caixa de Email Lotada','2025-01-09 18:02:47','2025-01-13 11:40:41','2025-01-13 11:40:41','2025-01-10 01:00:23','2025-01-13 11:40:41',8,6,9,1,'&#60;p&#62;Telefone: 84 991046460&#60;/p&#62;\n&#60;p&#62;E-mail: vinicius.silveira@tecnomulti.com&#60;/p&#62;',3,3,3,3,2,1,0,0,0,NULL,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,38101,284573,284573,25056,0,0,0,0,'2025-01-09 18:02:47'),
(24,2,'VPN ','2025-01-10 16:41:54','2025-01-14 15:38:26','2025-01-14 15:38:26','2025-01-13 11:37:26','2025-01-14 15:38:26',8,6,9,1,'&#60;p&#62;Ola, gostaria de solicitar com prioridade a instalação da VPN no meu notebook para que possa utilizar Fora da Rede da Empresa. &#60;/p&#62;',3,3,3,2,2,1,0,0,0,NULL,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,100849,240943,240943,240932,0,0,0,0,'2025-01-10 16:41:54'),
(25,2,'VPN','2025-01-10 16:45:39','2025-01-14 15:39:01','2025-01-14 15:39:01','2025-01-13 11:38:17','2025-01-14 15:39:01',8,6,9,1,'&#60;p&#62;Ola, gostaria de solicitar com prioridade a instalação da VPN no meu notebook para que possa utilizar Fora da Rede da Empresa.&#60;/p&#62;',3,3,3,2,2,1,0,0,0,NULL,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,100834,240768,240768,240758,0,0,0,0,'2025-01-10 16:45:39'),
(26,2,'VPN','2025-01-10 16:45:54','2025-01-14 15:39:17','2025-01-14 15:39:17','2025-01-13 11:39:55','2025-01-14 15:39:17',8,6,9,1,'&#60;p&#62;Ola, gostaria de solicitar com prioridade a instalação da VPN no meu notebook para que possa utilizar Fora da Rede da Empresa.&#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;',3,3,3,2,2,1,0,0,0,NULL,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,100757,240846,240846,240841,0,0,0,0,'2025-01-10 16:45:54'),
(27,2,'VPN','2025-01-10 16:46:13','2025-01-14 15:38:44','2025-01-14 15:38:44','2025-01-13 11:39:16','2025-01-14 15:38:44',8,6,9,1,'&#60;p&#62;Ola, gostaria de solicitar com prioridade a instalação da VPN no meu notebook para que possa utilizar Fora da Rede da Empresa.&#60;/p&#62;',3,3,3,2,1,1,0,0,0,NULL,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,100704,240847,240847,240783,0,0,0,0,'2025-01-10 16:46:13'),
(28,2,'Barra de pesquisa','2025-01-13 12:35:41','2025-01-13 13:43:05','2025-01-13 13:43:05','2025-01-13 12:37:33','2025-01-13 13:43:05',8,6,9,1,'&#60;p&#62;Telefone:84 8831-7787&#60;/p&#62;\n&#60;p&#62;E-mail:flavia.chagas@tecnomulti.com&#60;/p&#62;',3,3,3,5,1,1,0,0,0,NULL,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,0,4044,4044,112,0,0,0,0,'2025-01-13 12:35:41'),
(29,2,'JAVA BLOQUEADO','2025-01-13 12:51:07','2025-01-13 13:31:06','2025-01-13 13:31:06','2025-01-13 12:56:24','2025-01-13 13:31:06',8,6,9,1,'&#60;p&#62;Telefone: 84 991172132&#60;/p&#62;\n&#60;p&#62;E-mail: kivia.kevelen@tecnomulti.com&#60;/p&#62;',3,3,3,5,1,1,0,0,0,NULL,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,0,2399,2399,317,0,0,0,0,'2025-01-13 12:51:07'),
(30,2,'VPN','2025-01-14 14:18:23','2025-01-14 19:35:24','2025-01-14 19:35:24','2025-01-14 15:33:04','2025-01-14 19:35:24',8,6,9,1,'&#60;p&#62;Telefone:  81 9402-7371&#60;/p&#62;\n&#60;p&#62;E-mail: larissa.lorena@tecnomulti.com&#60;/p&#62;',3,3,3,5,1,1,0,0,0,NULL,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,0,19021,19021,4481,0,0,0,0,'2025-01-14 14:18:23'),
(31,2,'VPN','2025-01-14 18:57:19','2025-01-28 14:40:30','2025-01-28 14:40:30','2025-01-14 19:58:44','2025-01-28 14:40:30',10,6,9,1,'&#60;p&#62;Telefone:81 992936741&#60;/p&#62;\n&#60;p&#62;E-mail: fabiano.melo@tecnomulti.com&#60;/p&#62;\n&#60;p&#62;boa tarde ! solicito por favor a VPN para acompanhar os testes da minha equipe &#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;\n&#60;p&#62;favor assim que possivel Grato &#60;/p&#62;',3,3,3,2,2,1,0,0,0,NULL,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,1190353,3838,3838,3685,0,0,0,0,'2025-01-14 18:57:19'),
(32,2,'AUTOCAD, KMZ','2025-01-14 19:40:44','2025-01-20 13:31:02','2025-01-20 13:31:02','2025-01-14 20:07:08','2025-01-20 13:31:02',8,6,9,1,'&#60;p&#62;Telefone: 84 987602692&#60;/p&#62;\n&#60;p&#62;E-mail: lucas.willams@tecnomulti.com&#60;/p&#62;',3,3,3,5,1,1,0,0,0,NULL,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,262350,233868,233868,1584,0,0,0,0,'2025-01-14 19:40:44'),
(36,2,'MEMORIA CHEIA','2025-01-15 19:02:56','2025-01-17 12:03:35','2025-01-17 12:03:35','2025-01-17 12:03:23','2025-01-17 12:03:35',8,6,9,1,'&#60;p&#62;Telefone: 81 8695-4083&#60;/p&#62;\n&#60;p&#62;E-mail: jose.carmo@tecnomulti.com&#60;/p&#62;',3,3,3,2,1,1,0,0,0,NULL,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,0,147639,147639,147627,0,0,0,0,'2025-01-15 19:02:56'),
(43,2,'Lentidão jose.carmo@tecnomulti.com','2025-01-16 10:59:30','2025-01-17 12:02:32','2025-01-16 13:21:59','2025-01-16 12:47:46','2025-01-17 12:02:32',8,6,9,7,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Lentidão&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;jose.carmo@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 8695-4083&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;O notebook não está abrindo mais de 2 &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',3,3,3,1,1,1,0,0,0,NULL,NULL,'2025-01-16 13:21:59',0,0,0,0,0,NULL,NULL,NULL,NULL,0,90182,8549,6496,0,0,0,0,'2025-01-16 10:59:30'),
(44,2,'Problema no email. jayana.monte@tecnomulti.com','2025-01-17 14:47:06','2025-01-20 11:47:29','2025-01-20 11:47:29','2025-01-17 17:57:43','2025-01-20 11:47:29',8,6,9,7,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Problema no email.&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;jayana.monte@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81996609102&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Recebi um email falando sobre a conta de email está cheia, porém não tem muita coisa no email.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',3,3,3,3,1,1,0,0,0,NULL,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,0,248423,248423,11437,0,0,0,0,'2025-01-17 14:47:06'),
(45,2,'Eu já desinstalei o aplicativo da impressora e já instalei novamente e a impressora não conecta karla.minelly@tecnomulti.com','2025-01-17 18:01:10','2025-01-20 14:21:56','2025-01-20 14:21:56','2025-01-20 11:08:13','2025-01-20 14:21:56',8,6,9,7,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Eu já desinstalei o aplicativo da impressora e já instalei novamente e a impressora não conecta&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;karla.minelly@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83988277027&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Eu já desinstalei o aplicativo da impressora e já instalei novamente e a impressora não conecta&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',3,3,3,1,1,1,0,0,0,NULL,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,0,246046,246046,234423,0,0,0,0,'2025-01-17 18:01:10'),
(46,2,'KARLA KINELLY DE AQUINO ALEXANDRE','2025-01-20 11:22:02','2025-01-20 14:21:10','2025-01-20 14:21:10','2025-01-20 11:23:38','2025-01-20 14:21:10',8,6,9,7,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;KARLA KINELLY DE AQUINO ALEXANDRE&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;karla.minelly@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83988277027&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;A IMPRESSORA NÃO CONECTA AO APLICATIVO INSTADO. JÁ DESINSTELEI E INSTALEI O APLICATIVO, MESMO ASSIM NÃO CONECTA.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',3,3,3,1,1,1,0,0,0,NULL,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,0,10748,10748,96,0,0,0,0,'2025-01-20 11:22:02'),
(47,2,'Instalação de vpn','2025-01-20 13:39:01','2025-01-20 14:33:05','2025-01-20 14:33:05','2025-01-20 14:23:36','2025-01-20 14:33:05',8,6,9,7,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Instalação de vpn&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;gilberto.silva@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81991391898&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Instalação de vpn&#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',3,3,3,5,1,1,0,0,0,NULL,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,0,3244,3244,2675,0,0,0,0,'2025-01-20 13:39:01'),
(48,2,'CAIXA DE EMAIL CHEIA ','2025-01-20 14:05:41','2025-01-24 11:59:40','2025-01-24 11:59:40','2025-01-20 14:35:46','2025-01-24 11:59:40',8,6,9,7,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CAIXA DE EMAIL CHEIA &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;graciane.coelho@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81986981633&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;&#60;a href=\"/front/document.send.php?docid=10&#38;itemtype=Ticket&#38;items_id=48\" target=\"_blank\" &#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-678e5833761ee6.52395438\" width=\"1366\" src=\"/front/document.send.php?docid=10&#38;itemtype=Ticket&#38;items_id=48\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',3,3,3,3,1,1,0,0,0,NULL,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,0,338039,338039,1805,0,0,0,0,'2025-01-20 14:05:41'),
(50,2,'CONECTAR IMPRESSORA NO PC','2025-01-21 11:27:28','2025-01-21 15:06:20','2025-01-21 15:06:20','2025-01-21 12:19:43','2025-01-21 15:06:20',8,6,9,7,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CONECTAR IMPRESSORA NO PC&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;lucia.gomes@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83999075161&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Quando tento imprimir abre essa aba nos documentos &#60;a href=\"/front/document.send.php?docid=12&#38;itemtype=Ticket&#38;items_id=50\" target=\"_blank\" &#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-678f840b8e9a32.37877242\" width=\"1366\" src=\"/front/document.send.php?docid=12&#38;itemtype=Ticket&#38;items_id=50\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',3,3,3,1,1,1,0,0,0,NULL,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,0,13132,13132,3135,0,0,0,0,'2025-01-21 11:27:28'),
(51,2,'Expansão - Memória interna ssd + RAM','2025-01-21 13:02:41','2025-01-22 16:59:29','2025-01-22 16:59:29','2025-01-21 14:46:45','2025-01-22 16:59:29',8,6,9,7,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Expansão - Memória interna ssd + RAM&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;arthur.abreu@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84 999460068&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;A memória interna do notebook está topado, e juntamente disso, a memoria RAM está sempre em seu uso total (imagem abaixo), e acredito que seja a junção desses fatores que estão ocasionando travamentos e fechamentos de relatórios, assim como limitando o usos de alguns recursos dos mesmos e outros programas.&#60;br&#62;&#60;br&#62;&#60;a href=\"/front/document.send.php?docid=13&#38;itemtype=Ticket&#38;items_id=51\" target=\"_blank\" &#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-678f9ac07b0fe6.57690040\" width=\"1123\" src=\"/front/document.send.php?docid=13&#38;itemtype=Ticket&#38;items_id=51\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',3,3,3,1,1,1,0,0,0,NULL,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,0,100608,100608,6244,0,0,0,0,'2025-01-21 13:02:41'),
(52,2,'Excell','2025-01-21 13:50:24','2025-01-21 15:27:14','2025-01-21 15:27:14','2025-01-21 14:27:29','2025-01-21 15:27:14',8,6,9,7,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Excell&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;Gerson.Lima@tecnimulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;71992750348&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Excell com problema, expirou  &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',3,3,3,5,1,1,0,0,0,NULL,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,0,5810,5810,2225,0,0,0,0,'2025-01-21 13:50:24'),
(53,2,'Caixa de Email Cheia','2025-01-22 11:00:46','2025-01-24 12:00:22','2025-01-24 12:00:22','2025-01-22 16:58:17','2025-01-24 12:00:22',8,6,9,7,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Caixa de Email Cheia&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;vinicius.silveira@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84 99104-6460&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Caixa de E-mail cheia&#60;br&#62;&#60;a href=\"/front/document.send.php?docid=14&#38;itemtype=Ticket&#38;items_id=53\" target=\"_blank\" &#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-6790cfd5928179.61613302\" width=\"1069\" src=\"/front/document.send.php?docid=14&#38;itemtype=Ticket&#38;items_id=53\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',3,3,3,3,1,1,0,0,0,NULL,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,0,176376,176376,21451,0,0,0,0,'2025-01-22 11:00:46'),
(54,2,'Notebook perdendo sinal de Wi FI','2025-01-22 11:12:01','2025-01-22 16:52:53','2025-01-22 16:52:53','2025-01-22 16:52:44','2025-01-22 16:52:53',8,6,9,7,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Notebook perdendo sinal de Wi FI&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;arthur.abreu@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84 999460068&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Wi fi do computador perde conectividade com a rede e deixa de enxergar as redes disponíveis no local.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',3,3,3,1,1,1,0,0,0,NULL,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,0,20452,20452,20443,0,0,0,0,'2025-01-22 11:12:01'),
(55,2,'SAP COM PROBLEMA ','2025-01-23 13:02:02','2025-01-23 13:39:28','2025-01-23 13:39:28','2025-01-23 13:06:27','2025-01-23 13:39:28',8,6,9,7,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;SAP COM PROBLEMA &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;anacristina.araujo@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83 996110690&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;SEM ACESSO AO SAP - JÁ LIMPEI CACHE - REINICIEI E NADA &#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',3,3,3,2,1,1,0,0,0,NULL,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,0,2246,2246,265,0,0,0,0,'2025-01-23 13:02:02'),
(56,2,'CAIXA DE EMAIL CHEIA ','2025-01-27 18:40:14','2025-01-28 12:51:41','2025-01-28 12:51:41','2025-01-28 11:17:26','2025-01-28 12:51:41',8,6,9,7,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CAIXA DE EMAIL CHEIA &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;graciane.coelho@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81986981633&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;CAIXA DE EMAIL CHEIAS&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',3,3,3,3,1,1,0,0,0,NULL,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,0,65487,65487,59832,0,0,0,0,'2025-01-27 18:40:14'),
(57,2,'CAIXA DE EMAIL CHEIA ','2025-01-28 11:11:21','2025-01-28 11:41:20','2025-01-28 11:41:20','2025-01-28 11:41:16','2025-01-28 11:41:20',8,6,9,7,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CAIXA DE EMAIL CHEIA &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;graciane.coelho@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81986981633&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;e-mail com problema &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',3,3,3,3,1,1,0,0,0,NULL,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,0,1799,1799,1795,0,0,0,0,'2025-01-28 11:11:21'),
(58,2,'OSP control não está abrindo e ativar o e-mail ','2025-01-28 12:39:13','2025-02-13 14:01:10','2025-02-13 14:01:10','2025-01-28 14:42:25','2025-02-13 14:01:10',8,6,9,7,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;OSP control não está abrindo e ativar o e-mail &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;selma.belizario@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83 98808-8867&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistemas VIVO/FIBRASIL&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;toda vez que tento acessar o OSP Control aparece a mensagem: ops, algo deu errado. Por favor, tente novamente. Consigo acessar em outo notebook, mas no meu não acessa. &#60;/p&#62;\n&#60;p&#62;Também preciso que o meu e-mail seja migrado do notebook anterior, para o que estou utilizado agora.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',3,3,3,4,1,1,0,0,0,NULL,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,0,1387317,1387317,7392,0,0,0,0,'2025-01-28 12:39:13'),
(59,2,'GOOGLE HEART','2025-01-28 13:46:40','2025-01-28 19:27:19','2025-01-28 19:27:19','2025-01-28 13:59:29','2025-01-28 19:27:19',10,6,9,7,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;GOOGLE HEART&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;gerson.lima@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;71992750348&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;google heart com erro, necessário reinstalar &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',3,3,3,5,1,1,0,0,0,NULL,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,0,20439,20439,769,0,0,0,0,'2025-01-28 13:46:40'),
(60,2,'PASTA DE REDE / FROTA','2025-01-28 13:53:54','2025-01-28 13:58:52','2025-01-28 13:58:52','2025-01-28 13:58:47','2025-01-28 13:58:52',8,6,9,7,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA DE REDE / FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;monalisa.furtado@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84988112339&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Monalisa: 368905108&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',3,3,3,5,1,1,0,0,0,NULL,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,0,298,298,293,0,0,0,0,'2025-01-28 13:53:54'),
(61,2,'PASTA DE REDE / FROTA','2025-01-28 13:59:04','2025-01-28 14:02:05','2025-01-28 14:02:05','2025-01-28 14:02:01','2025-01-28 14:02:05',8,6,9,7,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA DE REDE / FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;monalisa.furtado@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84988112339&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Monalisa: 368 905 108&#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',3,3,3,2,1,1,0,0,0,NULL,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,0,181,181,177,0,0,0,0,'2025-01-28 13:59:04'),
(62,2,'PASTA FROTA','2025-01-28 14:02:27','2025-01-28 14:05:20','2025-01-28 14:05:20','2025-01-28 14:05:13','2025-01-28 14:05:20',8,6,9,7,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;laryssa.felix@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84988112339&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;ANYDESK: 1050 655 391&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',3,3,3,5,1,1,0,0,0,NULL,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,0,173,173,166,0,0,0,0,'2025-01-28 14:02:27'),
(63,2,'PASTA DE REDE / FROTA','2025-01-28 14:04:55','2025-01-28 14:11:39','2025-01-28 14:11:39','2025-01-28 14:06:10','2025-01-28 14:11:39',8,6,9,7,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA DE REDE / FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;joaopaulo.leite@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 98584-2246&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;ANYDESK: 723335506&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',3,3,3,2,1,1,0,0,0,NULL,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,0,404,404,75,0,0,0,0,'2025-01-28 14:04:55'),
(64,2,'PASTA DE REDE / FROTA','2025-01-28 14:06:03','2025-01-28 14:13:35','2025-01-28 14:13:35','2025-01-28 14:13:32','2025-01-28 14:13:35',8,6,9,7,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA DE REDE / FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;arthur.abreu@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84 9946-0068&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Anydesk: 1 307 766 794&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',3,3,3,2,1,1,0,0,0,NULL,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,0,452,452,449,0,0,0,0,'2025-01-28 14:06:03'),
(65,2,'PASTA DE REDE / FROTA','2025-01-28 14:16:01','2025-01-28 14:49:48','2025-01-28 14:49:48','2025-01-28 14:49:25','2025-01-28 14:49:48',10,6,9,7,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA DE REDE / FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;gilmar.lourenco@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84 99946-0230&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;ANYDESK: 777746514&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',3,3,3,2,1,1,0,0,0,NULL,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,0,2027,2027,2004,0,0,0,0,'2025-01-28 14:16:01'),
(66,2,'Configurar o SAP ','2025-01-28 14:31:35','2025-01-28 20:20:30','2025-01-28 20:20:30','2025-01-28 14:52:26','2025-01-28 20:20:30',8,6,9,7,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Configurar o SAP &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;jose.carmo@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81986954083&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistemas VIVO/FIBRASIL&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Preciso urgentemente que configure minha conta nova do Sap nessa maquina. &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',3,3,3,4,1,1,0,0,0,NULL,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,0,20935,20935,1251,0,0,0,0,'2025-01-28 14:31:35'),
(67,2,'CONECTAR IMPRESSORA NO PC','2025-01-28 15:12:53','2025-01-28 20:18:45','2025-01-28 20:18:45','2025-01-28 15:22:05','2025-01-28 20:18:45',8,6,9,7,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CONECTAR IMPRESSORA NO PC&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;elton.jorge@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;+55 83 8199-1245&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;erro ao tentar impressão&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',3,3,3,1,1,1,0,0,0,NULL,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,0,18352,18352,552,0,0,0,0,'2025-01-28 15:12:53'),
(68,2,'Caixa de E-mail Lotada','2025-01-28 18:47:27','2025-01-28 20:17:28','2025-01-28 20:17:28','2025-01-28 20:17:22','2025-01-28 20:17:28',8,6,9,7,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Caixa de E-mail Lotada&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;vinicius.silveira@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84 99104-6460&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Caixa Lotada&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',3,3,3,3,1,1,0,0,0,NULL,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,0,5401,5401,5395,0,0,0,0,'2025-01-28 18:47:27'),
(70,2,'Email - Alexandre Onassis','2025-01-29 11:52:14','2025-01-29 12:01:16','2025-01-29 12:01:16','2025-01-29 11:53:33','2025-01-29 12:01:16',8,6,9,7,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Email - Alexandre Onassis&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;geimisson.marques@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 983240445&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Configuração primeiro acesso ao email do coordenador Alexandre Onassis &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',3,3,3,3,1,1,0,0,0,NULL,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,0,542,542,79,0,0,0,0,'2025-01-29 11:52:14'),
(71,2,'configurar VPN','2025-01-29 11:59:27','2025-01-29 12:06:26','2025-01-29 12:06:26','2025-01-29 12:06:20','2025-01-29 12:06:26',8,6,9,7,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;configurar VPN&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;Sebastiao.clesio@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84991007542&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;bom dia.&#60;/p&#62;\n&#60;p&#62;conforme ja alinhado e autorizado por Paula. cadastrar a VPN no PC.   &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',3,3,3,2,1,1,0,0,0,NULL,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,0,419,419,413,0,0,0,0,'2025-01-29 11:59:27'),
(72,2,'sistema sap não fica com o acesso','2025-01-30 11:24:45','2025-01-30 11:51:10','2025-01-30 11:51:10','2025-01-30 11:45:58','2025-01-30 11:51:10',8,6,9,7,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;sistema sap não fica com o acesso&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;lorenalarissa88@gmail.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62; 81 9402-7371&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;não consigo acessar o sistema&#60;/p&#62;\n&#60;p&#62;anydesk  1 763 954 787&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',3,3,3,5,1,1,0,0,0,NULL,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,0,1585,1585,1273,0,0,0,0,'2025-01-30 11:24:45'),
(73,2,'PROBLEMA AO ACESSAR SAP / CITRIX','2025-01-30 13:44:22','2025-01-30 18:52:14','2025-01-30 18:52:14','2025-01-30 15:36:30','2025-01-30 18:52:14',8,6,9,7,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PROBLEMA AO ACESSAR SAP / CITRIX&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;lanna1457@gmail.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83999075161&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;NÃO CONSIGO ACESSAR O SAP NEM O CITRIX - PORÉM UMA COLEGA CONSEGUIU ACESSAR PELO MESMO LINK E MESMA SENHA &#60;a href=\"/front/document.send.php?docid=16&#38;itemtype=Ticket&#38;items_id=73\" target=\"_blank\" &#62;&#60;img alt=\"ec3ac8cc-b2d8e96f-679b81f077f908.68527211\" width=\"974\" src=\"/front/document.send.php?docid=16&#38;itemtype=Ticket&#38;items_id=73\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',3,3,3,5,1,1,0,0,0,NULL,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,0,18472,18472,6728,0,0,0,0,'2025-01-30 13:44:22'),
(74,2,'EMAIL','2025-01-30 17:53:59','2025-01-30 19:23:58','2025-01-30 19:23:58','2025-01-30 18:50:29','2025-01-30 19:23:58',8,6,9,7,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;EMAIL&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;flavia.chagas@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62; 84 8831-7787&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Meus emails não está saindo da caixa!&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',3,3,3,3,1,1,0,0,0,NULL,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,0,5399,5399,3390,0,0,0,0,'2025-01-30 17:53:59'),
(75,2,'INSTALAR NOBREAK','2025-01-30 18:41:10',NULL,NULL,'2025-01-30 19:14:05','2025-01-30 19:14:11',8,3,9,7,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;INSTALAR NOBREAK&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;denilson.marques@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84999811377&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Equipamentos/Periféricos&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;equipamento para instalação disponivel.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',3,3,3,1,1,1,0,0,0,NULL,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,0,0,0,1975,0,0,0,0,'2025-01-30 18:41:10'),
(76,2,'VPN com problema','2025-02-03 13:18:39','2025-02-04 11:49:55','2025-02-04 11:49:55','2025-02-03 13:49:47','2025-02-04 11:49:55',8,6,9,7,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;VPN com problema&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;arthur.ulisses@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;85992155440&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;VPN aparenta estar muito lento, impossibilitando o trabalho.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',3,3,3,2,1,1,0,0,0,NULL,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,0,81076,81076,1868,0,0,0,0,'2025-02-03 13:18:39'),
(77,2,'VPN FIBRASIL','2025-02-03 17:21:14','2025-02-04 11:22:37','2025-02-04 11:22:37','2025-02-04 11:22:32','2025-02-04 11:22:37',8,6,9,7,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;VPN FIBRASIL&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;danielle.silva@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62; 81 99256-9899&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;A VPN da Fibrasil aprensentando erro ao acesso . &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',3,3,3,5,1,1,0,0,0,NULL,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,0,64883,64883,64878,0,0,0,0,'2025-02-03 17:21:14'),
(78,2,'Erro Envio de mensagens ','2025-02-03 17:44:33','2025-02-03 20:47:33','2025-02-03 20:47:33','2025-02-03 19:50:51','2025-02-03 20:47:33',8,6,9,7,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Erro Envio de mensagens &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;mario.lopes@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83993220200&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;\"Esta mensagem foi criada automaticamente pelo software de entrega de correio.&#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;\n&#60;p&#62;Uma mensagem que você enviou não pôde ser entregue a um ou mais destinatários. Este é um erro permanente. Os seguintes endereços falharam:\"&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',3,3,3,3,1,1,0,0,0,NULL,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,0,10980,10980,7578,0,0,0,0,'2025-02-03 17:44:33'),
(79,2,'Erro Envio de mensagens ','2025-02-03 20:21:54','2025-02-03 21:01:20','2025-02-03 21:01:20','2025-02-03 21:01:14','2025-02-03 21:01:20',8,6,9,7,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Erro Envio de mensagens &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;mario.lopes@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83993220200&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;This message was created automatically by mail delivery software.&#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;\n&#60;p&#62;A message that you sent could not be delivered to one or more of its recipients. This is a permanent error. The following address(es) failed:&#60;/p&#62;\n&#60;p&#62; &#60;/p&#62;\n&#60;p&#62;  alexcruzfab@hotmail.com&#60;/p&#62;\n&#60;p&#62;    host eig-east.smtp.a.cloudfilter.net [3.228.35.199]&#60;/p&#62;\n&#60;p&#62;    SMTP error from remote mail server after end of data:&#60;/p&#62;\n&#60;p&#62;    550 Connection Rejected - see http://www.spamhaus.org/query/ip/168.196.197.55 AUP#BL&#60;/p&#62;\n&#60;p&#62;  alexcruzfab@gmail.com&#60;/p&#62;\n&#60;p&#62;    host eig-east.smtp.a.cloudfilter.net [18.215.58.191]&#60;/p&#62;\n&#60;p&#62;    SMTP error from remote mail server after end of data:&#60;/p&#62;\n&#60;p&#62;    550 Connection Rejected - see http://www.spamhaus.org/query/ip/168.196.197.55 AUP#BL&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',3,3,3,3,1,1,0,0,0,NULL,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,0,2366,2366,2360,0,0,0,0,'2025-02-03 20:21:54'),
(80,2,'VPN','2025-02-04 18:37:10','2025-02-06 14:41:21','2025-02-04 19:15:58','2025-02-04 18:41:05','2025-02-06 14:41:21',8,6,9,7,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;VPN&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;fabiano.melo@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81988187688&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;ACESSO A VPN &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',3,3,3,2,1,1,0,0,0,NULL,NULL,'2025-02-04 19:15:58',0,0,0,0,0,NULL,NULL,NULL,NULL,0,158651,2328,235,0,0,0,0,'2025-02-04 18:37:10'),
(81,2,'INSTALAÇÃO VPN TECNOMULTI','2025-02-04 18:43:15','2025-02-06 14:39:48','2025-02-06 14:39:48','2025-02-04 19:16:38','2025-02-06 14:39:48',8,6,9,7,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;INSTALAÇÃO VPN TECNOMULTI&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;danielle.silva@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 99293-6741&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Instalação da VPN Tecnomulti. &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',3,3,3,5,1,1,0,0,0,NULL,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,0,158193,158193,2003,0,0,0,0,'2025-02-04 18:43:15'),
(82,2,'PASTA FROTA','2025-02-07 14:16:50','2025-02-11 12:21:34','2025-02-11 12:21:34','2025-02-10 11:47:57','2025-02-11 12:21:34',8,6,9,7,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;fabio.jackson@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;83986500039&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;favor  configurar acesso para Pasta Frotas &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',3,3,3,2,1,1,0,0,0,NULL,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,0,338684,338684,250267,0,0,0,0,'2025-02-07 14:16:50'),
(83,2,'EMAIL / EXCEL / POWER POINT','2025-02-10 11:16:41','2025-02-10 11:46:54','2025-02-10 11:46:54','2025-02-10 11:19:29','2025-02-10 11:46:54',8,6,9,7,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;EMAIL / EXCEL / POWER POINT&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;amanda.moreira@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;(84)98753-9247&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Não consigo enviar, nem responder emails. Apenas recebo.&#60;/p&#62;\n&#60;p&#62;Excel, power point e word, apenas abre, não consigo mexer nele. Mostra um aviso informando que \"Está cópia do Microsoft office não está ativada. &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',3,3,3,3,1,1,0,0,0,NULL,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,0,1813,1813,168,0,0,0,0,'2025-02-10 11:16:41'),
(84,2,'sistema sap não fica com o acesso','2025-02-11 12:02:54','2025-02-11 13:08:44','2025-02-11 13:08:44','2025-02-11 13:08:39','2025-02-11 13:08:44',8,6,9,7,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;sistema sap não fica com o acesso&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;lorenalarissa88@gmail.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81988648578&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;não consigo usar o sistema funciona em outro e no  meu a senha e login não fica.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',3,3,3,5,1,1,0,0,0,NULL,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,0,3950,3950,3945,0,0,0,0,'2025-02-11 12:02:54'),
(85,2,'PASTA FROTA','2025-02-11 12:41:34','2025-02-11 13:14:07','2025-02-11 13:14:07','2025-02-11 13:07:04','2025-02-11 13:14:07',8,6,9,7,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;PASTA FROTA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;joao.ferreira@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 992588071&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Rede/Internet&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Favor criar acesso a pasta Frota&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',3,3,3,2,1,1,0,0,0,NULL,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,0,1953,1953,1530,0,0,0,0,'2025-02-11 12:41:34'),
(86,2,'Acesso Sistema ','2025-02-11 15:10:17','2025-02-13 13:17:14','2025-02-13 13:17:14','2025-02-11 22:20:27','2025-02-13 13:17:14',8,6,9,7,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;Acesso Sistema &#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;michele.souza@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;8198555-5446&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Mudanca de setor, nao estou consiguindo acessa Vicky, Sap, OSPCONTROL &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',3,3,3,5,1,1,0,0,0,NULL,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,0,166017,166017,25810,0,0,0,0,'2025-02-11 15:10:17'),
(87,2,'ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK','2025-02-12 11:56:10','2025-02-12 12:34:09','2025-02-12 12:34:09','2025-02-12 12:07:07','2025-02-12 12:34:09',8,6,9,7,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;ERRO NO PROGRESSO DE RECEBIMENTO DE E-MAIL | OUTLOOK&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;gilmar.lourenco@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84988113027&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;O progresso do Outlook indica o recebimento dos e-mails, porém, nada aparece na caixa de entrada, nem nas pastas com regras.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',3,3,3,3,1,1,0,0,0,NULL,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,0,2279,2279,657,0,0,0,0,'2025-02-12 11:56:10'),
(88,2,'edson maykon','2025-02-17 11:36:06',NULL,NULL,'2025-02-17 13:52:33','2025-02-17 20:31:30',8,2,9,7,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;edson maykon&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;edson.maykon@tecnomulti.com.pst&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84 987026218&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;nao estou tendo acesso e meu e-mail  edson.maykon@tecnomulti.com.pst&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',3,3,3,3,1,1,0,0,0,NULL,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,0,0,0,8187,0,0,0,0,'2025-02-17 11:36:06'),
(89,2,'INSTALAR E-MAIL OUTLOOK','2025-02-17 12:35:59',NULL,NULL,'2025-02-18 18:30:33','2025-02-18 18:30:40',8,2,9,7,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;INSTALAR E-MAIL OUTLOOK&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;bruno.ciriaco@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;85981013501&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Bom dia configurar o outlook e instalar o DWG. &#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',3,3,3,3,1,1,0,0,0,NULL,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,0,0,0,107674,0,0,0,0,'2025-02-17 12:35:59'),
(90,2,'não consigo acessar meu outlook','2025-02-18 17:56:01',NULL,NULL,'2025-02-18 18:16:04','2025-02-18 18:17:50',9,2,9,7,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;não consigo acessar meu outlook&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;aprendiz.recifela@tecnomult.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;81 986981633&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;&#60;a href=\"/front/document.send.php?docid=17&#38;itemtype=Ticket&#38;items_id=90\" target=\"_blank\" &#62;&#60;img alt=\"47cb7c5c-b2d8e96f-67b4c9ad2804d1.68109059\" width=\"545\" src=\"/front/document.send.php?docid=17&#38;itemtype=Ticket&#38;items_id=90\" /&#62;&#60;/a&#62;&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',3,3,3,3,1,1,0,0,0,NULL,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,0,0,0,1203,0,0,0,0,'2025-02-18 17:56:01'),
(91,2,'CHAMADO RAYLLA','2025-02-18 17:56:26',NULL,NULL,'2025-02-18 18:14:21','2025-02-18 18:22:40',9,2,9,7,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;CHAMADO RAYLLA&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;raylla.vitoria@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84988082753&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;E-mail&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Boa tarde, Alex!&#60;br&#62;Não consigo rever emails antigos nem enviados.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',3,3,3,3,1,1,0,0,0,NULL,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,0,0,0,1075,0,0,0,0,'2025-02-18 17:56:26'),
(92,2,'TROCA DE NOTEBOOK','2025-02-18 18:48:25',NULL,NULL,NULL,'2025-02-18 18:48:25',9,1,9,7,'&#60;div&#62;&#60;h1&#62;Dados do formulário&#60;/h1&#62;&#60;h2&#62;Novo chamado&#60;/h2&#62;&#60;div&#62;&#60;b&#62;1) Título : &#60;/b&#62;TROCA DE NOTEBOOK&#60;/div&#62;&#60;div&#62;&#60;b&#62;2) E-mail : &#60;/b&#62;evelyn.azevedo@tecnomulti.com&#60;/div&#62;&#60;div&#62;&#60;b&#62;3) Telefone : &#60;/b&#62;84981052542&#60;/div&#62;&#60;div&#62;&#60;b&#62;4) Categoria : &#60;/b&#62;Sistema Operacional/Programas&#60;/div&#62;&#60;div&#62;&#60;b&#62;5) Informe mais detalhes : &#60;/b&#62;&#60;p&#62;Troca de notebook, liberar acessos.&#60;/p&#62;&#60;/div&#62;&#60;/div&#62;',3,3,3,5,1,1,0,0,0,NULL,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,0,0,0,0,0,0,0,0,'2025-02-18 18:48:25');
/*!40000 ALTER TABLE `glpi_tickets` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_tickets_contracts`
--

DROP TABLE IF EXISTS `glpi_tickets_contracts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_tickets_contracts` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `tickets_id` int(10) unsigned NOT NULL DEFAULT 0,
  `contracts_id` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`tickets_id`,`contracts_id`),
  KEY `contracts_id` (`contracts_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_tickets_contracts`
--

LOCK TABLES `glpi_tickets_contracts` WRITE;
/*!40000 ALTER TABLE `glpi_tickets_contracts` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_tickets_contracts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_tickets_tickets`
--

DROP TABLE IF EXISTS `glpi_tickets_tickets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_tickets_tickets` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `tickets_id_1` int(10) unsigned NOT NULL DEFAULT 0,
  `tickets_id_2` int(10) unsigned NOT NULL DEFAULT 0,
  `link` int(11) NOT NULL DEFAULT 1,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`tickets_id_1`,`tickets_id_2`),
  KEY `tickets_id_2` (`tickets_id_2`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_tickets_tickets`
--

LOCK TABLES `glpi_tickets_tickets` WRITE;
/*!40000 ALTER TABLE `glpi_tickets_tickets` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_tickets_tickets` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_tickets_users`
--

DROP TABLE IF EXISTS `glpi_tickets_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_tickets_users` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `tickets_id` int(10) unsigned NOT NULL DEFAULT 0,
  `users_id` int(10) unsigned NOT NULL DEFAULT 0,
  `type` int(11) NOT NULL DEFAULT 1,
  `use_notification` tinyint(4) NOT NULL DEFAULT 1,
  `alternative_email` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`tickets_id`,`type`,`users_id`,`alternative_email`),
  KEY `user` (`users_id`,`type`)
) ENGINE=InnoDB AUTO_INCREMENT=98 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_tickets_users`
--

LOCK TABLES `glpi_tickets_users` WRITE;
/*!40000 ALTER TABLE `glpi_tickets_users` DISABLE KEYS */;
INSERT INTO `glpi_tickets_users` VALUES
(21,17,9,1,1,''),
(22,18,9,1,1,''),
(23,19,9,1,1,''),
(24,20,9,1,1,''),
(25,21,9,1,1,''),
(26,22,9,1,1,''),
(27,23,9,1,1,''),
(28,24,9,1,1,''),
(29,25,9,1,1,''),
(30,26,9,1,1,''),
(31,27,9,1,1,''),
(32,28,9,1,1,''),
(33,29,9,1,1,''),
(34,30,9,1,1,''),
(35,31,9,1,1,''),
(36,32,9,1,1,''),
(40,36,9,1,1,''),
(47,43,9,1,1,''),
(48,44,9,1,1,''),
(49,45,9,1,1,''),
(50,46,9,1,1,''),
(51,47,9,1,1,''),
(52,48,9,1,1,''),
(54,50,9,1,1,''),
(55,51,9,1,1,''),
(56,52,9,1,1,''),
(57,53,9,1,1,''),
(58,54,9,1,1,''),
(59,55,9,1,1,''),
(60,56,9,1,1,''),
(61,57,9,1,1,''),
(62,58,9,1,1,''),
(63,59,9,1,1,''),
(64,60,9,1,1,''),
(65,61,9,1,1,''),
(66,62,9,1,1,''),
(67,63,9,1,1,''),
(68,64,9,1,1,''),
(69,65,9,1,1,''),
(70,66,9,1,1,''),
(71,67,9,1,1,''),
(72,68,9,1,1,''),
(74,70,9,1,1,''),
(75,71,9,1,1,''),
(76,72,9,1,1,''),
(77,73,9,1,1,''),
(78,58,8,2,1,''),
(79,74,9,1,1,''),
(80,75,9,1,1,''),
(81,76,9,1,1,''),
(82,77,9,1,1,''),
(83,78,9,1,1,''),
(84,79,9,1,1,''),
(85,80,9,1,1,''),
(86,81,9,1,1,''),
(87,82,9,1,1,''),
(88,83,9,1,1,''),
(89,84,9,1,1,''),
(90,85,9,1,1,''),
(91,86,9,1,1,''),
(92,87,9,1,1,''),
(93,88,9,1,1,''),
(94,89,9,1,1,''),
(95,90,9,1,1,''),
(96,91,9,1,1,''),
(97,92,9,1,1,'');
/*!40000 ALTER TABLE `glpi_tickets_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_ticketsatisfactions`
--

DROP TABLE IF EXISTS `glpi_ticketsatisfactions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_ticketsatisfactions` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `tickets_id` int(10) unsigned NOT NULL DEFAULT 0,
  `type` int(11) NOT NULL DEFAULT 1,
  `date_begin` timestamp NULL DEFAULT NULL,
  `date_answered` timestamp NULL DEFAULT NULL,
  `satisfaction` int(11) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `tickets_id` (`tickets_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_ticketsatisfactions`
--

LOCK TABLES `glpi_ticketsatisfactions` WRITE;
/*!40000 ALTER TABLE `glpi_ticketsatisfactions` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_ticketsatisfactions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_tickettasks`
--

DROP TABLE IF EXISTS `glpi_tickettasks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_tickettasks` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `uuid` varchar(255) DEFAULT NULL,
  `tickets_id` int(10) unsigned NOT NULL DEFAULT 0,
  `taskcategories_id` int(10) unsigned NOT NULL DEFAULT 0,
  `date` timestamp NULL DEFAULT NULL,
  `users_id` int(10) unsigned NOT NULL DEFAULT 0,
  `users_id_editor` int(10) unsigned NOT NULL DEFAULT 0,
  `content` longtext DEFAULT NULL,
  `is_private` tinyint(4) NOT NULL DEFAULT 0,
  `actiontime` int(11) NOT NULL DEFAULT 0,
  `begin` timestamp NULL DEFAULT NULL,
  `end` timestamp NULL DEFAULT NULL,
  `state` int(11) NOT NULL DEFAULT 1,
  `users_id_tech` int(10) unsigned NOT NULL DEFAULT 0,
  `groups_id_tech` int(10) unsigned NOT NULL DEFAULT 0,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  `tasktemplates_id` int(10) unsigned NOT NULL DEFAULT 0,
  `timeline_position` tinyint(4) NOT NULL DEFAULT 0,
  `sourceitems_id` int(10) unsigned NOT NULL DEFAULT 0,
  `sourceof_items_id` int(10) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  UNIQUE KEY `uuid` (`uuid`),
  KEY `date` (`date`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`),
  KEY `users_id` (`users_id`),
  KEY `users_id_editor` (`users_id_editor`),
  KEY `tickets_id` (`tickets_id`),
  KEY `is_private` (`is_private`),
  KEY `taskcategories_id` (`taskcategories_id`),
  KEY `state` (`state`),
  KEY `users_id_tech` (`users_id_tech`),
  KEY `groups_id_tech` (`groups_id_tech`),
  KEY `begin` (`begin`),
  KEY `end` (`end`),
  KEY `tasktemplates_id` (`tasktemplates_id`),
  KEY `sourceitems_id` (`sourceitems_id`),
  KEY `sourceof_items_id` (`sourceof_items_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_tickettasks`
--

LOCK TABLES `glpi_tickettasks` WRITE;
/*!40000 ALTER TABLE `glpi_tickettasks` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_tickettasks` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_tickettemplatehiddenfields`
--

DROP TABLE IF EXISTS `glpi_tickettemplatehiddenfields`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_tickettemplatehiddenfields` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `tickettemplates_id` int(10) unsigned NOT NULL DEFAULT 0,
  `num` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`tickettemplates_id`,`num`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_tickettemplatehiddenfields`
--

LOCK TABLES `glpi_tickettemplatehiddenfields` WRITE;
/*!40000 ALTER TABLE `glpi_tickettemplatehiddenfields` DISABLE KEYS */;
INSERT INTO `glpi_tickettemplatehiddenfields` VALUES
(1,1,10),
(2,1,66);
/*!40000 ALTER TABLE `glpi_tickettemplatehiddenfields` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_tickettemplatemandatoryfields`
--

DROP TABLE IF EXISTS `glpi_tickettemplatemandatoryfields`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_tickettemplatemandatoryfields` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `tickettemplates_id` int(10) unsigned NOT NULL DEFAULT 0,
  `num` int(11) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`tickettemplates_id`,`num`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_tickettemplatemandatoryfields`
--

LOCK TABLES `glpi_tickettemplatemandatoryfields` WRITE;
/*!40000 ALTER TABLE `glpi_tickettemplatemandatoryfields` DISABLE KEYS */;
INSERT INTO `glpi_tickettemplatemandatoryfields` VALUES
(2,1,1),
(3,1,7),
(1,1,21);
/*!40000 ALTER TABLE `glpi_tickettemplatemandatoryfields` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_tickettemplatepredefinedfields`
--

DROP TABLE IF EXISTS `glpi_tickettemplatepredefinedfields`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_tickettemplatepredefinedfields` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `tickettemplates_id` int(10) unsigned NOT NULL DEFAULT 0,
  `num` int(11) NOT NULL DEFAULT 0,
  `value` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `tickettemplates_id` (`tickettemplates_id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_tickettemplatepredefinedfields`
--

LOCK TABLES `glpi_tickettemplatepredefinedfields` WRITE;
/*!40000 ALTER TABLE `glpi_tickettemplatepredefinedfields` DISABLE KEYS */;
INSERT INTO `glpi_tickettemplatepredefinedfields` VALUES
(2,1,21,'&#60;p&#62;Telefone:&#60;/p&#62;\r\n&#60;p&#62;E-mail:&#60;/p&#62;');
/*!40000 ALTER TABLE `glpi_tickettemplatepredefinedfields` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_tickettemplates`
--

DROP TABLE IF EXISTS `glpi_tickettemplates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_tickettemplates` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `comment` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_tickettemplates`
--

LOCK TABLES `glpi_tickettemplates` WRITE;
/*!40000 ALTER TABLE `glpi_tickettemplates` DISABLE KEYS */;
INSERT INTO `glpi_tickettemplates` VALUES
(1,'Default',0,1,NULL);
/*!40000 ALTER TABLE `glpi_tickettemplates` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_ticketvalidations`
--

DROP TABLE IF EXISTS `glpi_ticketvalidations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_ticketvalidations` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `users_id` int(10) unsigned NOT NULL DEFAULT 0,
  `tickets_id` int(10) unsigned NOT NULL DEFAULT 0,
  `users_id_validate` int(10) unsigned NOT NULL DEFAULT 0,
  `comment_submission` text DEFAULT NULL,
  `comment_validation` text DEFAULT NULL,
  `status` int(11) NOT NULL DEFAULT 2,
  `submission_date` timestamp NULL DEFAULT NULL,
  `validation_date` timestamp NULL DEFAULT NULL,
  `timeline_position` tinyint(4) NOT NULL DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `entities_id` (`entities_id`),
  KEY `users_id` (`users_id`),
  KEY `users_id_validate` (`users_id_validate`),
  KEY `tickets_id` (`tickets_id`),
  KEY `submission_date` (`submission_date`),
  KEY `validation_date` (`validation_date`),
  KEY `status` (`status`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_ticketvalidations`
--

LOCK TABLES `glpi_ticketvalidations` WRITE;
/*!40000 ALTER TABLE `glpi_ticketvalidations` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_ticketvalidations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_transfers`
--

DROP TABLE IF EXISTS `glpi_transfers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_transfers` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `keep_ticket` int(11) NOT NULL DEFAULT 0,
  `keep_networklink` int(11) NOT NULL DEFAULT 0,
  `keep_reservation` int(11) NOT NULL DEFAULT 0,
  `keep_history` int(11) NOT NULL DEFAULT 0,
  `keep_device` int(11) NOT NULL DEFAULT 0,
  `keep_infocom` int(11) NOT NULL DEFAULT 0,
  `keep_dc_monitor` int(11) NOT NULL DEFAULT 0,
  `clean_dc_monitor` int(11) NOT NULL DEFAULT 0,
  `keep_dc_phone` int(11) NOT NULL DEFAULT 0,
  `clean_dc_phone` int(11) NOT NULL DEFAULT 0,
  `keep_dc_peripheral` int(11) NOT NULL DEFAULT 0,
  `clean_dc_peripheral` int(11) NOT NULL DEFAULT 0,
  `keep_dc_printer` int(11) NOT NULL DEFAULT 0,
  `clean_dc_printer` int(11) NOT NULL DEFAULT 0,
  `keep_supplier` int(11) NOT NULL DEFAULT 0,
  `clean_supplier` int(11) NOT NULL DEFAULT 0,
  `keep_contact` int(11) NOT NULL DEFAULT 0,
  `clean_contact` int(11) NOT NULL DEFAULT 0,
  `keep_contract` int(11) NOT NULL DEFAULT 0,
  `clean_contract` int(11) NOT NULL DEFAULT 0,
  `keep_software` int(11) NOT NULL DEFAULT 0,
  `clean_software` int(11) NOT NULL DEFAULT 0,
  `keep_document` int(11) NOT NULL DEFAULT 0,
  `clean_document` int(11) NOT NULL DEFAULT 0,
  `keep_cartridgeitem` int(11) NOT NULL DEFAULT 0,
  `clean_cartridgeitem` int(11) NOT NULL DEFAULT 0,
  `keep_cartridge` int(11) NOT NULL DEFAULT 0,
  `keep_consumable` int(11) NOT NULL DEFAULT 0,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `keep_disk` int(11) NOT NULL DEFAULT 0,
  `keep_certificate` int(11) NOT NULL DEFAULT 0,
  `clean_certificate` int(11) NOT NULL DEFAULT 0,
  `lock_updated_fields` int(11) NOT NULL DEFAULT 0,
  `keep_location` int(11) NOT NULL DEFAULT 1,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_transfers`
--

LOCK TABLES `glpi_transfers` WRITE;
/*!40000 ALTER TABLE `glpi_transfers` DISABLE KEYS */;
INSERT INTO `glpi_transfers` VALUES
(1,'complete',2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,NULL,NULL,NULL,1,1,1,0,1);
/*!40000 ALTER TABLE `glpi_transfers` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_unmanageds`
--

DROP TABLE IF EXISTS `glpi_unmanageds`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_unmanageds` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `name` varchar(255) DEFAULT NULL,
  `serial` varchar(255) DEFAULT NULL,
  `otherserial` varchar(255) DEFAULT NULL,
  `contact` varchar(255) DEFAULT NULL,
  `contact_num` varchar(255) DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `locations_id` int(10) unsigned NOT NULL DEFAULT 0,
  `networks_id` int(10) unsigned NOT NULL DEFAULT 0,
  `manufacturers_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_deleted` tinyint(4) NOT NULL DEFAULT 0,
  `users_id` int(10) unsigned NOT NULL DEFAULT 0,
  `groups_id` int(10) unsigned NOT NULL DEFAULT 0,
  `states_id` int(10) unsigned NOT NULL DEFAULT 0,
  `users_id_tech` int(10) unsigned NOT NULL DEFAULT 0,
  `groups_id_tech` int(10) unsigned NOT NULL DEFAULT 0,
  `is_dynamic` tinyint(4) NOT NULL DEFAULT 0,
  `date_creation` timestamp NULL DEFAULT NULL,
  `autoupdatesystems_id` int(10) unsigned NOT NULL DEFAULT 0,
  `sysdescr` text DEFAULT NULL,
  `agents_id` int(10) unsigned NOT NULL DEFAULT 0,
  `itemtype` varchar(100) DEFAULT NULL,
  `accepted` tinyint(4) NOT NULL DEFAULT 0,
  `hub` tinyint(4) NOT NULL DEFAULT 0,
  `ip` varchar(255) DEFAULT NULL,
  `snmpcredentials_id` int(10) unsigned NOT NULL DEFAULT 0,
  `last_inventory_update` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `manufacturers_id` (`manufacturers_id`),
  KEY `groups_id` (`groups_id`),
  KEY `users_id` (`users_id`),
  KEY `locations_id` (`locations_id`),
  KEY `networks_id` (`networks_id`),
  KEY `states_id` (`states_id`),
  KEY `groups_id_tech` (`groups_id_tech`),
  KEY `is_deleted` (`is_deleted`),
  KEY `date_mod` (`date_mod`),
  KEY `is_dynamic` (`is_dynamic`),
  KEY `serial` (`serial`),
  KEY `otherserial` (`otherserial`),
  KEY `date_creation` (`date_creation`),
  KEY `autoupdatesystems_id` (`autoupdatesystems_id`),
  KEY `agents_id` (`agents_id`),
  KEY `snmpcredentials_id` (`snmpcredentials_id`),
  KEY `users_id_tech` (`users_id_tech`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_unmanageds`
--

LOCK TABLES `glpi_unmanageds` WRITE;
/*!40000 ALTER TABLE `glpi_unmanageds` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_unmanageds` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_usbvendors`
--

DROP TABLE IF EXISTS `glpi_usbvendors`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_usbvendors` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `vendorid` varchar(4) NOT NULL,
  `deviceid` varchar(4) DEFAULT NULL,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`vendorid`,`deviceid`),
  KEY `deviceid` (`deviceid`),
  KEY `name` (`name`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_usbvendors`
--

LOCK TABLES `glpi_usbvendors` WRITE;
/*!40000 ALTER TABLE `glpi_usbvendors` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_usbvendors` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_usercategories`
--

DROP TABLE IF EXISTS `glpi_usercategories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_usercategories` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_usercategories`
--

LOCK TABLES `glpi_usercategories` WRITE;
/*!40000 ALTER TABLE `glpi_usercategories` DISABLE KEYS */;
INSERT INTO `glpi_usercategories` VALUES
(1,'Cliente Loja','','2025-01-19 04:55:51','2025-01-19 04:55:51');
/*!40000 ALTER TABLE `glpi_usercategories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_useremails`
--

DROP TABLE IF EXISTS `glpi_useremails`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_useremails` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `users_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_default` tinyint(4) NOT NULL DEFAULT 0,
  `is_dynamic` tinyint(4) NOT NULL DEFAULT 0,
  `email` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`users_id`,`email`),
  KEY `email` (`email`),
  KEY `is_default` (`is_default`),
  KEY `is_dynamic` (`is_dynamic`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_useremails`
--

LOCK TABLES `glpi_useremails` WRITE;
/*!40000 ALTER TABLE `glpi_useremails` DISABLE KEYS */;
INSERT INTO `glpi_useremails` VALUES
(1,7,1,0,'p.victordsouza@gmail.com'),
(2,9,1,0,'suporte@tecnomulti.com'),
(3,8,1,0,'alexcruzfab@hotmail.com');
/*!40000 ALTER TABLE `glpi_useremails` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_users`
--

DROP TABLE IF EXISTS `glpi_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_users` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `password` varchar(255) DEFAULT NULL,
  `password_last_update` timestamp NULL DEFAULT NULL,
  `phone` varchar(255) DEFAULT NULL,
  `phone2` varchar(255) DEFAULT NULL,
  `mobile` varchar(255) DEFAULT NULL,
  `realname` varchar(255) DEFAULT NULL,
  `firstname` varchar(255) DEFAULT NULL,
  `locations_id` int(10) unsigned NOT NULL DEFAULT 0,
  `language` char(10) DEFAULT NULL COMMENT 'see define.php CFG_GLPI[language] array',
  `use_mode` int(11) NOT NULL DEFAULT 0,
  `list_limit` int(11) DEFAULT NULL,
  `is_active` tinyint(4) NOT NULL DEFAULT 1,
  `comment` text DEFAULT NULL,
  `auths_id` int(10) unsigned NOT NULL DEFAULT 0,
  `authtype` int(11) NOT NULL DEFAULT 0,
  `last_login` timestamp NULL DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_sync` timestamp NULL DEFAULT NULL,
  `is_deleted` tinyint(4) NOT NULL DEFAULT 0,
  `profiles_id` int(10) unsigned NOT NULL DEFAULT 0,
  `entities_id` int(10) unsigned DEFAULT 0,
  `usertitles_id` int(10) unsigned NOT NULL DEFAULT 0,
  `usercategories_id` int(10) unsigned NOT NULL DEFAULT 0,
  `date_format` int(11) DEFAULT NULL,
  `number_format` int(11) DEFAULT NULL,
  `names_format` int(11) DEFAULT NULL,
  `csv_delimiter` char(1) DEFAULT NULL,
  `is_ids_visible` tinyint(4) DEFAULT NULL,
  `use_flat_dropdowntree` tinyint(4) DEFAULT NULL,
  `use_flat_dropdowntree_on_search_result` tinyint(4) DEFAULT NULL,
  `show_jobs_at_login` tinyint(4) DEFAULT NULL,
  `priority_1` char(20) DEFAULT NULL,
  `priority_2` char(20) DEFAULT NULL,
  `priority_3` char(20) DEFAULT NULL,
  `priority_4` char(20) DEFAULT NULL,
  `priority_5` char(20) DEFAULT NULL,
  `priority_6` char(20) DEFAULT NULL,
  `followup_private` tinyint(4) DEFAULT NULL,
  `task_private` tinyint(4) DEFAULT NULL,
  `default_requesttypes_id` int(10) unsigned DEFAULT NULL,
  `password_forget_token` char(40) DEFAULT NULL,
  `password_forget_token_date` timestamp NULL DEFAULT NULL,
  `user_dn` text DEFAULT NULL,
  `user_dn_hash` varchar(32) DEFAULT NULL,
  `registration_number` varchar(255) DEFAULT NULL,
  `show_count_on_tabs` tinyint(4) DEFAULT NULL,
  `refresh_views` int(11) DEFAULT NULL,
  `set_default_tech` tinyint(4) DEFAULT NULL,
  `personal_token` varchar(255) DEFAULT NULL,
  `personal_token_date` timestamp NULL DEFAULT NULL,
  `api_token` varchar(255) DEFAULT NULL,
  `api_token_date` timestamp NULL DEFAULT NULL,
  `cookie_token` varchar(255) DEFAULT NULL,
  `cookie_token_date` timestamp NULL DEFAULT NULL,
  `display_count_on_home` int(11) DEFAULT NULL,
  `notification_to_myself` tinyint(4) DEFAULT NULL,
  `duedateok_color` varchar(255) DEFAULT NULL,
  `duedatewarning_color` varchar(255) DEFAULT NULL,
  `duedatecritical_color` varchar(255) DEFAULT NULL,
  `duedatewarning_less` int(11) DEFAULT NULL,
  `duedatecritical_less` int(11) DEFAULT NULL,
  `duedatewarning_unit` varchar(255) DEFAULT NULL,
  `duedatecritical_unit` varchar(255) DEFAULT NULL,
  `display_options` text DEFAULT NULL,
  `is_deleted_ldap` tinyint(4) NOT NULL DEFAULT 0,
  `pdffont` varchar(255) DEFAULT NULL,
  `picture` varchar(255) DEFAULT NULL,
  `begin_date` timestamp NULL DEFAULT NULL,
  `end_date` timestamp NULL DEFAULT NULL,
  `keep_devices_when_purging_item` tinyint(4) DEFAULT NULL,
  `privatebookmarkorder` longtext DEFAULT NULL,
  `backcreated` tinyint(4) DEFAULT NULL,
  `task_state` int(11) DEFAULT NULL,
  `palette` char(20) DEFAULT NULL,
  `page_layout` char(20) DEFAULT NULL,
  `fold_menu` tinyint(4) DEFAULT NULL,
  `fold_search` tinyint(4) DEFAULT NULL,
  `savedsearches_pinned` text DEFAULT NULL,
  `timeline_order` char(20) DEFAULT NULL,
  `itil_layout` text DEFAULT NULL,
  `richtext_layout` char(20) DEFAULT NULL,
  `set_default_requester` tinyint(4) DEFAULT NULL,
  `lock_autolock_mode` tinyint(4) DEFAULT NULL,
  `lock_directunlock_notification` tinyint(4) DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  `highcontrast_css` tinyint(4) DEFAULT 0,
  `plannings` text DEFAULT NULL,
  `sync_field` varchar(255) DEFAULT NULL,
  `groups_id` int(10) unsigned NOT NULL DEFAULT 0,
  `users_id_supervisor` int(10) unsigned NOT NULL DEFAULT 0,
  `timezone` varchar(50) DEFAULT NULL,
  `default_dashboard_central` varchar(100) DEFAULT NULL,
  `default_dashboard_assets` varchar(100) DEFAULT NULL,
  `default_dashboard_helpdesk` varchar(100) DEFAULT NULL,
  `default_dashboard_mini_ticket` varchar(100) DEFAULT NULL,
  `default_central_tab` tinyint(4) DEFAULT 0,
  `nickname` varchar(255) DEFAULT NULL,
  `timeline_action_btn_layout` tinyint(4) DEFAULT NULL,
  `timeline_date_format` tinyint(4) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicityloginauth` (`name`,`authtype`,`auths_id`),
  KEY `firstname` (`firstname`),
  KEY `realname` (`realname`),
  KEY `entities_id` (`entities_id`),
  KEY `profiles_id` (`profiles_id`),
  KEY `locations_id` (`locations_id`),
  KEY `usertitles_id` (`usertitles_id`),
  KEY `usercategories_id` (`usercategories_id`),
  KEY `is_deleted` (`is_deleted`),
  KEY `is_active` (`is_active`),
  KEY `date_mod` (`date_mod`),
  KEY `authitem` (`authtype`,`auths_id`),
  KEY `is_deleted_ldap` (`is_deleted_ldap`),
  KEY `date_creation` (`date_creation`),
  KEY `begin_date` (`begin_date`),
  KEY `end_date` (`end_date`),
  KEY `sync_field` (`sync_field`),
  KEY `groups_id` (`groups_id`),
  KEY `users_id_supervisor` (`users_id_supervisor`),
  KEY `auths_id` (`auths_id`),
  KEY `default_requesttypes_id` (`default_requesttypes_id`),
  KEY `user_dn_hash` (`user_dn_hash`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_users`
--

LOCK TABLES `glpi_users` WRITE;
/*!40000 ALTER TABLE `glpi_users` DISABLE KEYS */;
INSERT INTO `glpi_users` VALUES
(6,'glpi-system','',NULL,NULL,NULL,NULL,'Support',NULL,0,NULL,0,NULL,1,NULL,0,1,NULL,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL),
(7,'paulovictorfds','$2y$10$f3k.pvQ8JHTqytwq5A9CcO62B9Qe/SPJGfxjTdhqTx0Hx4L1nYn6m','2024-12-27 05:47:33','','','','Souza','Paulo Victor',0,NULL,0,NULL,1,'',0,1,'2025-02-18 02:16:04','2025-02-18 02:16:04',NULL,0,4,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,'0kwXiHabhV76UPWzrmiuigK2tB0ZVhc8DytgODnt','2025-01-03 04:07:34',NULL,NULL,'$2y$10$2kNAFf9zHvWu7zdkt0kEeOWBNFv3/bkM1WWoXGnCaxFpby56vAA72','2025-02-18 02:16:04',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'{\"collapsed\":\"false\",\"expanded\":\"false\",\"items\":{\"item-main\":\"true\",\"actors\":\"true\",\"items\":\"false\",\"service-levels\":\"true\",\"linked_tickets\":\"true\"}}',NULL,NULL,NULL,NULL,'2024-12-27 05:47:33',NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(8,'alexcruz','$2y$10$ziDEXIzfyQofDJ4lsXjORea7xWYwPGoTSXAayvlBuUHKAjDzH.zTm','2025-01-08 12:19:53','84998426881','','','Cruz','Alexsandro',0,NULL,0,NULL,1,'',0,1,'2025-02-18 18:10:39','2025-02-18 18:10:39',NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,'iyhJySatF1o1ar49aYWMqHe1va3FKjdPFaAQEt4R','2024-12-27 20:23:12',NULL,NULL,'$2y$10$C3d2d5.CLH9WidRn1q.5J.iY1gWV09ZwmWMuasa1YyskR.ZRR0zla','2025-02-18 18:10:39',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"collapsed\":\"false\",\"expanded\":\"false\",\"items\":{\"item-main\":\"true\",\"actors\":\"true\",\"items\":\"false\",\"service-levels\":\"false\",\"linked_tickets\":\"true\"}}',NULL,NULL,NULL,NULL,'2024-12-27 13:18:42',NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(9,'tecnomulti','$2y$10$rvHMbvMfISOOOxhZYOjKCuCDMJ9apDVo9sFRLuM4enjvRiABv.wFG','2024-12-27 21:22:24','','','','','Tecnomulti',0,NULL,0,NULL,1,'',0,1,'2025-02-18 18:53:16','2025-02-18 18:53:16',NULL,0,0,2,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,'$2y$10$fYzF8xIGO.591l8ArslZ5.Y6zu6N03jCJf4ZLJD4jDP2/LOqqYVDS','2025-02-18 18:53:16',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,'68/9_676f1afe2fe68.jpg',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'{\"collapsed\":\"false\",\"expanded\":\"false\",\"items\":{\"item-main\":\"true\",\"actors\":\"true\",\"service-levels\":\"true\",\"linked_tickets\":\"false\"}}',NULL,NULL,NULL,NULL,'2024-12-27 19:44:47',NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
(10,'luanmedeiros','$2y$10$4id1BPlo/4UOFw0UVWBIButNq/1Lb9v02U4ScIy5CIu/PdrvytLqO','2025-01-07 14:08:04','','','','Medeiros','Luan',0,NULL,0,NULL,1,'',0,1,'2025-02-17 13:24:42','2025-02-17 13:24:42',NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'',NULL,NULL,NULL,'vKkkoDX44T1NHMw9wgiHI1NfmQxkzltsD4Gttw0L','2025-01-07 15:18:25',NULL,NULL,'$2y$10$0OeNiDPX02pEtiQ5BIFl6uJQhjcALMqGA/5DdtirLVtVmkKgvDCbq','2025-02-17 13:24:42',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'{\"collapsed\":\"false\",\"expanded\":\"false\",\"items\":{\"item-main\":\"true\",\"actors\":\"true\",\"items\":\"true\",\"service-levels\":\"true\",\"linked_tickets\":\"false\"}}',NULL,NULL,NULL,NULL,'2025-01-06 22:05:37',NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `glpi_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_usertitles`
--

DROP TABLE IF EXISTS `glpi_usertitles`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_usertitles` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_usertitles`
--

LOCK TABLES `glpi_usertitles` WRITE;
/*!40000 ALTER TABLE `glpi_usertitles` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_usertitles` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_virtualmachinestates`
--

DROP TABLE IF EXISTS `glpi_virtualmachinestates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_virtualmachinestates` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL DEFAULT '',
  `comment` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_virtualmachinestates`
--

LOCK TABLES `glpi_virtualmachinestates` WRITE;
/*!40000 ALTER TABLE `glpi_virtualmachinestates` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_virtualmachinestates` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_virtualmachinesystems`
--

DROP TABLE IF EXISTS `glpi_virtualmachinesystems`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_virtualmachinesystems` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL DEFAULT '',
  `comment` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_virtualmachinesystems`
--

LOCK TABLES `glpi_virtualmachinesystems` WRITE;
/*!40000 ALTER TABLE `glpi_virtualmachinesystems` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_virtualmachinesystems` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_virtualmachinetypes`
--

DROP TABLE IF EXISTS `glpi_virtualmachinetypes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_virtualmachinetypes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL DEFAULT '',
  `comment` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_virtualmachinetypes`
--

LOCK TABLES `glpi_virtualmachinetypes` WRITE;
/*!40000 ALTER TABLE `glpi_virtualmachinetypes` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_virtualmachinetypes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_vlans`
--

DROP TABLE IF EXISTS `glpi_vlans`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_vlans` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `name` varchar(255) DEFAULT NULL,
  `comment` text DEFAULT NULL,
  `tag` int(11) NOT NULL DEFAULT 0,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `name` (`name`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `tag` (`tag`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_vlans`
--

LOCK TABLES `glpi_vlans` WRITE;
/*!40000 ALTER TABLE `glpi_vlans` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_vlans` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_vobjects`
--

DROP TABLE IF EXISTS `glpi_vobjects`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_vobjects` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `itemtype` varchar(100) DEFAULT NULL,
  `items_id` int(10) unsigned NOT NULL DEFAULT 0,
  `data` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `unicity` (`itemtype`,`items_id`),
  KEY `item` (`itemtype`,`items_id`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_vobjects`
--

LOCK TABLES `glpi_vobjects` WRITE;
/*!40000 ALTER TABLE `glpi_vobjects` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_vobjects` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `glpi_wifinetworks`
--

DROP TABLE IF EXISTS `glpi_wifinetworks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `glpi_wifinetworks` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `entities_id` int(10) unsigned NOT NULL DEFAULT 0,
  `is_recursive` tinyint(4) NOT NULL DEFAULT 0,
  `name` varchar(255) DEFAULT NULL,
  `essid` varchar(255) DEFAULT NULL,
  `mode` varchar(255) DEFAULT NULL COMMENT 'ad-hoc, access_point',
  `comment` text DEFAULT NULL,
  `date_mod` timestamp NULL DEFAULT NULL,
  `date_creation` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `entities_id` (`entities_id`),
  KEY `is_recursive` (`is_recursive`),
  KEY `essid` (`essid`),
  KEY `name` (`name`),
  KEY `date_mod` (`date_mod`),
  KEY `date_creation` (`date_creation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `glpi_wifinetworks`
--

LOCK TABLES `glpi_wifinetworks` WRITE;
/*!40000 ALTER TABLE `glpi_wifinetworks` DISABLE KEYS */;
/*!40000 ALTER TABLE `glpi_wifinetworks` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;

-- Dump completed on 2025-02-18 23:16:09
